├── .gitignore ├── LICENSE.md ├── README.md ├── setup.py └── tsl2591 ├── __init__.py └── read_tsl.py /.gitignore: -------------------------------------------------------------------------------- 1 | tsl2591.egg-info/ 2 | *.pyc 3 | .spyderproject 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxlklaxl/python-tsl2591/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxlklaxl/python-tsl2591/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxlklaxl/python-tsl2591/HEAD/setup.py -------------------------------------------------------------------------------- /tsl2591/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = '0.0.1' 3 | 4 | from .read_tsl import Tsl2591 -------------------------------------------------------------------------------- /tsl2591/read_tsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxlklaxl/python-tsl2591/HEAD/tsl2591/read_tsl.py --------------------------------------------------------------------------------