gituser/test_manylinux/: pydata-google-auth-1.3.0 metadata and description

Homepage Simple index

PyData helpers for authenticating to Google APIs

author The PyData Development Team
author_email pydata@googlegroups.com
classifiers
  • Development Status :: 5 - Production/Stable
  • Environment :: Console
  • Intended Audience :: Science/Research
  • Operating System :: OS Independent
  • Programming Language :: Python
  • Programming Language :: Python :: 2
  • Programming Language :: Python :: 2.7
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.5
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Topic :: Scientific/Engineering
  • License :: OSI Approved :: BSD License
keywords data
license BSD License
requires_dist
  • setuptools
  • google-auth (<2.0dev,>=1.25.0) ; python_version < "3.0"
  • google-auth-oauthlib (<0.4.2dev,>=0.4.0) ; python_version < "3.0"
  • google-auth (<3.0dev,>=1.25.0) ; python_version >= "3.6"
  • google-auth-oauthlib (>=0.4.0) ; python_version >= "3.6"
File Tox results History
pydata_google_auth-1.3.0-py2.py3-none-any.whl
Size
14 KB
Type
Python Wheel
Python
2.7

Build Status Version Status Coverage Status

pydata-google-auth is a package providing helpers for authenticating to Google APIs.

Installation

Install latest release version via conda

$ conda install pydata-google-auth --channel conda-forge

Install latest release version via pip

$ pip install pydata-google-auth

Install latest development version

$ pip install git+https://github.com/pydata/pydata-google-auth.git

Usage

Use the pydata_google_auth.get_user_credentials() function to authenticate to Google APIs with user credentials.

import pydata_google_auth
credentials = pydata_google_auth.get_user_credentials(
    ['https://www.googleapis.com/auth/cloud-platform'],
)

# Use the credentials in other libraries, such as the Google BigQuery
# client library.
from google.cloud import bigquery
client = bigquery.Client(project='YOUR-PROJECT-ID', credentials=credentials)

See the pydata-google-auth documentation for more details.