Personal tools
Skip to content. | Skip to navigation
Ruby/NTLM provides message creator and parser for the NTLM authentication.
Entry points are a way for Python packages to advertise objects with some common interface. The most common examples are console_scripts entry points, which define shell commands by identifying a Python function to run. The entrypoints module contains functions to find and load entry points.
flake8-polyfill is a package that provides some compatibility helpers for Flake8 plugins that intend to support Flake8 2.x and 3.x simultaneously.
Library to access the metadata for a Python package. This package supplies third-party access to the functionality of importlib.metadata including improvements added to subsequent Python versions.
Highway is a C++ library for SIMD (Single Instruction, Multiple Data), i.e. applying the same operation to 'lanes'.
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”.