├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── bigquery ├── __init__.py ├── client.py ├── errors.py ├── query_builder.py ├── schema_builder.py ├── tests │ ├── __init__.py │ ├── test_client.py │ ├── test_query_builder.py │ └── test_schema_builder.py └── version.py ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── pages │ ├── client.rst │ ├── query_builder.rst │ └── schema_builder.rst ├── requirements_dev.txt ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/README.md -------------------------------------------------------------------------------- /bigquery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/bigquery/__init__.py -------------------------------------------------------------------------------- /bigquery/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/bigquery/client.py -------------------------------------------------------------------------------- /bigquery/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/bigquery/errors.py -------------------------------------------------------------------------------- /bigquery/query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/bigquery/query_builder.py -------------------------------------------------------------------------------- /bigquery/schema_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/bigquery/schema_builder.py -------------------------------------------------------------------------------- /bigquery/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bigquery/tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/bigquery/tests/test_client.py -------------------------------------------------------------------------------- /bigquery/tests/test_query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/bigquery/tests/test_query_builder.py -------------------------------------------------------------------------------- /bigquery/tests/test_schema_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/bigquery/tests/test_schema_builder.py -------------------------------------------------------------------------------- /bigquery/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.15.0' 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pages/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/docs/pages/client.rst -------------------------------------------------------------------------------- /docs/pages/query_builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/docs/pages/query_builder.rst -------------------------------------------------------------------------------- /docs/pages/schema_builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/docs/pages/schema_builder.rst -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylertreat/BigQuery-Python/HEAD/tox.ini --------------------------------------------------------------------------------