├── .gitignore ├── LICENSE ├── README.md ├── bots ├── __init__.py ├── irc_bot.py ├── qq_bot.py └── telegram_bot.py ├── bridge.py ├── config.py.example └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | usernicks 2 | config.*py 3 | __pycache__/ 4 | venv/ 5 | .idea/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robberphex/tg-qq-irc-bridge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robberphex/tg-qq-irc-bridge/HEAD/README.md -------------------------------------------------------------------------------- /bots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/irc_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robberphex/tg-qq-irc-bridge/HEAD/bots/irc_bot.py -------------------------------------------------------------------------------- /bots/qq_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robberphex/tg-qq-irc-bridge/HEAD/bots/qq_bot.py -------------------------------------------------------------------------------- /bots/telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robberphex/tg-qq-irc-bridge/HEAD/bots/telegram_bot.py -------------------------------------------------------------------------------- /bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robberphex/tg-qq-irc-bridge/HEAD/bridge.py -------------------------------------------------------------------------------- /config.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robberphex/tg-qq-irc-bridge/HEAD/config.py.example -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robberphex/tg-qq-irc-bridge/HEAD/requirements.txt --------------------------------------------------------------------------------