Metadata-Version: 2.1
Name: Pixeldrain
Version: 1.0.9
Summary: Pixeldrain API
Home-page: UNKNOWN
Author: Fayas Noushad
License: MIT
Project-URL: Tracker, https://github.com/FayasNoushad/Pixeldrain/issues
Project-URL: Source, https://github.com/FayasNoushad/Pixeldrain
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Pixeldrain

A pixeldrain uploader and downloader made with pixeldrain api

## Installation

```
pip install Pixeldrain
```

## Usage

```py
import pixeldrain


pixeldrain.upload_file("file_path")
# For upload file

pixeldrain.download_file("file_id", "file_name")
# For get direct file

file = pixeldrain.file("file_id")
# For get file link

info = pixeldrain.info("file_id")
# For information about the file

thumbnail = pixeldrain.thumbnail("file_id", width="", height="")
# For get thumbnail
```


