├── .editorconfig ├── .github ├── dependabot.yaml └── workflows │ ├── ci.yml │ ├── codeql.yml │ ├── locks.yml │ └── publish_pypi.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── benchmarks └── p2p │ ├── p2p.svg │ └── test_performance.py ├── codecov.yaml ├── docs ├── API │ ├── index.rst │ ├── qiwi_api.rst │ ├── qiwi_maps.rst │ └── yoomoney_api.rst ├── Makefile ├── _static │ └── logo.png ├── advanced_features │ ├── cache.rst │ ├── index.rst │ ├── known-issues.rst │ └── proxy.rst ├── code │ ├── __init__.py │ ├── polling │ │ ├── __init__.py │ │ ├── events.py │ │ ├── qiwi.py │ │ ├── with_aiogram.py │ │ ├── with_aiogram_non_blocking.py │ │ └── without_globals.py │ └── webhooks │ │ ├── __init__.py │ │ └── qiwi.py ├── conf.py ├── getting-started │ ├── index.rst │ ├── qiwi │ │ ├── examples.rst │ │ ├── index.rst │ │ └── usage_with_aiogram.rst │ └── yoomoney │ │ ├── examples.rst │ │ └── index.rst ├── index.rst ├── installation.rst ├── make.bat ├── polling.rst ├── requirements.txt ├── static │ └── demo.gif ├── types │ ├── arbitrary │ │ └── index.rst │ ├── index.rst │ ├── qiwi_types │ │ └── index.rst │ └── yoomoney_types │ │ └── index.rst └── webhooks.rst ├── glQiwiApi ├── __init__.py ├── core │ ├── __init__.py │ ├── abc │ │ ├── __init__.py │ │ ├── api_method.py │ │ └── base_api_client.py │ ├── cache │ │ ├── __init__.py │ │ ├── cached_types.py │ │ ├── constants.py │ │ ├── exceptions.py │ │ ├── invalidation.py │ │ ├── storage.py │ │ └── utils.py │ ├── event_fetching │ │ ├── __init__.py │ │ ├── class_based │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── bill.py │ │ │ ├── error.py │ │ │ ├── transaction.py │ │ │ └── webhook_transaction.py │ │ ├── dispatcher.py │ │ ├── executor.py │ │ ├── filters.py │ │ └── webhooks │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── config.py │ │ │ ├── dto │ │ │ ├── __init__.py │ │ │ └── errors.py │ │ │ ├── middlewares │ │ │ ├── __init__.py │ │ │ └── ip.py │ │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── collision_detector.py │ │ │ └── security │ │ │ │ ├── __init__.py │ │ │ │ └── ip.py │ │ │ ├── utils.py │ │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── bill_view.py │ │ │ └── transaction_view.py │ ├── request_service.py │ └── session │ │ ├── __init__.py │ │ └── holder.py ├── ext │ ├── __init__.py │ └── webhook_url.py ├── py.typed ├── qiwi │ ├── __init__.py │ ├── base.py │ ├── clients │ │ ├── __init__.py │ │ ├── maps │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── methods │ │ │ │ ├── __init__.py │ │ │ │ ├── get_partners.py │ │ │ │ └── get_terminals.py │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ ├── polygon.py │ │ │ │ └── terminal.py │ │ ├── p2p │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── methods │ │ │ │ ├── __init__.py │ │ │ │ ├── create_p2p_bill.py │ │ │ │ ├── create_p2p_key_pair.py │ │ │ │ ├── get_bill_by_id.py │ │ │ │ ├── refund_bill.py │ │ │ │ └── reject_p2p_bill.py │ │ │ └── types.py │ │ ├── wallet │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── methods │ │ │ │ ├── __init__.py │ │ │ │ ├── authenticate_wallet.py │ │ │ │ ├── check_restriction.py │ │ │ │ ├── create_new_balance.py │ │ │ │ ├── detect_mobile_number.py │ │ │ │ ├── fetch_statistics.py │ │ │ │ ├── get_account_info.py │ │ │ │ ├── get_available_balances.py │ │ │ │ ├── get_balances.py │ │ │ │ ├── get_cards.py │ │ │ │ ├── get_cross_rates.py │ │ │ │ ├── get_identification.py │ │ │ │ ├── get_limits.py │ │ │ │ ├── get_nickname.py │ │ │ │ ├── get_receipt.py │ │ │ │ ├── history.py │ │ │ │ ├── list_of_invoices.py │ │ │ │ ├── pay_invoice.py │ │ │ │ ├── payment_by_details.py │ │ │ │ ├── predict_comission.py │ │ │ │ ├── qiwi_master │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── block_card.py │ │ │ │ │ ├── buy_qiwi_card.py │ │ │ │ │ ├── buy_qiwi_master.py │ │ │ │ │ ├── confirm_qiwi_master.py │ │ │ │ │ ├── create_card_purchase_order.py │ │ │ │ │ ├── get_card_requisites.py │ │ │ │ │ ├── get_statement.py │ │ │ │ │ ├── rename_card.py │ │ │ │ │ └── unblock_card.py │ │ │ │ ├── reveal_card_id.py │ │ │ │ ├── set_default_balance.py │ │ │ │ ├── transaction_info.py │ │ │ │ ├── transfer_money.py │ │ │ │ ├── transfer_money_to_card.py │ │ │ │ └── webhook │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── change_webhook_secret.py │ │ │ │ │ ├── delete_current_webhook.py │ │ │ │ │ ├── get_current_webhook.py │ │ │ │ │ ├── get_webhook_secret.py │ │ │ │ │ ├── register_webhook.py │ │ │ │ │ └── send_test_notification.py │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ ├── account_info.py │ │ │ │ ├── balance.py │ │ │ │ ├── commission.py │ │ │ │ ├── identification.py │ │ │ │ ├── limit.py │ │ │ │ ├── mobile_operator.py │ │ │ │ ├── nickname.py │ │ │ │ ├── other.py │ │ │ │ ├── partner.py │ │ │ │ ├── payment_info.py │ │ │ │ ├── qiwi_master.py │ │ │ │ ├── restriction.py │ │ │ │ ├── stats.py │ │ │ │ ├── transaction.py │ │ │ │ └── webhooks.py │ │ └── wrapper.py │ └── exceptions.py ├── types │ ├── __init__.py │ ├── _currencies.py │ ├── amount.py │ ├── arbitrary │ │ ├── __init__.py │ │ ├── file.py │ │ └── inputs.py │ ├── base.py │ └── exceptions.py ├── utils │ ├── __init__.py │ ├── certificates.py │ ├── compat.py │ ├── currency_util.py │ ├── date_conversion.py │ ├── deprecated.py │ ├── mypy_hacks.py │ ├── payload.py │ ├── synchronous │ │ ├── __init__.py │ │ ├── adapter.py │ │ └── adapter.pyi │ └── validators.py └── yoo_money │ ├── __init__.py │ ├── client.py │ ├── exceptions.py │ ├── methods │ ├── __init__.py │ ├── acccept_incoming_transfer.py │ ├── build_auth_url.py │ ├── get_access_token.py │ ├── make_cellular_payment.py │ ├── operation_details.py │ ├── operation_history.py │ ├── process_payment.py │ ├── reject_incoming_transfer.py │ ├── request_payment.py │ ├── retrieve_account_info.py │ └── revoke_api_token.py │ └── types.py ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── integration ├── __init__.py ├── test_qiwi │ ├── __init__.py │ └── test_clients │ │ ├── __init__.py │ │ ├── test_maps.py │ │ ├── test_p2p_client.py │ │ └── test_wallet.py └── test_yoomoney │ ├── __init__.py │ └── test_client.py ├── settings.py └── unit ├── __init__.py ├── base.py ├── test_api_methods ├── __init__.py ├── test_api_method.py ├── test_qiwi_api_method.py └── test_runtime_value.py ├── test_errors └── test_yoomoney_errors.py ├── test_event_fetching ├── __init__.py ├── mocks.py ├── test_executor.py ├── test_filters │ ├── __init__.py │ └── test_custom_filters.py └── test_webhook │ ├── __init__.py │ ├── conftest.py │ ├── test_app.py │ ├── test_services │ ├── __init__.py │ ├── test_collision_detector.py │ └── test_security.py │ ├── test_utils.py │ └── test_views │ ├── __init__.py │ ├── conftest.py │ ├── test_p2p_view.py │ └── test_txn_view.py ├── test_initialization ├── __init__.py └── test_qiwi_p2p_client.py ├── test_plugins ├── __init__.py └── test_telegram_plugins │ ├── __init__.py │ ├── test_polling.py │ └── test_webhook.py ├── test_session ├── __init__.py └── test_aiohttp_session_holder.py ├── test_types ├── __init__.py └── test_arbitrary │ ├── __init__.py │ └── test_file.py └── test_utils ├── __init__.py ├── test_api_helper.py ├── test_certificates.py ├── test_currency_parser.py └── test_executor ├── __init__.py └── test_webhook.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/locks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/.github/workflows/locks.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/.github/workflows/publish_pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/p2p/p2p.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/benchmarks/p2p/p2p.svg -------------------------------------------------------------------------------- /benchmarks/p2p/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/benchmarks/p2p/test_performance.py -------------------------------------------------------------------------------- /codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/codecov.yaml -------------------------------------------------------------------------------- /docs/API/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/API/index.rst -------------------------------------------------------------------------------- /docs/API/qiwi_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/API/qiwi_api.rst -------------------------------------------------------------------------------- /docs/API/qiwi_maps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/API/qiwi_maps.rst -------------------------------------------------------------------------------- /docs/API/yoomoney_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/API/yoomoney_api.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/advanced_features/cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/advanced_features/cache.rst -------------------------------------------------------------------------------- /docs/advanced_features/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/advanced_features/index.rst -------------------------------------------------------------------------------- /docs/advanced_features/known-issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/advanced_features/known-issues.rst -------------------------------------------------------------------------------- /docs/advanced_features/proxy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/advanced_features/proxy.rst -------------------------------------------------------------------------------- /docs/code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/code/polling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/code/polling/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/code/polling/events.py -------------------------------------------------------------------------------- /docs/code/polling/qiwi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/code/polling/qiwi.py -------------------------------------------------------------------------------- /docs/code/polling/with_aiogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/code/polling/with_aiogram.py -------------------------------------------------------------------------------- /docs/code/polling/with_aiogram_non_blocking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/code/polling/with_aiogram_non_blocking.py -------------------------------------------------------------------------------- /docs/code/polling/without_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/code/polling/without_globals.py -------------------------------------------------------------------------------- /docs/code/webhooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/code/webhooks/qiwi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/code/webhooks/qiwi.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting-started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/getting-started/index.rst -------------------------------------------------------------------------------- /docs/getting-started/qiwi/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/getting-started/qiwi/examples.rst -------------------------------------------------------------------------------- /docs/getting-started/qiwi/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/getting-started/qiwi/index.rst -------------------------------------------------------------------------------- /docs/getting-started/qiwi/usage_with_aiogram.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/getting-started/qiwi/usage_with_aiogram.rst -------------------------------------------------------------------------------- /docs/getting-started/yoomoney/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/getting-started/yoomoney/examples.rst -------------------------------------------------------------------------------- /docs/getting-started/yoomoney/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/getting-started/yoomoney/index.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/polling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/polling.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/static/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/static/demo.gif -------------------------------------------------------------------------------- /docs/types/arbitrary/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/types/arbitrary/index.rst -------------------------------------------------------------------------------- /docs/types/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/types/index.rst -------------------------------------------------------------------------------- /docs/types/qiwi_types/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/types/qiwi_types/index.rst -------------------------------------------------------------------------------- /docs/types/yoomoney_types/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/types/yoomoney_types/index.rst -------------------------------------------------------------------------------- /docs/webhooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/docs/webhooks.rst -------------------------------------------------------------------------------- /glQiwiApi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/__init__.py -------------------------------------------------------------------------------- /glQiwiApi/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/core/abc/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /glQiwiApi/core/abc/api_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/abc/api_method.py -------------------------------------------------------------------------------- /glQiwiApi/core/abc/base_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/abc/base_api_client.py -------------------------------------------------------------------------------- /glQiwiApi/core/cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/cache/__init__.py -------------------------------------------------------------------------------- /glQiwiApi/core/cache/cached_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/cache/cached_types.py -------------------------------------------------------------------------------- /glQiwiApi/core/cache/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/cache/constants.py -------------------------------------------------------------------------------- /glQiwiApi/core/cache/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/cache/exceptions.py -------------------------------------------------------------------------------- /glQiwiApi/core/cache/invalidation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/cache/invalidation.py -------------------------------------------------------------------------------- /glQiwiApi/core/cache/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/cache/storage.py -------------------------------------------------------------------------------- /glQiwiApi/core/cache/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/cache/utils.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/class_based/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/class_based/__init__.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/class_based/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/class_based/base.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/class_based/bill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/class_based/bill.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/class_based/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/class_based/error.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/class_based/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/class_based/transaction.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/class_based/webhook_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/class_based/webhook_transaction.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/dispatcher.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/executor.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/filters.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/webhooks/__init__.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/webhooks/app.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/webhooks/config.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/dto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/dto/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/webhooks/dto/errors.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/middlewares/ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/webhooks/middlewares/ip.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/services/collision_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/webhooks/services/collision_detector.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/services/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/services/security/ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/webhooks/services/security/ip.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/webhooks/utils.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/webhooks/views/__init__.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/webhooks/views/base.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/views/bill_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/webhooks/views/bill_view.py -------------------------------------------------------------------------------- /glQiwiApi/core/event_fetching/webhooks/views/transaction_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/event_fetching/webhooks/views/transaction_view.py -------------------------------------------------------------------------------- /glQiwiApi/core/request_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/request_service.py -------------------------------------------------------------------------------- /glQiwiApi/core/session/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/session/__init__.py -------------------------------------------------------------------------------- /glQiwiApi/core/session/holder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/core/session/holder.py -------------------------------------------------------------------------------- /glQiwiApi/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/ext/webhook_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/ext/webhook_url.py -------------------------------------------------------------------------------- /glQiwiApi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/qiwi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/qiwi/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/base.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/maps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/maps/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/maps/client.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/maps/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/maps/methods/get_partners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/maps/methods/get_partners.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/maps/methods/get_terminals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/maps/methods/get_terminals.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/maps/types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/maps/types/polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/maps/types/polygon.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/maps/types/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/maps/types/terminal.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/p2p/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/p2p/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/p2p/client.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/p2p/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/p2p/methods/create_p2p_bill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/p2p/methods/create_p2p_bill.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/p2p/methods/create_p2p_key_pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/p2p/methods/create_p2p_key_pair.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/p2p/methods/get_bill_by_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/p2p/methods/get_bill_by_id.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/p2p/methods/refund_bill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/p2p/methods/refund_bill.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/p2p/methods/reject_p2p_bill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/p2p/methods/reject_p2p_bill.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/p2p/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/p2p/types.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/client.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/authenticate_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/authenticate_wallet.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/check_restriction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/check_restriction.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/create_new_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/create_new_balance.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/detect_mobile_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/detect_mobile_number.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/fetch_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/fetch_statistics.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/get_account_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/get_account_info.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/get_available_balances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/get_available_balances.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/get_balances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/get_balances.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/get_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/get_cards.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/get_cross_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/get_cross_rates.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/get_identification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/get_identification.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/get_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/get_limits.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/get_nickname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/get_nickname.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/get_receipt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/get_receipt.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/history.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/list_of_invoices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/list_of_invoices.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/pay_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/pay_invoice.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/payment_by_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/payment_by_details.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/predict_comission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/predict_comission.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/block_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/block_card.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/buy_qiwi_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/buy_qiwi_card.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/buy_qiwi_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/buy_qiwi_master.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/confirm_qiwi_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/confirm_qiwi_master.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/create_card_purchase_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/create_card_purchase_order.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/get_card_requisites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/get_card_requisites.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/get_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/get_statement.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/rename_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/rename_card.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/unblock_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/qiwi_master/unblock_card.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/reveal_card_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/reveal_card_id.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/set_default_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/set_default_balance.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/transaction_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/transaction_info.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/transfer_money.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/transfer_money.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/transfer_money_to_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/transfer_money_to_card.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/webhook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/webhook/change_webhook_secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/webhook/change_webhook_secret.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/webhook/delete_current_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/webhook/delete_current_webhook.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/webhook/get_current_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/webhook/get_current_webhook.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/webhook/get_webhook_secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/webhook/get_webhook_secret.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/webhook/register_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/webhook/register_webhook.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/methods/webhook/send_test_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/methods/webhook/send_test_notification.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/__init__.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/account_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/account_info.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/balance.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/commission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/commission.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/identification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/identification.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/limit.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/mobile_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/mobile_operator.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/nickname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/nickname.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/other.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/partner.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/payment_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/payment_info.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/qiwi_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/qiwi_master.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/restriction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/restriction.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/stats.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/transaction.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wallet/types/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wallet/types/webhooks.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/clients/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/clients/wrapper.py -------------------------------------------------------------------------------- /glQiwiApi/qiwi/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/qiwi/exceptions.py -------------------------------------------------------------------------------- /glQiwiApi/types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/types/_currencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/types/_currencies.py -------------------------------------------------------------------------------- /glQiwiApi/types/amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/types/amount.py -------------------------------------------------------------------------------- /glQiwiApi/types/arbitrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/types/arbitrary/__init__.py -------------------------------------------------------------------------------- /glQiwiApi/types/arbitrary/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/types/arbitrary/file.py -------------------------------------------------------------------------------- /glQiwiApi/types/arbitrary/inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/types/arbitrary/inputs.py -------------------------------------------------------------------------------- /glQiwiApi/types/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/types/base.py -------------------------------------------------------------------------------- /glQiwiApi/types/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/types/exceptions.py -------------------------------------------------------------------------------- /glQiwiApi/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/utils/certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/utils/certificates.py -------------------------------------------------------------------------------- /glQiwiApi/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/utils/compat.py -------------------------------------------------------------------------------- /glQiwiApi/utils/currency_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/utils/currency_util.py -------------------------------------------------------------------------------- /glQiwiApi/utils/date_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/utils/date_conversion.py -------------------------------------------------------------------------------- /glQiwiApi/utils/deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/utils/deprecated.py -------------------------------------------------------------------------------- /glQiwiApi/utils/mypy_hacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/utils/mypy_hacks.py -------------------------------------------------------------------------------- /glQiwiApi/utils/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/utils/payload.py -------------------------------------------------------------------------------- /glQiwiApi/utils/synchronous/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/utils/synchronous/__init__.py -------------------------------------------------------------------------------- /glQiwiApi/utils/synchronous/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/utils/synchronous/adapter.py -------------------------------------------------------------------------------- /glQiwiApi/utils/synchronous/adapter.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/utils/synchronous/adapter.pyi -------------------------------------------------------------------------------- /glQiwiApi/utils/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/utils/validators.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/__init__.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/client.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/exceptions.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/methods/acccept_incoming_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/methods/acccept_incoming_transfer.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/methods/build_auth_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/methods/build_auth_url.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/methods/get_access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/methods/get_access_token.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/methods/make_cellular_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/methods/make_cellular_payment.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/methods/operation_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/methods/operation_details.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/methods/operation_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/methods/operation_history.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/methods/process_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/methods/process_payment.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/methods/reject_incoming_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/methods/reject_incoming_transfer.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/methods/request_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/methods/request_payment.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/methods/retrieve_account_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/methods/retrieve_account_info.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/methods/revoke_api_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/methods/revoke_api_token.py -------------------------------------------------------------------------------- /glQiwiApi/yoo_money/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/glQiwiApi/yoo_money/types.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/test_qiwi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/test_qiwi/test_clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/test_qiwi/test_clients/test_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/integration/test_qiwi/test_clients/test_maps.py -------------------------------------------------------------------------------- /tests/integration/test_qiwi/test_clients/test_p2p_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/integration/test_qiwi/test_clients/test_p2p_client.py -------------------------------------------------------------------------------- /tests/integration/test_qiwi/test_clients/test_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/integration/test_qiwi/test_clients/test_wallet.py -------------------------------------------------------------------------------- /tests/integration/test_yoomoney/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/test_yoomoney/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/integration/test_yoomoney/test_client.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/base.py -------------------------------------------------------------------------------- /tests/unit/test_api_methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_api_methods/test_api_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_api_methods/test_api_method.py -------------------------------------------------------------------------------- /tests/unit/test_api_methods/test_qiwi_api_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_api_methods/test_qiwi_api_method.py -------------------------------------------------------------------------------- /tests/unit/test_api_methods/test_runtime_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_api_methods/test_runtime_value.py -------------------------------------------------------------------------------- /tests/unit/test_errors/test_yoomoney_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_errors/test_yoomoney_errors.py -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_event_fetching/mocks.py -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_event_fetching/test_executor.py -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_filters/test_custom_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_event_fetching/test_filters/test_custom_filters.py -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_webhook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_webhook/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_event_fetching/test_webhook/conftest.py -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_webhook/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_event_fetching/test_webhook/test_app.py -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_webhook/test_services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_webhook/test_services/test_collision_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_event_fetching/test_webhook/test_services/test_collision_detector.py -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_webhook/test_services/test_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_event_fetching/test_webhook/test_services/test_security.py -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_webhook/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_event_fetching/test_webhook/test_utils.py -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_webhook/test_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_webhook/test_views/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_event_fetching/test_webhook/test_views/conftest.py -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_webhook/test_views/test_p2p_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_event_fetching/test_webhook/test_views/test_p2p_view.py -------------------------------------------------------------------------------- /tests/unit/test_event_fetching/test_webhook/test_views/test_txn_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_event_fetching/test_webhook/test_views/test_txn_view.py -------------------------------------------------------------------------------- /tests/unit/test_initialization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_initialization/test_qiwi_p2p_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_initialization/test_qiwi_p2p_client.py -------------------------------------------------------------------------------- /tests/unit/test_plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_plugins/test_telegram_plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_plugins/test_telegram_plugins/test_polling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_plugins/test_telegram_plugins/test_polling.py -------------------------------------------------------------------------------- /tests/unit/test_plugins/test_telegram_plugins/test_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_plugins/test_telegram_plugins/test_webhook.py -------------------------------------------------------------------------------- /tests/unit/test_session/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /tests/unit/test_session/test_aiohttp_session_holder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_session/test_aiohttp_session_holder.py -------------------------------------------------------------------------------- /tests/unit/test_types/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /tests/unit/test_types/test_arbitrary/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /tests/unit/test_types/test_arbitrary/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_types/test_arbitrary/test_file.py -------------------------------------------------------------------------------- /tests/unit/test_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_utils/test_api_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_utils/test_api_helper.py -------------------------------------------------------------------------------- /tests/unit/test_utils/test_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_utils/test_certificates.py -------------------------------------------------------------------------------- /tests/unit/test_utils/test_currency_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GLEF1X/glQiwiApi/HEAD/tests/unit/test_utils/test_currency_parser.py -------------------------------------------------------------------------------- /tests/unit/test_utils/test_executor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_utils/test_executor/test_webhook.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------