主题
有没有可以生成条形码的python库?
特点
python-barcode不适合,我需要一个生成器来生成完全相同的条形码,也许有人有这样的生成脚本,或者有人知道类似的python-barcode库吗?
新的 Aiogram3 版本 3.0.0b7。机器人不响应消息,只向控制台输出日志(据我所知,机器人无法从服务器接收更新)。蟒蛇版本:3.10.9
Failed to fetch updates - TelegramConflictError: Conflict: can't use getUpdates method while webhook is active; use deleteWebhook to delete the webhook first
Sleep for 1.000000 seconds and try again... (tryings = 0, bot id = 5082045144)
ETC。
from aiogram import Bot, Dispatcher
from aiogram.types import Message
import asyncio
token = "<token>"
async def get_start(message: Message, bot: Bot):
await message.reply(f"Привет, {message.from_user.first_name}!")
async def start():
bot = Bot(token=token)
dp = Dispatcher()
dp.message.register(get_start)
try:
await dp.start_polling(bot)
finally:
await bot.session.close()
if __name__ == "__main__":
asyncio.run(start())
我该如何解决机器人的这个问题?
当我写一个大数字并将其提高到一个大数字时,什么都没有显示给我,当我关闭脚本时,ctrl+c
我得到一个错误KeyboardInterrupt
。except
捕获异常,但仅在ctrl+c
您再次单击时触发,一切都关闭
import numexpr
math = input("> ")
count_math = numexpr.evaluate(math)
print(count_math)