skillfed

gcloud-aio-storage

Python Client for Google Cloud Storage

gcloud-aio-storage Permissive license MIT Active 348 v9.6.4 released

Install

gcloud-aio-storage on PyPI

pip

pip install gcloud-aio-storage

uv

uv add gcloud-aio-storage

poetry

poetry add gcloud-aio-storage

Package facts

License MIT (permissive)
Python support supports the current Python release (<4.0,>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 4 — aiofiles, gcloud-aio-auth, pyasn1-modules, rsa
Maintenance actively maintained — 168 days since the last release
Last repo commit
First released
Popularity one of the top 1,000 most-downloaded packages on PyPI (30-day window, as of 2026-08-13)
Known vulnerabilities none known (OSV.dev, checked 2026-08-13)

Evidence: gcloud_aio_storage-9.6.4-py3-none-any.whl

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Topic :: Internet

About gcloud-aio-storage

from the package's own PyPI description — quoted content, verbatim

(Asyncio OR Threadsafe) Python Client for Google Cloud Storage

This is a shared codebase for ``gcloud-aio-storage`` and
``gcloud-rest-storage``

|pypi| |pythons|

Installation

.. code-block:: console

$ pip install --upgrade gcloud-{aio,rest}-storage

Usage

See our docs_.

Contributing

Please see our contributing guide_.

.. _contributing guide: https://github.com/talkiq/gcloud-aio/blob/master/.github/CONTRIBUTING.rst .. _our docs: https://talkiq.github.io/gcloud-aio

.. |pypi| image:: https://img.shields.io/pypi/v/gcloud-aio-storage.svg?style=flat-square :alt: Latest PyPI Version (gcloud-aio-storage) :target: https://pypi.org/project/gcloud-aio-storage/

.. |pythons| image:: https://img.shields.io/pypi/pyversions/gcloud-aio-storage.svg?style=flat-square&label=python :alt: Python Version Support :target: https://pypi.org/project/gcloud-aio-storage/

Read as markdown · JSON record · Source repository

AI interpretation — verify before relying

AI-generated interpretation of the package facts above; every digit, version, license, or vulnerability id it cites is grounded in the facts already shown on this page

Async-first Python client for Google Cloud Storage with support for both asyncio and threadsafe patterns, enabling non-blocking cloud storage operations.

Low friction installation with four lightweight runtime dependencies. Active maintenance with recent releases (168 days since last version) and an unarchivedrepository showing ongoing development.

MIT license permits commercial and private use with minimal restrictions, requiring only attribution and inclusion of the license text.

Usage

pip install gcloud-aio-storage

from gcloud.aio.storage import Storage
import aiofiles

async with Storage() as client:
    bucket = client.bucket('my-bucket')
    blob = bucket.blob('my-file.txt')
    await blob.download_to_filename('local-file.txt')

Requires Python 3.10 or later; Google Cloud credentials must be configured via environment variables or application default credentials.

Verdict: Production-stable async GCS client in active development with no known vulnerabilities, low install friction, and permissive licensing. Well-suited for async-first Python applications needing non-blocking cloud storage access.

Needs verification

  • Whether gcloud-aio-auth and rsa dependencies introduce any transitive security concerns beyond the direct package scope.
  • Performance characteristics and connection pooling behavior compared to synchronous alternatives in production workloads.
async google cloud storage pythongcs asyncio clientnon-blocking cloud storagegoogle cloud storage asyncasyncio gcp storagethreadsafe gcs pythonasync gcloud storage

Similar packages