Computerender
Project description
Computerender Python Client
Installation
$ pip install computerender
Examples
from computerender import Computerender
import asyncio
cr = Computerender()
# Generate image and save to file
with open("cow.jpg", "wb") as f:
img_bytes = asyncio.run(cr.generate("cool cow party"))
f.write(img_bytes)
# Generate image with custom parameters
img_bytes = asyncio.run(cr.generate("testing", w=1024, h=384, iterations=20))
# img2img generation reading from and writing to files
with open("cow.jpg", "rb") as in_f:
img_bytes = asyncio.run(
cr.generate(
"anime cow party",
img=in_f.read()
)
)
with open("anime_cow.jpg", "wb") as out_f:
out_f.write(img_bytes)
# img2img one-liner reading and writing to file
open("fly.jpg", "wb").write(asyncio.run(cr.generate("fly", img=open("cow.jpg", "rb").read())))
# Generate image and use it for img2img without saving anything to files
img_bytes = asyncio.run(
cr.generate("testing", w=1024, h=384, iterations=20)
)
result_bytes = asyncio.run(
cr.generate("testing style transfer", img=img_bytes)
)
License
Distributed under the terms of the [MIT license][license]
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
computerender-0.0.3.tar.gz
(4.1 kB
view hashes)
Built Distribution
Close
Hashes for computerender-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f25cab65f6bbba222095b33bec10c472a9752ae4fef7ffc3f13a00f993582e7c |
|
MD5 | 4814c2edf2616270c85893163a7b67b2 |
|
BLAKE2b-256 | 6f0640bdf5b299a2d77b1e10222441464ffd842acb26b0c66d13dbc90c3105db |