├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── aiovk ├── __init__.py ├── api.py ├── drivers.py ├── exceptions.py ├── longpoll.py ├── mixins.py ├── parser.py ├── pools.py ├── sessions.py └── shaping.py ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── functional ├── __init__.py ├── conftest.py ├── test_drivers.py ├── test_longpool.py └── test_sessions.py ├── responses ├── auth_redirect.jinja2 ├── authorize_page.jinja2 └── blank.jinja2 ├── unit ├── __init__.py ├── test_api.py ├── test_longpool.py ├── test_pools.py └── test_shaping.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/README.rst -------------------------------------------------------------------------------- /aiovk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/aiovk/__init__.py -------------------------------------------------------------------------------- /aiovk/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/aiovk/api.py -------------------------------------------------------------------------------- /aiovk/drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/aiovk/drivers.py -------------------------------------------------------------------------------- /aiovk/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/aiovk/exceptions.py -------------------------------------------------------------------------------- /aiovk/longpoll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/aiovk/longpoll.py -------------------------------------------------------------------------------- /aiovk/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/aiovk/mixins.py -------------------------------------------------------------------------------- /aiovk/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/aiovk/parser.py -------------------------------------------------------------------------------- /aiovk/pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/aiovk/pools.py -------------------------------------------------------------------------------- /aiovk/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/aiovk/sessions.py -------------------------------------------------------------------------------- /aiovk/shaping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/aiovk/shaping.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/tests/functional/conftest.py -------------------------------------------------------------------------------- /tests/functional/test_drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/tests/functional/test_drivers.py -------------------------------------------------------------------------------- /tests/functional/test_longpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/tests/functional/test_longpool.py -------------------------------------------------------------------------------- /tests/functional/test_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/tests/functional/test_sessions.py -------------------------------------------------------------------------------- /tests/responses/auth_redirect.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/tests/responses/auth_redirect.jinja2 -------------------------------------------------------------------------------- /tests/responses/authorize_page.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/tests/responses/authorize_page.jinja2 -------------------------------------------------------------------------------- /tests/responses/blank.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/tests/responses/blank.jinja2 -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/tests/unit/test_api.py -------------------------------------------------------------------------------- /tests/unit/test_longpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/tests/unit/test_longpool.py -------------------------------------------------------------------------------- /tests/unit/test_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/tests/unit/test_pools.py -------------------------------------------------------------------------------- /tests/unit/test_shaping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/tests/unit/test_shaping.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderlarin/aiovk/HEAD/tests/utils.py --------------------------------------------------------------------------------