├── .github └── workflows │ └── versions.yml ├── .gitignore ├── LICENSE ├── README.md ├── alerts.py ├── clients.py ├── devices.py ├── events.py ├── led.py ├── omada ├── __init__.py └── omada.py ├── requirements.txt ├── setup.py └── upload_cert.py /.github/workflows/versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/.github/workflows/versions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/README.md -------------------------------------------------------------------------------- /alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/alerts.py -------------------------------------------------------------------------------- /clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/clients.py -------------------------------------------------------------------------------- /devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/devices.py -------------------------------------------------------------------------------- /events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/events.py -------------------------------------------------------------------------------- /led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/led.py -------------------------------------------------------------------------------- /omada/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/omada/__init__.py -------------------------------------------------------------------------------- /omada/omada.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/omada/omada.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.28.0 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/setup.py -------------------------------------------------------------------------------- /upload_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaberek/omada-api/HEAD/upload_cert.py --------------------------------------------------------------------------------