或許
1.0.0
Perchance 的非官方 Python API。
若要安裝此模組,請執行以下命令:
pip install perchance
import asyncio
import perchance
async def main ():
gen = perchance . TextGenerator ()
prompt = "How far is the moon?"
async for chunk in gen . text ( prompt ):
print ( chunk , end = '' )
asyncio . run ( main ())
import asyncio
import perchance
from PIL import Image
async def main ():
gen = perchance . ImageGenerator ()
prompt = "Fantasy landscape"
async with await gen . image ( prompt ) as result :
binary = await result . download ()
image = Image . open ( binary )
image . show ()
asyncio . run ( main ())