Telegram bot with cool features like:
- Google trending searches
- Periodically receive trending searches from Google. Supported countries include:
- Singapore
- Periodically receive trending searches from Google. Supported countries include:
- Multithreading support
- Scheduling support
- Data persistence
- Hashing and hash comparison
- Modular design
These instructions will get you a copy of the project up and running on your local machine for development, testing and deployment purposes.
pip install -r requirements.txt
from example.py:
from bot import Bot
def main():
# path to config file. remember to input your telegram bot token
bot = Bot('config.json')
# start the bot
bot.start_bot()
if __name__ == '__main__':
main()
run the script:
python example.py
script will run until you stop it with CTRL + C / CMD + C
Subscribe to Google tending searches:
/trending
You may host the bot on any server that has python 3 installed
This project is licensed under the MIT License - see the LICENSE.md file for details