Personal tools
Skip to content. | Skip to navigation
cPython bindings for zopfli.
Py4J Java Library.
aioitertools Implementation of itertools, builtins, and more for AsyncIO and mixed-type iterables. Install aioitertools requires Python 3.6 or newer. You can install it from PyPI: $ pip install aioitertools Usage aioitertools shadows the standard library whenever possible to provide asynchronous version of the modules and functions you already know. It's fully compatible with standard iterators and async iterators alike, giving you one unified, familiar interface for interacting with iterable objects: from aioitertools import iter, next, map, zip something = iter(...) first_item = await next(something) async for item in iter(something): ... async def fetch(url): response = await aiohttp.request(...) return response.json async for value in map(fetch, MANY_URLS): ... async for a, b in zip(something, something_else): ... aioitertools emulates the entire itertools module, offering the same function signatures, but as async generators. All functions suppor
gcloud high-level module
This is a shared codebase for gcloud-aio-auth and gcloud-rest-auth This library implements an IamClient class, which can be used to interact with GCP public keys and URL sign blobs. It additionally implements a Token class, which is used for authorizing against Google Cloud. The other gcloud-aio-* package components accept a Token instance as an argument; you can define a single token for all of these components or define one for each. Each component corresponds to a given Google Cloud service and each service requires various “scopes”.
This is a shared codebase for gcloud-aio-bigquery and gcloud-rest-bigquery
This is a shared codebase for gcloud-aio-storage and gcloud-rest-storage
Google Ads API Client Library for Python This project hosts the Python client library for the Google Ads API.Build Status |build-status|Requirements * Python 3.7+Installation .. code-block:: pip install google-adsFeatures* Distributed via PyPI. * Easy management of credentials. * Easy creation of Google Ads API service clients.Documentation - Please refer to our Developer Site_ for...
Written by Google, this library provides a small, flexible, and powerful Python 3 client library for accessing Google APIs.
Core Library for Google Client Libraries |pypi| |versions|This library is not meant to stand-alone. Instead it defines common helpers used by all Google API clients. For more information, see the documentation_... |pyp .. |version .. _documentation: Supported Python Versions -