
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
fastcloud
Advanced tools
Upload and download files to common cloud providers like azure blob storage, s3 and more
Simplistic unified interface for uploading and downloading files to the cloud.
Supports
Install via pypi with:
# to support all cloud providers
pip install fastcloud
# support azure blob storage
pip install fastcloud[azure]
Or check-out the repository and work from there.
To directly up and download files to the cloud storage provider, you can use the following code snippets.
from fastcloud import AzureBlobStorage
# Create storage client
cloud_store = AzureBlobStorage(connection_string="DefaultEndpointsProtocol=https;AccountName=...;AccountKey=...;EndpointSuffix=...")
Recommendation: Use environment variables to store the cloud storage access tokens / credentials.
Option 1: Just with plain bytes io
# upload. Will create a file in the cloud with the name my_file
file_url = cloud_store.upload(file="path/to/file", file_name="my_file", folder="my_upload_dir")
# download. Will download the file and save it to the save-path
cloud_store.download(file_id, save_path="path/to/save")
Option 2: with media-toolkit. Media-toolkit provides easy to use classes for images, videos, audio files.
from media_toolkit import ImageFile
# upload
my_img = ImageFile.from_np_array(my_cv2_img)
file_url = cloud_store.upload(file=my_img)
# download and parse as media_file
media_file = cloud_store.download(file_url)
How to setup Azure Blob Storage and get connection string?
Missing a cloud provider?
Missing a feature?
Also have a look at media-toolkit, FastTaskAPI for your personal cloud solution.
FAQs
Upload and download files to common cloud providers like azure blob storage, s3 and more
We found that fastcloud 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.