Metadata-Version: 2.1
Name: seedphotos
Version: 0.1.3
Summary: A lib that create image through words
License: MIT
Author: Vinicius Barbosa de Aguiar
Author-email: vb9763662@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: requests (>=2.27.1,<3.0.0)
Description-Content-Type: text/markdown

# SeedPhotos

<p>A lib that create image through words</p>

## Install:

<p>Use poetry or pip for installation: </p>

    pip install seedphotos

or

    poetry add seedphotos



## How to use:

```python
from seedphotos.photos import *

    photos = Photos(width=300, height=300, filename='image name', seed='word seed', folder='file folder', format='webp or jpg') # Mandatory parameters to generate the image
    photos.getPhotos() # Download image
```

<p>With all parameters satisfied it looks like this: </p>

```python
from seedphotos.photos import *

photos = Photos(width=300, height=300, filename='image', seed='Brazil', folder='/home/barbosa/test/test', format='jpg')
photos.getPhotos()
```
