Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eyemono-moe/python-traq-bot
https://github.com/eyemono-moe/python-traq-bot
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eyemono-moe/python-traq-bot
- Owner: eyemono-moe
- Created: 2022-02-16T23:03:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-17T07:39:28.000Z (over 1 year ago)
- Last Synced: 2024-05-21T20:12:32.185Z (6 months ago)
- Language: Python
- Size: 27.3 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# traQ BOTサーバーライブラリ
[![Downloads](https://static.pepy.tech/badge/traq-bot)](https://pepy.tech/project/traq-bot)
PythonでtraQ BOTサーバーを簡単に作るためのライブラリです。
`traQ->BOTサーバー`へのイベントの受け取り部分を補助します。`BOTサーバー->traQ`へのリクエストを行うためのAPIクライアントは含んでいません。[motoki317/traq-py](https://github.com/motoki317/traq-py)等を利用してください。
## インストール
```bash
pip install traq-bot
```## サンプル
```py
from traq_bot import TraqBot
import osbot = TraqBot(os.environ.get("BOT_VERIFICATION_TOKEN"))
@bot.message_created
def print_message_data(data: dict):
print(data)if __name__ == '__main__':
bot.run(8080)
```