
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
#VoidBox: Free cloud files storage. VoidBox WEB
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
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)
signup
and signin
functions only using the Create Integrated class .[!!] *** Powered By voidbox.alhasubji.store
website.
FAQs
Free cloud file storage, built on `Voidbox.alhasubji.store` API's
We found that voidbox demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.