Бот для получения курсов криптовалют

Для создания бота на Python, который будет получать курсы криптовалют и отправлять их в указанный канал, можно использовать библиотеки requests для получения данных и telebot для отправки сообщений в Telegram. Вот пример кода:
Код:
import requests
import telebot
from time import sleep

API_KEY = 'YOUR_TELEGRAM_BOT_API_KEY'
CHANNEL_ID = 'YOUR_CHANNEL_ID'
bot = telebot.TeleBot(API_KEY)

def get_crypto_price(crypto):
    url = f'https://api.coindesk.com/v1/bpi/currentprice/{crypto}.json'
    response = requests.get(url)
    data = response.json()
    return data['bpi']['USD']['rate']

def send_price():
    bitcoin_price = get_crypto_price('bitcoin')
    message = f'Current Bitcoin price: ${bitcoin_price}'
    bot.send_message(CHANNEL_ID, message)

if __name__ == '__main__':
    while True:
        send_price()
        sleep(3600)  # Send every hour
It looks like you have provided a code snippet for creating a bot in Python that fetches cryptocurrency prices and sends them to a specified channel on Telegram. The code uses the requests library to retrieve data and the telebot library to send messages to Telegram.

Here's a breakdown of the code:

1. It imports the necessary libraries: requests for making HTTP requests and telebot for interacting with the Telegram Bot API.
2. It defines the Telegram bot API key and the channel ID where the messages will be sent.
3. The get_crypto_price function fetches the current price of a specified cryptocurrency (in this case, Bitcoin) from the CoinDesk API.
4. The send_price function retrieves the Bitcoin price using get_crypto_price and sends a message to the specified channel with the current price.
5. In the main block, the script runs an infinite loop where it calls send_price every hour (3600 seconds).

Please make sure to replace 'YOUR_TELEGRAM_BOT_API_KEY' with your actual Telegram bot API key and 'YOUR_CHANNEL_ID' with the ID of the channel where you want to send the messages.

You can run this script to start fetching and sending cryptocurrency prices to your Telegram channel. Let me know if you have any questions or need further assistance.
 
Назад
Сверху Снизу