gituser/docker_multiarch/: pandas-gbq-0.27.0 metadata and description

Homepage Simple index

Google BigQuery connector for pandas

author pandas-gbq authors
author_email googleapis-packages@google.com
classifiers
  • Development Status :: 4 - Beta
  • Intended Audience :: Developers
  • Intended Audience :: Science/Research
  • Operating System :: OS Independent
  • License :: OSI Approved :: BSD License
  • Programming Language :: Python
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Operating System :: OS Independent
  • Topic :: Internet
  • Topic :: Scientific/Engineering
license BSD-3-Clause
provides_extras tqdm
requires_dist
  • setuptools
  • db-dtypes<2.0.0,>=1.0.4
  • numpy>=1.18.1
  • pandas>=1.1.4
  • pyarrow>=4.0.0
  • pydata-google-auth>=1.5.0
  • google-api-core<3.0.0dev,>=2.10.2
  • google-auth>=2.13.0
  • google-auth-oauthlib>=0.7.0
  • google-cloud-bigquery<4.0.0dev,>=3.4.2
  • packaging>=22.0.0
  • google-cloud-bigquery-storage<3.0.0dev,>=2.16.2; extra == "bqstorage"
  • geopandas>=0.9.0; extra == "geopandas"
  • Shapely>=1.8.4; extra == "geopandas"
  • tqdm>=4.23.0; extra == "tqdm"
requires_python >=3.8
File Tox results History
pandas_gbq-0.27.0-py2.py3-none-any.whl
Size
37 KB
Type
Python Wheel
Python
2.7

preview pypi versions

pandas-gbq is a package providing an interface to the Google BigQuery API from pandas.

Installation

Install latest release version via pip

$ pip install pandas-gbq

Install latest development version

$ pip install git+https://github.com/googleapis/python-bigquery-pandas.git

Usage

Perform a query

import pandas_gbq

result_dataframe = pandas_gbq.read_gbq("SELECT column FROM dataset.table WHERE value = 'something'")

Upload a dataframe

import pandas_gbq

pandas_gbq.to_gbq(dataframe, "dataset.table")

More samples

See the pandas-gbq documentation for more details.