gitextract_wzpapcjd/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report--english-.md │ │ ├── bug-report--русский-.md │ │ ├── feature-request--english-.md │ │ ├── feature-request--русский-.md │ │ ├── question--english-.md │ │ └── question--русский-.md │ └── workflows/ │ └── lint_and_test.yml ├── .gitignore ├── .readthedocs.yaml ├── CONTRIBUTING.rst ├── CONTRIBUTORS.rst ├── COPYING ├── COPYING.lesser ├── MANIFEST.in ├── README.en.rst ├── README.rst ├── README.ru.rst ├── docs/ │ ├── Makefile │ ├── api_reference/ │ │ ├── async_api.rst │ │ ├── exceptions.rst │ │ ├── index.rst │ │ ├── response_objects.rst │ │ ├── session_interface.rst │ │ ├── sessions.rst │ │ ├── settings.rst │ │ ├── sync_api.rst │ │ ├── types.rst │ │ └── utilities.rst │ ├── changelog.rst │ ├── conf.py │ ├── index.rst │ ├── intro.rst │ ├── known_issues.rst │ ├── locales/ │ │ └── ru/ │ │ └── LC_MESSAGES/ │ │ ├── api_reference.po │ │ ├── changelog.po │ │ ├── index.po │ │ ├── intro.po │ │ ├── known_issues.po │ │ └── migration_guide.po │ ├── make.bat │ ├── migration_guide.rst │ ├── requirements.in │ └── requirements.txt ├── pyproject.toml ├── requirements-dev.in ├── requirements-dev.txt ├── src/ │ └── yadisk/ │ ├── __init__.py │ ├── _api/ │ │ ├── __init__.py │ │ ├── api_request.py │ │ ├── auth.py │ │ ├── disk.py │ │ ├── operations.py │ │ └── resources.py │ ├── _async_client.py │ ├── _async_client.pyi │ ├── _async_session.py │ ├── _client.py │ ├── _client.pyi │ ├── _client_common.py │ ├── _common.py │ ├── _import_session.py │ ├── _session.py │ ├── _typing_compat.py │ ├── exceptions.py │ ├── objects/ │ │ ├── __init__.py │ │ ├── _auth.py │ │ ├── _disk.py │ │ ├── _error_object.py │ │ ├── _link_object.py │ │ ├── _operations.py │ │ ├── _operations.pyi │ │ ├── _resources.py │ │ ├── _resources.pyi │ │ └── _yadisk_object.py │ ├── py.typed │ ├── sessions/ │ │ ├── __init__.py │ │ ├── _httpx_common.py │ │ ├── aiohttp_session.py │ │ ├── async_httpx_session.py │ │ ├── httpx_session.py │ │ ├── pycurl_session.py │ │ └── requests_session.py │ ├── settings.py │ ├── types.py │ └── utils.py └── tests/ ├── __init__.py ├── async_client_test.py ├── auth_test.py ├── auto_retry_test.py ├── client_test.py ├── conftest.py ├── disk_gateway.py ├── import_session_test.py ├── recorded/ │ ├── async/ │ │ ├── test_auth_async.json │ │ ├── test_check_token.json │ │ ├── test_copy.json │ │ ├── test_device_code_auth_async.json │ │ ├── test_download_by_link_error.json │ │ ├── test_get_disk_info.json │ │ ├── test_get_files.json │ │ ├── test_get_last_uploaded.json │ │ ├── test_get_meta.json │ │ ├── test_get_public_resources.json │ │ ├── test_get_upload_link_object.json │ │ ├── test_is_file.json │ │ ├── test_issue7.json │ │ ├── test_listdir.json │ │ ├── test_listdir_fields.json │ │ ├── test_listdir_on_file.json │ │ ├── test_listdir_with_limits.json │ │ ├── test_listdir_with_max_items.json │ │ ├── test_makedirs_with_scheme.json │ │ ├── test_makedirs_without_scheme.json │ │ ├── test_mkdir_and_exists.json │ │ ├── test_move.json │ │ ├── test_none_args.json │ │ ├── test_operation_error_triggers_retry.json │ │ ├── test_patch.json │ │ ├── test_permanent_remove.json │ │ ├── test_public_listdir.json │ │ ├── test_public_settings.json │ │ ├── test_publish_unpublish.json │ │ ├── test_remove_trash.json │ │ ├── test_rename.json │ │ ├── test_restore_trash.json │ │ ├── test_save_to_disk.json │ │ ├── test_streaming_requests.json │ │ ├── test_upload_and_download.json │ │ ├── test_upload_and_download_async.json │ │ ├── test_upload_download_non_seekable.json │ │ ├── test_upload_url.json │ │ └── test_wait_for_operation.json │ └── sync/ │ ├── test_auth.json │ ├── test_check_token.json │ ├── test_copy.json │ ├── test_device_code_auth.json │ ├── test_download_by_link_error.json │ ├── test_get_disk_info.json │ ├── test_get_files.json │ ├── test_get_last_uploaded.json │ ├── test_get_meta.json │ ├── test_get_public_resources.json │ ├── test_get_upload_link_object.json │ ├── test_issue7.json │ ├── test_listdir.json │ ├── test_listdir_fields.json │ ├── test_listdir_on_file.json │ ├── test_listdir_with_limits.json │ ├── test_listdir_with_max_items.json │ ├── test_makedirs_with_scheme.json │ ├── test_makedirs_without_scheme.json │ ├── test_mkdir_and_exists.json │ ├── test_move.json │ ├── test_none_args.json │ ├── test_operation_error_triggers_retry.json │ ├── test_patch.json │ ├── test_permanent_remove.json │ ├── test_public_listdir.json │ ├── test_public_settings.json │ ├── test_publish_unpublish.json │ ├── test_remove_trash.json │ ├── test_rename.json │ ├── test_restore_trash.json │ ├── test_save_to_disk.json │ ├── test_streaming_requests.json │ ├── test_upload_and_download.json │ ├── test_upload_download_non_seekable.json │ ├── test_upload_generator.json │ ├── test_upload_url.json │ └── test_wait_for_operation.json └── test_session.py