Metadata-Version: 2.1
Name: IiliIo
Version: 1.0.3
Summary: IiliIo uploader without API key
Home-page: https://github.com/OneFinalHug/IiliIo/
Author: OneFinalHug
Author-email: voidlillis@gmail.com
License: MIT
Keywords: IiliIo_uploader,telegram,host,uploader,IiliIo,image
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: colorclip
Requires-Dist: fake-useragent
Requires-Dist: requests-toolbelt

# IiliIo public Uploader 
[![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=flat&logo=telegram&logoColor=white)](https://t.me/onefinalhug) 

![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)

### Upload Images without API key
- Unlimited uploads
- No API limit
- Support Url & Local upload 

⚠️ **Warning**: Do not upload private or personal pictures because this library uses the IiliIo public API

## Install
```
pip install IiliIo
```
## Example use

#### Local upload

```
from IiliIo import IiliIo

upload = IiliIo()
up = upload.upload_image("Drive/lol/ofh.jpg")#full image path
print(up)
```
```
>>> IiliIo -i Drive/lol/ofh.jpg
```
#### Url upload
```
from IiliIo import IiliIo

upload = IiliIo()
up = upload.upload_url("https://i.pinimg.com/originals/fe/ea/71/feea71eaa793b00d9e927985a9d4b199.jpg")
print(up)
```
```
IiliIo -u https://i.pinimg.com/originals/fe/ea/71/feea71eaa793b00d9e927985a9d4b199.jpg
```
