Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryanfleck/telegram-dungeon
Dungeon chatbot. Adds RPG elements to a Telegram group chat.
https://github.com/ryanfleck/telegram-dungeon
bot dnd python rng telegram
Last synced: 18 days ago
JSON representation
Dungeon chatbot. Adds RPG elements to a Telegram group chat.
- Host: GitHub
- URL: https://github.com/ryanfleck/telegram-dungeon
- Owner: RyanFleck
- License: gpl-3.0
- Created: 2019-07-06T18:10:45.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-16T23:57:18.000Z (7 months ago)
- Last Synced: 2024-04-17T04:54:02.045Z (7 months ago)
- Topics: bot, dnd, python, rng, telegram
- Language: Python
- Homepage: https://ryanfleck.github.io/Telegram-Dungeon/
- Size: 213 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Telegram Dungeon
Usage docs at
Currently deployed on **Heroku** as a dungeon/rng chatbot at .
Run all unit tests with `python3 -m unittest discover -p '*_test.py' -v`
### Resources:
1. [Official docs.](https://python-telegram-bot.readthedocs.io/en/stable)
1. [First bot tutorial.](https://github.com/python-telegram-bot/python-telegram-bot/wiki/Extensions-%E2%80%93-Your-first-Bot)
1. [Official examples.](https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/README.md)### TDD Python Resources
1. [Getting started with unit testing in Python](https://realpython.com/python-testing/)
1. [Untold stories about Python unit tests](https://hackernoon.com/untold-stories-about-python-unit-tests-a141501f0ee)
1. [Best practices for unit testing in Python](https://www.quora.com/What-are-best-practice-for-unit-testing-in-python)