#VoidBox: Free cloud files storage.
VoidBox WEB
Free Cloud Storage Module:

VoidBox is a free cloud storage library based on the API of voidbox.alhasubji.store
. It operates on a box system, where each box can store up to 1.9 GB of data. The library allows you to interact with the API for creating boxes, uploading files, and more.
pip install VoidBox
Try it now!
An e.g
You must have the API_KEY
or BearerTOKEN
to use:
from voidbox import VoidBoxAPI
from voidbox import Create
create = Create()
api = VoidBoxAPI(token="API or Bearer Token")
signup_response = create.signup("username", "password")
print(signup_response)
login_response = create.login("username", "password")
print(login_response)
me_response = api.get_me()
print(me_response)
create_box_response = api.create_box("My New Box", "A description of my new box")
print(create_box_response)
upload_file_response = api.upload_file("boxid", "path/to/file.txt")
print(upload_file_response)
It also has signup
and signin
functions only using the Create Integrated class .
[!!] *** Powered By voidbox.alhasubji.store
website.