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.1.1.tar.gz
(4.4 kB
view hashes)
Built Distribution
Close
Hashes for computerender-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f85185af56c6b6eb38138fdf3555445361aa672212006f2316be3c7544664adb |
|
MD5 | 3bfe0b2ddca62f3077aedfbf21e5c53d |
|
BLAKE2b-256 | 995d005f83513806bd2f6f12e9b13d3cac5cdc1e18f15b03d70118cf79bc6ffe |