🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

voidbox

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

voidbox

Free cloud file storage, built on `Voidbox.alhasubji.store` API's

1.0.0
PyPI
Maintainers
1

#VoidBox: Free cloud files storage. VoidBox WEB

Python  

Free Cloud Storage Module:

PyPI version

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()
# Create Object 
api = VoidBoxAPI(token="API or Bearer Token")

# Signup
signup_response = create.signup("username", "password")
print(signup_response)

# Login 
login_response = create.login("username", "password")
print(login_response)

# Get my Info
me_response = api.get_me()
print(me_response)
# Create a box.
create_box_response = api.create_box("My New Box", "A description of my new box")
print(create_box_response)
#Upload a file to a box
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.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts