Metadata-Version: 2.1
Name: cloudinary-upload
Version: 0.0.1
Summary: Upload a signed image to cloudinary effectively
Home-page: https://github.com/faradayafrica/cloudinary-image-upload
License: CC0 1.0
Keywords: cloudinary,media asset
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: cloudinary
Requires-Dist: python-decoupleimportlib-metadata ; python_version <= "3.9"

# About
This library allows you to upload a signed image to cloudinary effectively. 

<br>

## Installation
Install the library to begin using it. <br>

    pip install cloudinary-upload

Configure `.env` with your cloudinary credentials. <br>

    CLOUDINARY_NAME=xxxxxxx
    CLOUDINARY_API_KEY=xxxxxxxxxxx
    CLOUDINARY_API_SECRET=xxxxxxxxx-xxxxxxx

In the file (.py) that you wish to use it, import the library. <br>

    from cloudinary_upload import upload_image_cloudinary

    upload_true = upload_image_cloudinary(image_file="/path/to/image.png")


The `upload_true` variable is going to give you a bunch of meaningful information from cloudinary, you can get the image_url by printing: <br>

    print("Image URL: ", upload_true['url'])

<br>

## Contribute

All contributions are welcome:

- Read the issues, Fork the project and do a Pull Request.
- Request a new topic creating a `New issue` with the `enhancement` tag.
- Find any kind of errors in the `README` and create a `New issue` with the details or fork the project and do a Pull Request.
- Suggest a better or more pythonic way for existing examples.

