Skip to main content

A community-maintained Python package for wrapping a variety of REST API calls for different AI art models.

Project description

Pycurtain

A community-maintained python package for wrapping REST APIs that interface with a variety of different AI art models. Think "curtain" like what is seen in an art gallery. This tool lets the developer close the curtains and only focus on implementing one code base for any supported AI art models.

Install

pip install pycurtain

Usage

There are tasks (image-related) and sources (AI art models) that are supported. The following is an example of how to use the package to generate an image from a model source.

from PIL import Image
import pycurtain

source = pycurtain.source.SourceType.STABILILTY_AI
prompt:str = "A blooming flower in the middle of a desert"
img_o : Image.Image = pycurtain.task.image.generate(source, prompt)
img_o.save('output.png')

AI Model Sources

Currently all supported AI Models require an API key generated from the REST API host. Pycurtain is a third-party (open-source / community driven) python wrapper SDK and is not associated with any of the AI Model providers. Each API key can be generated by signing up from the AI Model hosting site. The current implementation requires each (in-use) API key to be set in the environment variables following the secrets\stuff.py format.

No API Key or private information is stored by Pycurtain.

Sources Offical Sites

Road Map

  • provide prelimiary wrappers for these AI model sources

  • allow users to adjust common parameters between models

  • provide utility features beyond the model wrapper

    • equirectangluar images (360 degree images)
    • simple inpainting mask creation
  • beyond images... videos, text, audio. All leveraging the available REST API accessible ML models of today.

Developing Pycurtain

To install pycurtain, along with the tools you need to develop and run test, run the following in your virtual environment:

pip install -e .[dev]

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

pycurtain-0.0.1.tar.gz (8.1 kB view hashes)

Uploaded Source

Built Distribution

pycurtain-0.0.1-py3-none-any.whl (8.7 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