Spaces:
Runtime error
Runtime error
Update main.py
Browse files
main.py
CHANGED
@@ -1,9 +1,8 @@
|
|
1 |
from fastapi import FastAPI, Request, Response
|
2 |
from contextlib import asynccontextmanager
|
3 |
from http import HTTPStatus
|
4 |
-
from telegram import Update
|
5 |
-
from telegram.ext import Application, CommandHandler, ContextTypes
|
6 |
-
|
7 |
# Initialize python telegram bot
|
8 |
ptb = (
|
9 |
Application.builder()
|
|
|
1 |
from fastapi import FastAPI, Request, Response
|
2 |
from contextlib import asynccontextmanager
|
3 |
from http import HTTPStatus
|
4 |
+
from telegram import ForceReply, Update
|
5 |
+
from telegram.ext import Application, CommandHandler, ContextTypes, MessageHandler, filters
|
|
|
6 |
# Initialize python telegram bot
|
7 |
ptb = (
|
8 |
Application.builder()
|