Python SDK for capella.pics
This package is called PyCapella on PyPI. Install using:
$ pip install pycapella
import pycapella
api = pycapella.Capella()
# Save local file 'image.jpg' to the Capella
response = api.upload_file("image.jpg")
assert response['success'] == True
print("Success! Image URL is {}".format(response['url']))
# Save remote image by url to the Capella
response = api.upload_url("https://ifmo.su/public/app/img/products/capella.png")
assert response['success'] == True
print("Success! Image URL is {}".format(response['url']))
Full documentation can be found on GitHub – https://github.com/codex-team/capella
Ask a question or report a bug on the create issue page.
Know how to improve PyCapella? Fork it and send pull request.
You can also write questions and suggestions to the CodeX Team’s email.