├── .github └── workflows │ └── workflow.yml ├── .gitignore ├── .travis.yml ├── GSMTC35 ├── GSMTC35.py └── __init__.py ├── LICENSE.md ├── README.md ├── TC35_module.jpg ├── codecov.yml ├── doc └── at_commands_tc35.pdf ├── examples └── rest_api │ ├── internal_db.py │ └── rest_api.py ├── setup.cfg ├── setup.py └── tests ├── GSMTC35_test.py └── __init__.py /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/.travis.yml -------------------------------------------------------------------------------- /GSMTC35/GSMTC35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/GSMTC35/GSMTC35.py -------------------------------------------------------------------------------- /GSMTC35/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/README.md -------------------------------------------------------------------------------- /TC35_module.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/TC35_module.jpg -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/at_commands_tc35.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/doc/at_commands_tc35.pdf -------------------------------------------------------------------------------- /examples/rest_api/internal_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/examples/rest_api/internal_db.py -------------------------------------------------------------------------------- /examples/rest_api/rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/examples/rest_api/rest_api.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/setup.py -------------------------------------------------------------------------------- /tests/GSMTC35_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuentinCG/GSM-TC35-Python-Library/HEAD/tests/GSMTC35_test.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------