├── .gitignore ├── LICENSE ├── Pipfile ├── README.md ├── pyproject.toml ├── reference └── speedify_cli.md ├── requirements.txt ├── runtests.py ├── sample ├── measure_speeds.py ├── speedify_login.py └── stat_callbacks_sample.py ├── setup.py ├── speedify.py └── tests ├── README.md ├── conftest.py ├── test_integration_speedify.py ├── test_speedify.py └── test_unit_speedify.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/pyproject.toml -------------------------------------------------------------------------------- /reference/speedify_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/reference/speedify_cli.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python_version >= '3.6' 2 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/runtests.py -------------------------------------------------------------------------------- /sample/measure_speeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/sample/measure_speeds.py -------------------------------------------------------------------------------- /sample/speedify_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/sample/speedify_login.py -------------------------------------------------------------------------------- /sample/stat_callbacks_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/sample/stat_callbacks_sample.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/setup.py -------------------------------------------------------------------------------- /speedify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/speedify.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_integration_speedify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/tests/test_integration_speedify.py -------------------------------------------------------------------------------- /tests/test_speedify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/tests/test_speedify.py -------------------------------------------------------------------------------- /tests/test_unit_speedify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedify/speedify-py/HEAD/tests/test_unit_speedify.py --------------------------------------------------------------------------------