Skip to main content

Dream api

Project description

Hi there, I'm Wombo

I am a module for using wombo dream ai (neural network of image generation)

Mini Documentation
Asynchronous and synchronous module
from wombo import AsyncDream # async
from wombo import Dream # sync

Create a task
  • since all actions are the same in both versions, I will consider only one module, namely the asynchronous
dream = AsyncDream()
task = await dream.create_task(prompt: str, style: int)
  • The list of styles will be available via github

Check a task (complite or no)
task = await dream.check_task(task.id) 
# To get information about readiness in bool format

task = await dream.check_task(task.id, False) 
# To get information about readiness

Create gif
  • photo_url_list Only the already generated image has. To check the image, use check_task(). Return io.BytesIO()
gif = await dream.gif(task.photo_url_list)

gif = await dream.gif(task.photo_url_list, thread=False)
# Used if you don't want to use an asynchronous thread.
# to generate a gif, it is true since the generation is quite long
# Generation in the thread is not available for the synchronous library

Generate
  • 1 command to receive, reply immediately. without checks via check_task()
gif = await dream.generate(taxt:str, syle: int, gif: bool)

Creditless

Requirements

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wombo-0.1.81.tar.gz (7.9 kB view hashes)

Uploaded Source

Built Distribution

wombo-0.1.81-py3-none-any.whl (10.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page