This is a bot for telegram that can be used to get the latest IWSP listing from the Ready Talent. It is written in Python and uses the python-telegram-bot library.
- Clone the repository
- Install the required packages using
pip install -r requirements.txt - Create a
.envfile in the root directory and add the followingexport USER_NAME=<YOUR_READY_TALENT_USERNAME> export PASSWORD=<YOUR_READY_TALENT_PASSWORD> export API_TOKEN=<YOUR_TELEGRAM_BOT_API_TOKEN>
- Source the
.envfile usingsource .envor use tools likeautoenvto automatically source the file when you enter the directory - Replace the chat_id in
main.pywith your chat_id# Replace chat_id with your own chat_id await context.bot.send_message(chat_id=<YOUR_CHAT_ID>, text=reply)
- Run the bot using
python main.py