├── .github ├── FUNDING.yml ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── codeql-analysis.yml │ ├── publish-to-pypi.yml_disabled │ └── release-drafter.yml ├── .gitignore ├── LICENSE ├── README.md ├── poetry.lock ├── pyproject.toml ├── surepy ├── __init__.py ├── client.py ├── const.py ├── entities │ ├── __init__.py │ ├── devices.py │ ├── pet.py │ └── states.py ├── enums.py ├── exceptions.py ├── py.typed └── surecli │ └── __init__.py └── tests ├── __init__.py └── test_client.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: benleb 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | template: | 2 | ## 📋 Changelog 3 | 4 | $CHANGES 5 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/.github/workflows/publish-to-pypi.yml_disabled -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /surepy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/surepy/__init__.py -------------------------------------------------------------------------------- /surepy/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/surepy/client.py -------------------------------------------------------------------------------- /surepy/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/surepy/const.py -------------------------------------------------------------------------------- /surepy/entities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/surepy/entities/__init__.py -------------------------------------------------------------------------------- /surepy/entities/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/surepy/entities/devices.py -------------------------------------------------------------------------------- /surepy/entities/pet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/surepy/entities/pet.py -------------------------------------------------------------------------------- /surepy/entities/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/surepy/entities/states.py -------------------------------------------------------------------------------- /surepy/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/surepy/enums.py -------------------------------------------------------------------------------- /surepy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/surepy/exceptions.py -------------------------------------------------------------------------------- /surepy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /surepy/surecli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/surepy/surecli/__init__.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for SurePy.""" 2 | -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benleb/surepy/HEAD/tests/test_client.py --------------------------------------------------------------------------------