有没有办法上传一个虚拟的PDF文件到Discord上(我不想在我的电脑上创建文件)。我已经知道我可以用io.StringIO
发送虚拟的txt
文件,如下所示:
import discord, asyncio
from discord.ext import commands
from io import StringIO
bot = commands.Bot()
@bot.command()
async def send(ctx, *, string):
await ctx.send(file=discord.File(
fp=StringIO("This is a test"),
filename="Test.txt"
)
但是这不适用于PDF文件。我尝试使用io.BytesIO
代替,但我没有得到任何结果。有人知道如何解决这个问题吗?
1条答案
按热度按时间q35jwt9p1#
下面是一个使用FPDF的例子: