+ использовал такой импорт как
import asyncio
from glQiwiApi import QiwiWrapper
import telebot
from telebot import types
@bot.message_handler(commands=['QIWI'])
async def create_p2p_bill():
async with QiwiP2PClient(secret_p2p="") as p2p:
bill = await p2p.create_p2p_bill(amount=1)
print(f"Вот ваша форма для оплаты {bill.pay_url}")
if await p2p.check_if_bill_was_paid(bill):
bot.send_message(message.chat.id,("Оплата прошла, вот держите файл")
doc = open(r"C:\Users\Артём\Desktop\shema shorts (1)", "rb")
bot.send_document(message.chat.id, doc=doc)