├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── app_async.py ├── docs ├── README.md ├── SUMMARY.md ├── images.xd ├── imagine_banner.png ├── imagine_logo.gif ├── imagine_logo.png └── usage │ ├── downloading-assets.md │ └── generating-an-image.md ├── example.jpeg ├── imaginepy ├── __init__.py ├── async_imagine.py ├── constants.py ├── exceptions.py ├── sync_imagine.py └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/app.py -------------------------------------------------------------------------------- /app_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/app_async.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/images.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/docs/images.xd -------------------------------------------------------------------------------- /docs/imagine_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/docs/imagine_banner.png -------------------------------------------------------------------------------- /docs/imagine_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/docs/imagine_logo.gif -------------------------------------------------------------------------------- /docs/imagine_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/docs/imagine_logo.png -------------------------------------------------------------------------------- /docs/usage/downloading-assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/docs/usage/downloading-assets.md -------------------------------------------------------------------------------- /docs/usage/generating-an-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/docs/usage/generating-an-image.md -------------------------------------------------------------------------------- /example.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/example.jpeg -------------------------------------------------------------------------------- /imaginepy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/imaginepy/__init__.py -------------------------------------------------------------------------------- /imaginepy/async_imagine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/imaginepy/async_imagine.py -------------------------------------------------------------------------------- /imaginepy/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/imaginepy/constants.py -------------------------------------------------------------------------------- /imaginepy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/imaginepy/exceptions.py -------------------------------------------------------------------------------- /imaginepy/sync_imagine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/imaginepy/sync_imagine.py -------------------------------------------------------------------------------- /imaginepy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/imaginepy/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItsCEED/Imaginepy/HEAD/setup.py --------------------------------------------------------------------------------