Skip to content

ArticOff/uptobox

Repository files navigation

uptobox

A simple API wrapper for Uptobox.

Authors

Installation

Install uptobox with pip

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

# Windows
py -3 -m pip install -U uptobox

Usage/Examples

from uptobox import Client

client = Client(
    token="token"
)

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

client.login()

Feedback

If you have any feedback, please reach out to us on our discord

Links

Releases

No releases published

Packages

No packages published

Languages