1212
FileUploader-python/README.md at main · Andcool-Systems/FileUploader-python · GitHub
Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 718 Bytes

File metadata and controls

26 lines (17 loc) · 718 Bytes

File uploader package

Asynchronous Python package for working with the API fu.andcool.ru. The package is currently in beta.

Installing

Run pip install fileuploader in the console.

Simple example

Use the upload method to upload the file to the server.

import fileuploader
import asyncio


async def run():
    f = open("tests/logo.png", "rb")  # Open file as bytes
    response = await fileuploader.upload(f.read(), f.name)  # Upload file to a fu
    print(response.file_url_full)  # Print file url


asyncio.run(run())

More examples

You can find more usage examples here.