Metadata-Version: 2.1
Name: bigjpg
Version: 1.0.4
Summary: Wrappper for https://bigjpg.com/
Author: Marcuth
Author-email: marcuth2006@gmail.com
License: MIT License
Keywords: bigjpg wrapper api
Description-Content-Type: text/markdown

# Instalation

**Pypi**
```
pip install bigjpg
```

**GitHub**
```
pip install git+https://github.com/1Marcuth/bigjpg-py.git
```

# Simple use example
```py
from bigjpg import Bigjpg, styles, noices, enlarge_values

enlarger = Bigjpg("YOUR API TOKEN HERE")

image_info = enlarger.enlarge(
    style=styles.Art, # Type of image
    noise=noices._None, # Noise level to be removed
    enlarge_value=enlarge_values._4x, # Enlargement value
    image_url="https://avatars.githubusercontent.com/u/91915075?v=4" # Url of image to be enlarged
)

image_url = image_info.get_url() # Enlarged image url
image_info.download("enlarged_image.png") # Method to download enlarged image

print(image_url)
```
