├── .coveragerc ├── .devcontainer └── devcontainer.json ├── .envrc ├── .github ├── actions │ └── setup-python │ │ └── action.yaml └── workflows │ ├── codecov.yml │ ├── pyright.yml │ └── release.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANUAL.md ├── README.md ├── docs └── logo.png ├── example ├── download.py ├── inline.py ├── mention.py ├── photo.py ├── reply.py └── sendxxx.py ├── nonebot └── adapters │ └── telegram │ ├── __init__.py │ ├── adapter.py │ ├── api.py │ ├── bot.py │ ├── config.py │ ├── event.py │ ├── exception.py │ ├── message.py │ ├── model.py │ ├── permission.py │ └── utils.py ├── pdm.lock ├── pyproject.toml └── tests ├── conftest.py ├── test_bot.py ├── test_event.py ├── test_message.py └── updates.json /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/.coveragerc -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | source .venv/bin/activate 2 | -------------------------------------------------------------------------------- /.github/actions/setup-python/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/.github/actions/setup-python/action.yaml -------------------------------------------------------------------------------- /.github/workflows/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/.github/workflows/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/pyright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/.github/workflows/pyright.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/LICENSE -------------------------------------------------------------------------------- /MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/MANUAL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/README.md -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/docs/logo.png -------------------------------------------------------------------------------- /example/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/example/download.py -------------------------------------------------------------------------------- /example/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/example/inline.py -------------------------------------------------------------------------------- /example/mention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/example/mention.py -------------------------------------------------------------------------------- /example/photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/example/photo.py -------------------------------------------------------------------------------- /example/reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/example/reply.py -------------------------------------------------------------------------------- /example/sendxxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/example/sendxxx.py -------------------------------------------------------------------------------- /nonebot/adapters/telegram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/nonebot/adapters/telegram/__init__.py -------------------------------------------------------------------------------- /nonebot/adapters/telegram/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/nonebot/adapters/telegram/adapter.py -------------------------------------------------------------------------------- /nonebot/adapters/telegram/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/nonebot/adapters/telegram/api.py -------------------------------------------------------------------------------- /nonebot/adapters/telegram/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/nonebot/adapters/telegram/bot.py -------------------------------------------------------------------------------- /nonebot/adapters/telegram/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/nonebot/adapters/telegram/config.py -------------------------------------------------------------------------------- /nonebot/adapters/telegram/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/nonebot/adapters/telegram/event.py -------------------------------------------------------------------------------- /nonebot/adapters/telegram/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/nonebot/adapters/telegram/exception.py -------------------------------------------------------------------------------- /nonebot/adapters/telegram/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/nonebot/adapters/telegram/message.py -------------------------------------------------------------------------------- /nonebot/adapters/telegram/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/nonebot/adapters/telegram/model.py -------------------------------------------------------------------------------- /nonebot/adapters/telegram/permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/nonebot/adapters/telegram/permission.py -------------------------------------------------------------------------------- /nonebot/adapters/telegram/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/nonebot/adapters/telegram/utils.py -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/tests/test_bot.py -------------------------------------------------------------------------------- /tests/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/tests/test_event.py -------------------------------------------------------------------------------- /tests/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/tests/test_message.py -------------------------------------------------------------------------------- /tests/updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonebot/adapter-telegram/HEAD/tests/updates.json --------------------------------------------------------------------------------