unrolled/render

Bot

dashxdon opened this issue · 0 comments

import logging
from telegram import Update
from telegram.ext import Updater, CommandHandler, CallbackContext
import requests

Enable logging

logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', level=logging.INFO)
logger = logging.getLogger(name)

Define a function to handle the /start command

def start(update: Update, context: CallbackContext) -> None:
update.message.reply_text('Welcome to the Movie Bot! Use the /search command to find a movie.')

Define a function to handle the /search command

def search(update: Update, context: CallbackContext) -> None:
# Get the search query from the user
query = ' '.join(context.args)
if not query:
update.message.reply_text('Please provide a search query.')
return

# Make a request to the OMDB API to search for movies
omdb_api_key = 'YOUR_OMDB_API_KEY'
url = f'http://www.omdbapi.com/?apikey={omdb_api_key}&s={query}&type=movie'
response = requests.get(url)
data = response.json()

# Check if there are any search results
if data['Response'] == 'True':
    movies = data['Search']
    for movie in movies:
        title = movie['Title']
        year = movie['Year']
        update.message.reply_text(f'{title} ({year})')
else:
    update.message.reply_text('No movies found.')

Define a function to handle errors

def error(update: Update, context: CallbackContext) -> None:
logger.error(f'Update {update} caused error {context.error}')

def main() -> None:
# Create the Updater and pass it your bot's token
updater = Updater('YOUR_TELEGRAM_BOT_TOKEN')

# Get the dispatcher to register handlers
dispatcher = updater.dispatcher

# Register the command handlers
dispatcher.add_handler(CommandHandler('start', start))
dispatcher.add_handler(CommandHandler('search', search))

# Register the error handler
dispatcher.add_error_handler(error)

# Start the Bot
updater.start_polling()

# Run the bot until you press Ctrl-C or the process receives SIGINT, SIGTERM or SIGABRT
updater.idle()

if name == 'main':
main()