Metadata-Version: 2.1
Name: uptobox
Version: 1.1.0
Summary: A simple API wrapper for Uptobox.
Home-page: https://github.com/ArticOff/uptobox
Author: Artic#3065
Author-email: artic.admisoffi@gmail.com
Maintainer: Artic#3065
Maintainer-email: artic.admisoffi@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Customer Service
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python
Classifier: Environment :: Console
Classifier: Environment :: Win32 (MS Windows)
Classifier: Framework :: AsyncIO
Classifier: Framework :: Pytest
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp


# uptobox

A simple API wrapper for Uptobox.




## Authors

- [@ArticOff](https://www.github.com/ArticOff)


## Installation

Install uptobox with pip

```bash
# Linux/macOS
python3 -m pip install -U uptobox

# Windows
py -3 -m pip install -U uptobox
```
    
## Usage/Examples

```python
from uptobox import Client

client = Client(
    token="token"
)

@client.listen()
def on_connect():
    print(f"Connected to {client.user.name}")
    file = client.fetchFile("e9hrkzrylk58")
    print(file.name)

client.login()
```

## Feedback

If you have any feedback, please reach out to us on [our discord](https://articoff.github.io/discord)

## Links

- [Official discord server](https://articoff.github.io/discord)
- [CodeSec Community](https://articoff.github.io/codesec)

