20 lines
No EOL
464 B
Python
20 lines
No EOL
464 B
Python
"""
|
|
Gicisky - A Python library for interacting with Gicisky electronic ink display tags.
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|
|
__author__ = "MassiveBox"
|
|
__email__ = "box@massive.box"
|
|
|
|
# Import all public APIs
|
|
from ble import *
|
|
from core import *
|
|
from image import *
|
|
from logger import *
|
|
|
|
# Define what gets imported with "from gicisky import *"
|
|
__all__ = []
|
|
__all__.extend(ble.__all__)
|
|
__all__.extend(core.__all__)
|
|
__all__.extend(image.__all__)
|
|
__all__.extend(logger.__all__) |