Telebot import issue - python

When I'm trying to import telebot it gives me the error.
Error:
I've tried to reinstall telegramBotApi several times but it didn't work out.

Telebot associated with pyTelegramBotAPI not telegramBotApi.
Run this : pip install pyTelegramBotAPI

Related

discord.ui import failure - Python 3 and Discord.py

I've tried to import discord.ui and discord in python.
I've installed it via python3 -m pip install discord.ui and imported it via from discord.ui import View, Button. Discord.py: python3 -m pip install discord.py - Imported via import discord
If I try to start the program, the following errors came up.
failure messages
I'm using PyCharm and I can't figure out what's the error..
Importing discord, discord.ui, discord.ext, asyncio
--> no error messages and full functionability

reportMissingImports Python error but import works fine

When I install package with python and import it, I often get a missing imports message such as:
Import "fastapi" could not be resolvedPylancereportMissingImports
The imports always work perfectly fine, the fastapi example above will run a server and I can build an API without issue.
Can anyone explain why I am getting this error and how I could get rid of it?
Reinstall fastapi again separately.
pip install 'fastapi[all]'
pip install fastapi
pip install uvicorn

Pycord, can't import "commands" from discord.ext

I'm trying to add slash commands to my discord bot, but when I try to add Option with discord.app vs code says Import "discord" could not be resolved Pylance(reportMissingImports), and when I run it it says ImportError: cannot import name 'commands' from 'discord.ext' (unknown location) Here is my code:
import discord
from discord.ext import commands
from discord import Option
bot = commands.Bot(command_prefix = '.')
#bot.slash_command()
async def hello(ctx, user:Option(discord.Member, 'User to say hello to', required=True, default=None)):
await ctx.send(f'Hello {user}!')
How can I fix this?
Edit: I fixed the vscode error by just doing discord, but I still haven't fixed the ImportError
Edit 2: I fixed the ImportError by using pip install py-cord instead of pip install pycord, but there's a new error: line 3, in <module> from discord import Option ImportError: cannot import name 'Option' from 'discord'
You have to install the developer version of pycord (2.0.0) to get the Options property. you can install that with pip install git+https://github.com/Pycord-Development/pycord.
You need git to do this.
The reason should be that you didn't install discord.py/pycord correctly.
You should try reinstalling the module.
For discord.py it's:
pip install discord
For pycord it's:
pip install pycord

'Telebot' has no attribute 'types'

Well, I've tried to run another's person telegram bot on my computer, but got a mistake that:
Traceback (most recent call last):
File "C:\Users\Dmitriy\PycharmProjects\pythonProject\Main.py", line 10, in <module>
keyboard = telebot.types.ReplyKeyboardMarkup(True, True)
AttributeError: module 'telebot' has no attribute 'types'
I've tried to import types from telebot:
from telebot import types
But it didn't actually helped. The strangest thing is that this code works on code owner's computer.
What can this be about?
enter image description here
The problem is that telebot and pyTelegramBotApi are different libraries but they are both imported via import telebot. In fact, when you do from telebot import types you import it from pyTelegramBotApi, not from telebot.
To fix the issue just type:
pip uninstall telebot
pip uninstall pyTelegramBotApi
pip install pyTelegramBotApi
It worked for me :)
You need to install python-telegram-bot f.e via pip
pip install python-telegram-bot
then import it from telegram package
from telegram import ReplyKeyboardMarkup
and replace creation of ReplyKeyboardMarkup into this:
keyboard = ReplyKeyboardMarkup(True, True)
for like these errors ... reinstall the library or use (--upgrade) when you install it !
like this:
pip uninstall telebot
pip install pyTelegramBotAPI
pip install pytelegrambotapi --upgrade
Happy Coding!
If you use PyCharm, then I advise you to do the following.
Go to the directory of your project.
In this directory, open the venv\Scripts directory (eventually you should get the following path \venv\Scripts)
Next, go to the command line along this path AND ONLY AFTER THAT WRITE the pip install pyTelegramBotAPI COMMAND ♥

Error import python-pushover

I am currently running python 2.7.
I already installed python-pushover.
But when I try to import following code
from pushover import init, Client'
I get following error
from pushover import init, Client
ImportError: cannot import name init
I have tried
import pushover
from pushover import init, Client
same error.
My guess is that you did pip install pushover. However, this will install a different package from the one you are interested in. Instead, you will need to uninstall that package:
pip uninstall pushover
and install the correct package:
pip install python-pushover
Once you do that, your code should work as expected.

Categories