Cryptobubble-webhook is scraping Top 1000 coins from cryptobubbles.net. Creates bubble image and automatically send that image to Discord Webhook.
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
First of all we need install required libraries.
pip install -r requirements.txt
Before to start we need set webhook url. Set your own webhook url in main.py
main.py
69 # Discord Webhook URL
70 WEBHOOK_URL = ""
You can also send pictures with the Discord Bot. Clear comments and et your own Discord Bot Token and channel id in main.py.
main.py
79 # You can send image using bot
80 TOKEN = "" # Discord Bot Token
81 CHANNEL_ID = 0 # Discord Channel Id
DaviddTech
uysalibov