'HOW TO IMPORT telegram.ext in python
from telegram.ext import (Updater, CommandHandler) . iam running this it shows like ModuleNotFoundError: No module named 'telegram.ext'; 'telegram' is not a package
what should i do.
Solution 1:[1]
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters, CallbackContext
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Паван ВикаÑитха |
