├── .coveragerc ├── .flake8 ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-label.yaml ├── blunderbuss.yml ├── header-checker-lint.yml ├── snippet-bot.yml └── workflows │ ├── docs.yml │ └── unittest.yml ├── .gitignore ├── .kokoro ├── build.sh ├── continuous │ ├── common.cfg │ ├── continuous.cfg │ ├── prerelease-deps-3.13.cfg │ └── unit-tests-misc.cfg ├── populate-secrets.sh ├── presubmit │ ├── common.cfg │ ├── linting-typing.cfg │ ├── prerelease-deps.cfg │ ├── snippets-3.13.cfg │ ├── snippets-3.9.cfg │ ├── system-3.13.cfg │ └── system-3.9.cfg ├── samples │ ├── lint │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.10 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.11 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.12 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.13 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.14 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ └── python3.9 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg ├── test-samples-against-head.sh ├── test-samples-impl.sh ├── test-samples.sh ├── trampoline.sh └── trampoline_v2.sh ├── .librarian └── state.yaml ├── .pre-commit-config.yaml ├── .repo-metadata.json ├── .trampolinerc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── SECURITY.md ├── TROUBLESHOOTING.md ├── UPGRADING.md ├── benchmark ├── README.md ├── benchmark.py └── queries.json ├── docs ├── .gitignore ├── README.rst ├── UPGRADING.md ├── _static │ └── custom.css ├── _templates │ └── layout.html ├── bigquery │ ├── legacy_proto_types.rst │ └── standard_sql.rst ├── changelog.md ├── conf.py ├── dbapi.rst ├── design │ ├── index.rst │ └── query-retries.md ├── enums.rst ├── format_options.rst ├── generated │ └── google.cloud.bigquery.magics.html ├── index.rst ├── job_base.rst ├── magics.rst ├── query.rst ├── reference.rst ├── samples ├── snippets.py ├── summary_overview.md ├── usage.html └── usage │ ├── client.rst │ ├── datasets.rst │ ├── encryption.rst │ ├── index.rst │ ├── jobs.rst │ ├── pandas.rst │ ├── queries.rst │ └── tables.rst ├── google └── cloud │ ├── bigquery │ ├── __init__.py │ ├── _helpers.py │ ├── _http.py │ ├── _job_helpers.py │ ├── _pandas_helpers.py │ ├── _pyarrow_helpers.py │ ├── _tqdm_helpers.py │ ├── _versions_helpers.py │ ├── client.py │ ├── dataset.py │ ├── dbapi │ │ ├── __init__.py │ │ ├── _helpers.py │ │ ├── connection.py │ │ ├── cursor.py │ │ ├── exceptions.py │ │ └── types.py │ ├── encryption_configuration.py │ ├── enums.py │ ├── exceptions.py │ ├── external_config.py │ ├── format_options.py │ ├── iam.py │ ├── job │ │ ├── __init__.py │ │ ├── base.py │ │ ├── copy_.py │ │ ├── extract.py │ │ ├── load.py │ │ └── query.py │ ├── magics │ │ ├── __init__.py │ │ ├── line_arg_parser │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ ├── lexer.py │ │ │ ├── parser.py │ │ │ └── visitors.py │ │ └── magics.py │ ├── model.py │ ├── opentelemetry_tracing.py │ ├── py.typed │ ├── query.py │ ├── retry.py │ ├── routine │ │ ├── __init__.py │ │ └── routine.py │ ├── schema.py │ ├── standard_sql.py │ ├── table.py │ └── version.py │ └── bigquery_v2 │ ├── __init__.py │ └── types │ ├── __init__.py │ ├── encryption_config.py │ ├── model.py │ ├── model_reference.py │ ├── standard_sql.py │ └── table_reference.py ├── mypy.ini ├── noxfile.py ├── pylint.config.py ├── pyproject.toml ├── renovate.json ├── samples ├── AUTHORING_GUIDE.md ├── CONTRIBUTING.md ├── __init__.py ├── add_empty_column.py ├── browse_table_data.py ├── client_list_jobs.py ├── client_load_partitioned_table.py ├── client_query_add_column.py ├── client_query_batch.py ├── client_query_destination_table.py ├── client_query_destination_table_clustered.py ├── client_query_destination_table_cmek.py ├── client_query_destination_table_legacy.py ├── client_query_dry_run.py ├── client_query_job_optional.py ├── client_query_legacy_sql.py ├── client_query_relax_column.py ├── client_query_w_array_params.py ├── client_query_w_named_params.py ├── client_query_w_positional_params.py ├── client_query_w_struct_params.py ├── client_query_w_timestamp_params.py ├── copy_table.py ├── copy_table_cmek.py ├── copy_table_multiple_source.py ├── create_dataset.py ├── create_job.py ├── create_routine.py ├── create_routine_ddl.py ├── create_table.py ├── create_table_clustered.py ├── create_table_range_partitioned.py ├── dataset_exists.py ├── delete_dataset.py ├── delete_dataset_labels.py ├── delete_model.py ├── delete_routine.py ├── delete_table.py ├── desktopapp │ ├── __init__.py │ ├── conftest.py │ ├── mypy.ini │ ├── noxfile.py │ ├── noxfile_config.py │ ├── requirements-test.txt │ ├── requirements.txt │ ├── user_credentials.py │ └── user_credentials_test.py ├── download_public_data.py ├── download_public_data_sandbox.py ├── geography │ ├── __init__.py │ ├── conftest.py │ ├── insert_geojson.py │ ├── insert_geojson_test.py │ ├── insert_wkt.py │ ├── insert_wkt_test.py │ ├── mypy.ini │ ├── noxfile.py │ ├── noxfile_config.py │ ├── requirements-test.txt │ ├── requirements.txt │ ├── to_geodataframe.py │ └── to_geodataframe_test.py ├── get_dataset.py ├── get_dataset_labels.py ├── get_model.py ├── get_routine.py ├── get_table.py ├── label_dataset.py ├── list_datasets.py ├── list_datasets_by_label.py ├── list_models.py ├── list_routines.py ├── list_tables.py ├── load_table_clustered.py ├── load_table_dataframe.py ├── load_table_file.py ├── load_table_uri_autodetect_csv.py ├── load_table_uri_autodetect_json.py ├── load_table_uri_avro.py ├── load_table_uri_cmek.py ├── load_table_uri_csv.py ├── load_table_uri_json.py ├── load_table_uri_orc.py ├── load_table_uri_parquet.py ├── load_table_uri_truncate_avro.py ├── load_table_uri_truncate_csv.py ├── load_table_uri_truncate_json.py ├── load_table_uri_truncate_orc.py ├── load_table_uri_truncate_parquet.py ├── magics │ ├── __init__.py │ ├── _helpers.py │ ├── conftest.py │ ├── mypy.ini │ ├── noxfile.py │ ├── noxfile_config.py │ ├── query.py │ ├── query_params_scalars.py │ ├── query_params_scalars_test.py │ ├── query_test.py │ ├── requirements-test.txt │ └── requirements.txt ├── mypy.ini ├── notebooks │ ├── __init__.py │ ├── conftest.py │ ├── jupyter_tutorial_test.py │ ├── mypy.ini │ ├── noxfile.py │ ├── noxfile_config.py │ ├── requirements-test.txt │ └── requirements.txt ├── query_external_gcs_temporary_table.py ├── query_external_sheets_permanent_table.py ├── query_external_sheets_temporary_table.py ├── query_no_cache.py ├── query_pagination.py ├── query_script.py ├── query_to_arrow.py ├── snippets │ ├── .gitignore │ ├── README.rst │ ├── README.rst.in │ ├── authenticate_service_account.py │ ├── authenticate_service_account_test.py │ ├── authorized_view_tutorial.py │ ├── authorized_view_tutorial_test.py │ ├── client_query.py │ ├── client_query_test.py │ ├── conftest.py │ ├── create_iam_policy_test.py │ ├── create_partitioned_table.py │ ├── create_partitioned_table_test.py │ ├── create_table_cmek.py │ ├── create_table_cmek_test.py │ ├── create_table_external_data_configuration.py │ ├── create_table_external_data_configuration_test.py │ ├── create_table_external_hive_partitioned.py │ ├── create_table_external_hive_partitioned_test.py │ ├── create_table_schema_from_json.py │ ├── create_table_schema_from_json_test.py │ ├── create_table_snapshot.py │ ├── create_table_snapshot_test.py │ ├── dataset_access_test.py │ ├── delete_job.py │ ├── delete_job_test.py │ ├── delete_label_table.py │ ├── delete_label_table_test.py │ ├── get_table_labels.py │ ├── get_table_labels_test.py │ ├── get_table_make_schema.py │ ├── get_table_make_schema_test.py │ ├── label_job.py │ ├── label_job_test.py │ ├── label_table.py │ ├── label_table_test.py │ ├── load_table_schema_from_json.py │ ├── load_table_schema_from_json_test.py │ ├── load_table_uri_firestore.py │ ├── load_table_uri_firestore_test.py │ ├── manage_job_cancel.py │ ├── manage_job_get.py │ ├── manage_job_test.py │ ├── materialized_view.py │ ├── materialized_view_test.py │ ├── mypy.ini │ ├── natality_tutorial.py │ ├── natality_tutorial_test.py │ ├── nested_repeated_schema.py │ ├── nested_repeated_schema_test.py │ ├── noxfile.py │ ├── noxfile_config.py │ ├── quickstart.py │ ├── quickstart_test.py │ ├── relax_column.py │ ├── relax_column_test.py │ ├── requirements-test.txt │ ├── requirements.txt │ ├── revoke_dataset_access.py │ ├── schema.json │ ├── schema_us_states.json │ ├── simple_app.py │ ├── simple_app_test.py │ ├── test_update_with_dml.py │ ├── update_dataset_access.py │ ├── update_table_expiration.py │ ├── update_table_expiration_test.py │ ├── update_with_dml.py │ ├── user_sessions_data.json │ ├── view.py │ └── view_test.py ├── table_exists.py ├── table_insert_rows.py ├── table_insert_rows_explicit_none_insert_ids.py ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── test_add_empty_column.py │ ├── test_browse_table_data.py │ ├── test_client_list_jobs.py │ ├── test_client_load_partitioned_table.py │ ├── test_client_query_add_column.py │ ├── test_client_query_batch.py │ ├── test_client_query_destination_table.py │ ├── test_client_query_destination_table_clustered.py │ ├── test_client_query_destination_table_cmek.py │ ├── test_client_query_destination_table_legacy.py │ ├── test_client_query_dry_run.py │ ├── test_client_query_job_optional.py │ ├── test_client_query_legacy_sql.py │ ├── test_client_query_relax_column.py │ ├── test_client_query_w_array_params.py │ ├── test_client_query_w_named_params.py │ ├── test_client_query_w_positional_params.py │ ├── test_client_query_w_struct_params.py │ ├── test_client_query_w_timestamp_params.py │ ├── test_copy_table.py │ ├── test_copy_table_cmek.py │ ├── test_copy_table_multiple_source.py │ ├── test_create_dataset.py │ ├── test_create_job.py │ ├── test_create_table.py │ ├── test_create_table_clustered.py │ ├── test_create_table_range_partitioned.py │ ├── test_dataset_exists.py │ ├── test_dataset_label_samples.py │ ├── test_delete_dataset.py │ ├── test_delete_table.py │ ├── test_download_public_data.py │ ├── test_download_public_data_sandbox.py │ ├── test_get_dataset.py │ ├── test_get_table.py │ ├── test_list_datasets.py │ ├── test_list_datasets_by_label.py │ ├── test_list_tables.py │ ├── test_load_table_clustered.py │ ├── test_load_table_dataframe.py │ ├── test_load_table_file.py │ ├── test_load_table_uri_autodetect_csv.py │ ├── test_load_table_uri_autodetect_json.py │ ├── test_load_table_uri_avro.py │ ├── test_load_table_uri_cmek.py │ ├── test_load_table_uri_csv.py │ ├── test_load_table_uri_json.py │ ├── test_load_table_uri_orc.py │ ├── test_load_table_uri_parquet.py │ ├── test_load_table_uri_truncate_avro.py │ ├── test_load_table_uri_truncate_csv.py │ ├── test_load_table_uri_truncate_json.py │ ├── test_load_table_uri_truncate_orc.py │ ├── test_load_table_uri_truncate_parquet.py │ ├── test_model_samples.py │ ├── test_query_external_gcs_temporary_table.py │ ├── test_query_external_sheets_permanent_table.py │ ├── test_query_external_sheets_temporary_table.py │ ├── test_query_no_cache.py │ ├── test_query_pagination.py │ ├── test_query_script.py │ ├── test_query_to_arrow.py │ ├── test_routine_samples.py │ ├── test_table_exists.py │ ├── test_table_insert_rows.py │ ├── test_table_insert_rows_explicit_none_insert_ids.py │ ├── test_undelete_table.py │ ├── test_update_dataset_access.py │ ├── test_update_dataset_default_partition_expiration.py │ ├── test_update_dataset_default_table_expiration.py │ ├── test_update_dataset_description.py │ └── test_update_table_require_partition_filter.py ├── undelete_table.py ├── update_dataset_access.py ├── update_dataset_default_partition_expiration.py ├── update_dataset_default_table_expiration.py ├── update_dataset_description.py ├── update_model.py ├── update_routine.py └── update_table_require_partition_filter.py ├── scripts ├── decrypt-secrets.sh └── readme-gen │ ├── readme_gen.py │ └── templates │ ├── README.tmpl.rst │ ├── auth.tmpl.rst │ ├── auth_api_key.tmpl.rst │ ├── install_deps.tmpl.rst │ └── install_portaudio.tmpl.rst ├── setup.cfg ├── setup.py ├── testing ├── .gitignore ├── constraints-3.10.txt ├── constraints-3.11.txt ├── constraints-3.12.txt ├── constraints-3.13.txt ├── constraints-3.14.txt └── constraints-3.9.txt └── tests ├── __init__.py ├── data ├── characters.json ├── characters.jsonl ├── colors.avro ├── numeric_38_12.parquet ├── people.csv ├── scalars.csv ├── scalars.jsonl ├── scalars_extreme.jsonl ├── scalars_schema.json ├── scalars_schema_csv.json └── schema.json ├── scrub_datasets.py ├── system ├── __init__.py ├── conftest.py ├── helpers.py ├── test_arrow.py ├── test_client.py ├── test_job_retry.py ├── test_list_rows.py ├── test_magics.py ├── test_pandas.py ├── test_query.py └── test_structs.py └── unit ├── __init__.py ├── _helpers ├── __init__.py ├── test_cell_data_parser.py ├── test_data_frame_cell_data_parser.py └── test_scalar_query_param_parser.py ├── conftest.py ├── helpers.py ├── job ├── __init__.py ├── helpers.py ├── test_async_job_retry.py ├── test_base.py ├── test_copy.py ├── test_extract.py ├── test_load.py ├── test_load_config.py ├── test_query.py ├── test_query_config.py ├── test_query_job_retry.py ├── test_query_pandas.py └── test_query_stats.py ├── line_arg_parser ├── __init__.py ├── test_lexer.py ├── test_parser.py └── test_visitors.py ├── model ├── __init__.py ├── test_model.py └── test_model_reference.py ├── routine ├── __init__.py ├── test_external_runtime_options.py ├── test_remote_function_options.py ├── test_routine.py ├── test_routine_argument.py └── test_routine_reference.py ├── test__helpers.py ├── test__http.py ├── test__job_helpers.py ├── test__job_helpers_retry.py ├── test__pandas_helpers.py ├── test__pyarrow_helpers.py ├── test__versions_helpers.py ├── test_client.py ├── test_client_bigframes.py ├── test_client_resumable_media_upload.py ├── test_client_retry.py ├── test_create_dataset.py ├── test_dataset.py ├── test_dbapi__helpers.py ├── test_dbapi_connection.py ├── test_dbapi_cursor.py ├── test_dbapi_types.py ├── test_delete_dataset.py ├── test_encryption_configuration.py ├── test_external_config.py ├── test_format_options.py ├── test_job_retry.py ├── test_legacy_types.py ├── test_list_datasets.py ├── test_list_jobs.py ├── test_list_models.py ├── test_list_projects.py ├── test_list_routines.py ├── test_list_tables.py ├── test_magics.py ├── test_opentelemetry_tracing.py ├── test_packaging.py ├── test_query.py ├── test_retry.py ├── test_schema.py ├── test_signature_compatibility.py ├── test_standard_sql_types.py ├── test_table.py ├── test_table_arrow.py └── test_table_pandas.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.github/auto-label.yaml -------------------------------------------------------------------------------- /.github/blunderbuss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.github/blunderbuss.yml -------------------------------------------------------------------------------- /.github/header-checker-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.github/header-checker-lint.yml -------------------------------------------------------------------------------- /.github/snippet-bot.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/unittest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.github/workflows/unittest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/build.sh -------------------------------------------------------------------------------- /.kokoro/continuous/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/continuous/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/continuous/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/prerelease-deps-3.13.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/continuous/prerelease-deps-3.13.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/unit-tests-misc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/continuous/unit-tests-misc.cfg -------------------------------------------------------------------------------- /.kokoro/populate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/populate-secrets.sh -------------------------------------------------------------------------------- /.kokoro/presubmit/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/presubmit/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/linting-typing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/presubmit/linting-typing.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/prerelease-deps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/presubmit/prerelease-deps.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/snippets-3.13.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/presubmit/snippets-3.13.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/snippets-3.9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/presubmit/snippets-3.9.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/system-3.13.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/presubmit/system-3.13.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/system-3.9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/presubmit/system-3.9.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/lint/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/lint/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/lint/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/lint/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.10/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.10/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.10/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.10/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.10/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.11/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.11/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.11/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.11/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.11/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.12/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.12/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.12/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.12/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.12/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.13/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.13/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.13/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.13/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.13/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.14/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.14/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.14/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.14/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.14/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.9/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.9/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.9/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.9/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/samples/python3.9/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/test-samples-against-head.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/test-samples-against-head.sh -------------------------------------------------------------------------------- /.kokoro/test-samples-impl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/test-samples-impl.sh -------------------------------------------------------------------------------- /.kokoro/test-samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/test-samples.sh -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /.kokoro/trampoline_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.kokoro/trampoline_v2.sh -------------------------------------------------------------------------------- /.librarian/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.librarian/state.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /.trampolinerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/.trampolinerc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /benchmark/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/benchmark/benchmark.py -------------------------------------------------------------------------------- /benchmark/queries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/benchmark/queries.json -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | generated/ -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- 1 | ../README.rst -------------------------------------------------------------------------------- /docs/UPGRADING.md: -------------------------------------------------------------------------------- 1 | ../UPGRADING.md -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/bigquery/legacy_proto_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/bigquery/legacy_proto_types.rst -------------------------------------------------------------------------------- /docs/bigquery/standard_sql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/bigquery/standard_sql.rst -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | ../CHANGELOG.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/dbapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/dbapi.rst -------------------------------------------------------------------------------- /docs/design/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/design/index.rst -------------------------------------------------------------------------------- /docs/design/query-retries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/design/query-retries.md -------------------------------------------------------------------------------- /docs/enums.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/enums.rst -------------------------------------------------------------------------------- /docs/format_options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/format_options.rst -------------------------------------------------------------------------------- /docs/generated/google.cloud.bigquery.magics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/generated/google.cloud.bigquery.magics.html -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/job_base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/job_base.rst -------------------------------------------------------------------------------- /docs/magics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/magics.rst -------------------------------------------------------------------------------- /docs/query.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/query.rst -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /docs/samples: -------------------------------------------------------------------------------- 1 | ../samples/ -------------------------------------------------------------------------------- /docs/snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/snippets.py -------------------------------------------------------------------------------- /docs/summary_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/summary_overview.md -------------------------------------------------------------------------------- /docs/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/usage.html -------------------------------------------------------------------------------- /docs/usage/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/usage/client.rst -------------------------------------------------------------------------------- /docs/usage/datasets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/usage/datasets.rst -------------------------------------------------------------------------------- /docs/usage/encryption.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/usage/encryption.rst -------------------------------------------------------------------------------- /docs/usage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/usage/index.rst -------------------------------------------------------------------------------- /docs/usage/jobs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/usage/jobs.rst -------------------------------------------------------------------------------- /docs/usage/pandas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/usage/pandas.rst -------------------------------------------------------------------------------- /docs/usage/queries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/usage/queries.rst -------------------------------------------------------------------------------- /docs/usage/tables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/docs/usage/tables.rst -------------------------------------------------------------------------------- /google/cloud/bigquery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigquery/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/_helpers.py -------------------------------------------------------------------------------- /google/cloud/bigquery/_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/_http.py -------------------------------------------------------------------------------- /google/cloud/bigquery/_job_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/_job_helpers.py -------------------------------------------------------------------------------- /google/cloud/bigquery/_pandas_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/_pandas_helpers.py -------------------------------------------------------------------------------- /google/cloud/bigquery/_pyarrow_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/_pyarrow_helpers.py -------------------------------------------------------------------------------- /google/cloud/bigquery/_tqdm_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/_tqdm_helpers.py -------------------------------------------------------------------------------- /google/cloud/bigquery/_versions_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/_versions_helpers.py -------------------------------------------------------------------------------- /google/cloud/bigquery/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/client.py -------------------------------------------------------------------------------- /google/cloud/bigquery/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/dataset.py -------------------------------------------------------------------------------- /google/cloud/bigquery/dbapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/dbapi/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigquery/dbapi/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/dbapi/_helpers.py -------------------------------------------------------------------------------- /google/cloud/bigquery/dbapi/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/dbapi/connection.py -------------------------------------------------------------------------------- /google/cloud/bigquery/dbapi/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/dbapi/cursor.py -------------------------------------------------------------------------------- /google/cloud/bigquery/dbapi/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/dbapi/exceptions.py -------------------------------------------------------------------------------- /google/cloud/bigquery/dbapi/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/dbapi/types.py -------------------------------------------------------------------------------- /google/cloud/bigquery/encryption_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/encryption_configuration.py -------------------------------------------------------------------------------- /google/cloud/bigquery/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/enums.py -------------------------------------------------------------------------------- /google/cloud/bigquery/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/exceptions.py -------------------------------------------------------------------------------- /google/cloud/bigquery/external_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/external_config.py -------------------------------------------------------------------------------- /google/cloud/bigquery/format_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/format_options.py -------------------------------------------------------------------------------- /google/cloud/bigquery/iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/iam.py -------------------------------------------------------------------------------- /google/cloud/bigquery/job/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/job/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigquery/job/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/job/base.py -------------------------------------------------------------------------------- /google/cloud/bigquery/job/copy_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/job/copy_.py -------------------------------------------------------------------------------- /google/cloud/bigquery/job/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/job/extract.py -------------------------------------------------------------------------------- /google/cloud/bigquery/job/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/job/load.py -------------------------------------------------------------------------------- /google/cloud/bigquery/job/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/job/query.py -------------------------------------------------------------------------------- /google/cloud/bigquery/magics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/magics/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigquery/magics/line_arg_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/magics/line_arg_parser/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigquery/magics/line_arg_parser/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/magics/line_arg_parser/exceptions.py -------------------------------------------------------------------------------- /google/cloud/bigquery/magics/line_arg_parser/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/magics/line_arg_parser/lexer.py -------------------------------------------------------------------------------- /google/cloud/bigquery/magics/line_arg_parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/magics/line_arg_parser/parser.py -------------------------------------------------------------------------------- /google/cloud/bigquery/magics/line_arg_parser/visitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/magics/line_arg_parser/visitors.py -------------------------------------------------------------------------------- /google/cloud/bigquery/magics/magics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/magics/magics.py -------------------------------------------------------------------------------- /google/cloud/bigquery/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/model.py -------------------------------------------------------------------------------- /google/cloud/bigquery/opentelemetry_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/opentelemetry_tracing.py -------------------------------------------------------------------------------- /google/cloud/bigquery/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/py.typed -------------------------------------------------------------------------------- /google/cloud/bigquery/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/query.py -------------------------------------------------------------------------------- /google/cloud/bigquery/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/retry.py -------------------------------------------------------------------------------- /google/cloud/bigquery/routine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/routine/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigquery/routine/routine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/routine/routine.py -------------------------------------------------------------------------------- /google/cloud/bigquery/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/schema.py -------------------------------------------------------------------------------- /google/cloud/bigquery/standard_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/standard_sql.py -------------------------------------------------------------------------------- /google/cloud/bigquery/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/table.py -------------------------------------------------------------------------------- /google/cloud/bigquery/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery/version.py -------------------------------------------------------------------------------- /google/cloud/bigquery_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery_v2/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigquery_v2/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery_v2/types/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigquery_v2/types/encryption_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery_v2/types/encryption_config.py -------------------------------------------------------------------------------- /google/cloud/bigquery_v2/types/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery_v2/types/model.py -------------------------------------------------------------------------------- /google/cloud/bigquery_v2/types/model_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery_v2/types/model_reference.py -------------------------------------------------------------------------------- /google/cloud/bigquery_v2/types/standard_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery_v2/types/standard_sql.py -------------------------------------------------------------------------------- /google/cloud/bigquery_v2/types/table_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/google/cloud/bigquery_v2/types/table_reference.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/mypy.ini -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/noxfile.py -------------------------------------------------------------------------------- /pylint.config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/pylint.config.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/renovate.json -------------------------------------------------------------------------------- /samples/AUTHORING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/AUTHORING_GUIDE.md -------------------------------------------------------------------------------- /samples/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/CONTRIBUTING.md -------------------------------------------------------------------------------- /samples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/add_empty_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/add_empty_column.py -------------------------------------------------------------------------------- /samples/browse_table_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/browse_table_data.py -------------------------------------------------------------------------------- /samples/client_list_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_list_jobs.py -------------------------------------------------------------------------------- /samples/client_load_partitioned_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_load_partitioned_table.py -------------------------------------------------------------------------------- /samples/client_query_add_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_add_column.py -------------------------------------------------------------------------------- /samples/client_query_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_batch.py -------------------------------------------------------------------------------- /samples/client_query_destination_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_destination_table.py -------------------------------------------------------------------------------- /samples/client_query_destination_table_clustered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_destination_table_clustered.py -------------------------------------------------------------------------------- /samples/client_query_destination_table_cmek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_destination_table_cmek.py -------------------------------------------------------------------------------- /samples/client_query_destination_table_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_destination_table_legacy.py -------------------------------------------------------------------------------- /samples/client_query_dry_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_dry_run.py -------------------------------------------------------------------------------- /samples/client_query_job_optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_job_optional.py -------------------------------------------------------------------------------- /samples/client_query_legacy_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_legacy_sql.py -------------------------------------------------------------------------------- /samples/client_query_relax_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_relax_column.py -------------------------------------------------------------------------------- /samples/client_query_w_array_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_w_array_params.py -------------------------------------------------------------------------------- /samples/client_query_w_named_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_w_named_params.py -------------------------------------------------------------------------------- /samples/client_query_w_positional_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_w_positional_params.py -------------------------------------------------------------------------------- /samples/client_query_w_struct_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_w_struct_params.py -------------------------------------------------------------------------------- /samples/client_query_w_timestamp_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/client_query_w_timestamp_params.py -------------------------------------------------------------------------------- /samples/copy_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/copy_table.py -------------------------------------------------------------------------------- /samples/copy_table_cmek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/copy_table_cmek.py -------------------------------------------------------------------------------- /samples/copy_table_multiple_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/copy_table_multiple_source.py -------------------------------------------------------------------------------- /samples/create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/create_dataset.py -------------------------------------------------------------------------------- /samples/create_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/create_job.py -------------------------------------------------------------------------------- /samples/create_routine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/create_routine.py -------------------------------------------------------------------------------- /samples/create_routine_ddl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/create_routine_ddl.py -------------------------------------------------------------------------------- /samples/create_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/create_table.py -------------------------------------------------------------------------------- /samples/create_table_clustered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/create_table_clustered.py -------------------------------------------------------------------------------- /samples/create_table_range_partitioned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/create_table_range_partitioned.py -------------------------------------------------------------------------------- /samples/dataset_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/dataset_exists.py -------------------------------------------------------------------------------- /samples/delete_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/delete_dataset.py -------------------------------------------------------------------------------- /samples/delete_dataset_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/delete_dataset_labels.py -------------------------------------------------------------------------------- /samples/delete_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/delete_model.py -------------------------------------------------------------------------------- /samples/delete_routine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/delete_routine.py -------------------------------------------------------------------------------- /samples/delete_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/delete_table.py -------------------------------------------------------------------------------- /samples/desktopapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/desktopapp/__init__.py -------------------------------------------------------------------------------- /samples/desktopapp/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/desktopapp/conftest.py -------------------------------------------------------------------------------- /samples/desktopapp/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/desktopapp/mypy.ini -------------------------------------------------------------------------------- /samples/desktopapp/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/desktopapp/noxfile.py -------------------------------------------------------------------------------- /samples/desktopapp/noxfile_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/desktopapp/noxfile_config.py -------------------------------------------------------------------------------- /samples/desktopapp/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/desktopapp/requirements-test.txt -------------------------------------------------------------------------------- /samples/desktopapp/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/desktopapp/requirements.txt -------------------------------------------------------------------------------- /samples/desktopapp/user_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/desktopapp/user_credentials.py -------------------------------------------------------------------------------- /samples/desktopapp/user_credentials_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/desktopapp/user_credentials_test.py -------------------------------------------------------------------------------- /samples/download_public_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/download_public_data.py -------------------------------------------------------------------------------- /samples/download_public_data_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/download_public_data_sandbox.py -------------------------------------------------------------------------------- /samples/geography/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/__init__.py -------------------------------------------------------------------------------- /samples/geography/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/conftest.py -------------------------------------------------------------------------------- /samples/geography/insert_geojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/insert_geojson.py -------------------------------------------------------------------------------- /samples/geography/insert_geojson_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/insert_geojson_test.py -------------------------------------------------------------------------------- /samples/geography/insert_wkt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/insert_wkt.py -------------------------------------------------------------------------------- /samples/geography/insert_wkt_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/insert_wkt_test.py -------------------------------------------------------------------------------- /samples/geography/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/mypy.ini -------------------------------------------------------------------------------- /samples/geography/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/noxfile.py -------------------------------------------------------------------------------- /samples/geography/noxfile_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/noxfile_config.py -------------------------------------------------------------------------------- /samples/geography/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/requirements-test.txt -------------------------------------------------------------------------------- /samples/geography/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/requirements.txt -------------------------------------------------------------------------------- /samples/geography/to_geodataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/to_geodataframe.py -------------------------------------------------------------------------------- /samples/geography/to_geodataframe_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/geography/to_geodataframe_test.py -------------------------------------------------------------------------------- /samples/get_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/get_dataset.py -------------------------------------------------------------------------------- /samples/get_dataset_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/get_dataset_labels.py -------------------------------------------------------------------------------- /samples/get_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/get_model.py -------------------------------------------------------------------------------- /samples/get_routine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/get_routine.py -------------------------------------------------------------------------------- /samples/get_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/get_table.py -------------------------------------------------------------------------------- /samples/label_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/label_dataset.py -------------------------------------------------------------------------------- /samples/list_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/list_datasets.py -------------------------------------------------------------------------------- /samples/list_datasets_by_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/list_datasets_by_label.py -------------------------------------------------------------------------------- /samples/list_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/list_models.py -------------------------------------------------------------------------------- /samples/list_routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/list_routines.py -------------------------------------------------------------------------------- /samples/list_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/list_tables.py -------------------------------------------------------------------------------- /samples/load_table_clustered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_clustered.py -------------------------------------------------------------------------------- /samples/load_table_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_dataframe.py -------------------------------------------------------------------------------- /samples/load_table_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_file.py -------------------------------------------------------------------------------- /samples/load_table_uri_autodetect_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_autodetect_csv.py -------------------------------------------------------------------------------- /samples/load_table_uri_autodetect_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_autodetect_json.py -------------------------------------------------------------------------------- /samples/load_table_uri_avro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_avro.py -------------------------------------------------------------------------------- /samples/load_table_uri_cmek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_cmek.py -------------------------------------------------------------------------------- /samples/load_table_uri_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_csv.py -------------------------------------------------------------------------------- /samples/load_table_uri_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_json.py -------------------------------------------------------------------------------- /samples/load_table_uri_orc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_orc.py -------------------------------------------------------------------------------- /samples/load_table_uri_parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_parquet.py -------------------------------------------------------------------------------- /samples/load_table_uri_truncate_avro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_truncate_avro.py -------------------------------------------------------------------------------- /samples/load_table_uri_truncate_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_truncate_csv.py -------------------------------------------------------------------------------- /samples/load_table_uri_truncate_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_truncate_json.py -------------------------------------------------------------------------------- /samples/load_table_uri_truncate_orc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_truncate_orc.py -------------------------------------------------------------------------------- /samples/load_table_uri_truncate_parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/load_table_uri_truncate_parquet.py -------------------------------------------------------------------------------- /samples/magics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/magics/__init__.py -------------------------------------------------------------------------------- /samples/magics/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/magics/_helpers.py -------------------------------------------------------------------------------- /samples/magics/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/magics/conftest.py -------------------------------------------------------------------------------- /samples/magics/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/magics/mypy.ini -------------------------------------------------------------------------------- /samples/magics/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/magics/noxfile.py -------------------------------------------------------------------------------- /samples/magics/noxfile_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/magics/noxfile_config.py -------------------------------------------------------------------------------- /samples/magics/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/magics/query.py -------------------------------------------------------------------------------- /samples/magics/query_params_scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/magics/query_params_scalars.py -------------------------------------------------------------------------------- /samples/magics/query_params_scalars_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/magics/query_params_scalars_test.py -------------------------------------------------------------------------------- /samples/magics/query_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/magics/query_test.py -------------------------------------------------------------------------------- /samples/magics/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/magics/requirements-test.txt -------------------------------------------------------------------------------- /samples/magics/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/magics/requirements.txt -------------------------------------------------------------------------------- /samples/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/mypy.ini -------------------------------------------------------------------------------- /samples/notebooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/notebooks/__init__.py -------------------------------------------------------------------------------- /samples/notebooks/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/notebooks/conftest.py -------------------------------------------------------------------------------- /samples/notebooks/jupyter_tutorial_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/notebooks/jupyter_tutorial_test.py -------------------------------------------------------------------------------- /samples/notebooks/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/notebooks/mypy.ini -------------------------------------------------------------------------------- /samples/notebooks/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/notebooks/noxfile.py -------------------------------------------------------------------------------- /samples/notebooks/noxfile_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/notebooks/noxfile_config.py -------------------------------------------------------------------------------- /samples/notebooks/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/notebooks/requirements-test.txt -------------------------------------------------------------------------------- /samples/notebooks/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/notebooks/requirements.txt -------------------------------------------------------------------------------- /samples/query_external_gcs_temporary_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/query_external_gcs_temporary_table.py -------------------------------------------------------------------------------- /samples/query_external_sheets_permanent_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/query_external_sheets_permanent_table.py -------------------------------------------------------------------------------- /samples/query_external_sheets_temporary_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/query_external_sheets_temporary_table.py -------------------------------------------------------------------------------- /samples/query_no_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/query_no_cache.py -------------------------------------------------------------------------------- /samples/query_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/query_pagination.py -------------------------------------------------------------------------------- /samples/query_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/query_script.py -------------------------------------------------------------------------------- /samples/query_to_arrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/query_to_arrow.py -------------------------------------------------------------------------------- /samples/snippets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/.gitignore -------------------------------------------------------------------------------- /samples/snippets/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/README.rst -------------------------------------------------------------------------------- /samples/snippets/README.rst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/README.rst.in -------------------------------------------------------------------------------- /samples/snippets/authenticate_service_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/authenticate_service_account.py -------------------------------------------------------------------------------- /samples/snippets/authenticate_service_account_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/authenticate_service_account_test.py -------------------------------------------------------------------------------- /samples/snippets/authorized_view_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/authorized_view_tutorial.py -------------------------------------------------------------------------------- /samples/snippets/authorized_view_tutorial_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/authorized_view_tutorial_test.py -------------------------------------------------------------------------------- /samples/snippets/client_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/client_query.py -------------------------------------------------------------------------------- /samples/snippets/client_query_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/client_query_test.py -------------------------------------------------------------------------------- /samples/snippets/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/conftest.py -------------------------------------------------------------------------------- /samples/snippets/create_iam_policy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_iam_policy_test.py -------------------------------------------------------------------------------- /samples/snippets/create_partitioned_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_partitioned_table.py -------------------------------------------------------------------------------- /samples/snippets/create_partitioned_table_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_partitioned_table_test.py -------------------------------------------------------------------------------- /samples/snippets/create_table_cmek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_table_cmek.py -------------------------------------------------------------------------------- /samples/snippets/create_table_cmek_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_table_cmek_test.py -------------------------------------------------------------------------------- /samples/snippets/create_table_external_data_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_table_external_data_configuration.py -------------------------------------------------------------------------------- /samples/snippets/create_table_external_data_configuration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_table_external_data_configuration_test.py -------------------------------------------------------------------------------- /samples/snippets/create_table_external_hive_partitioned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_table_external_hive_partitioned.py -------------------------------------------------------------------------------- /samples/snippets/create_table_external_hive_partitioned_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_table_external_hive_partitioned_test.py -------------------------------------------------------------------------------- /samples/snippets/create_table_schema_from_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_table_schema_from_json.py -------------------------------------------------------------------------------- /samples/snippets/create_table_schema_from_json_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_table_schema_from_json_test.py -------------------------------------------------------------------------------- /samples/snippets/create_table_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_table_snapshot.py -------------------------------------------------------------------------------- /samples/snippets/create_table_snapshot_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/create_table_snapshot_test.py -------------------------------------------------------------------------------- /samples/snippets/dataset_access_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/dataset_access_test.py -------------------------------------------------------------------------------- /samples/snippets/delete_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/delete_job.py -------------------------------------------------------------------------------- /samples/snippets/delete_job_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/delete_job_test.py -------------------------------------------------------------------------------- /samples/snippets/delete_label_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/delete_label_table.py -------------------------------------------------------------------------------- /samples/snippets/delete_label_table_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/delete_label_table_test.py -------------------------------------------------------------------------------- /samples/snippets/get_table_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/get_table_labels.py -------------------------------------------------------------------------------- /samples/snippets/get_table_labels_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/get_table_labels_test.py -------------------------------------------------------------------------------- /samples/snippets/get_table_make_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/get_table_make_schema.py -------------------------------------------------------------------------------- /samples/snippets/get_table_make_schema_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/get_table_make_schema_test.py -------------------------------------------------------------------------------- /samples/snippets/label_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/label_job.py -------------------------------------------------------------------------------- /samples/snippets/label_job_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/label_job_test.py -------------------------------------------------------------------------------- /samples/snippets/label_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/label_table.py -------------------------------------------------------------------------------- /samples/snippets/label_table_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/label_table_test.py -------------------------------------------------------------------------------- /samples/snippets/load_table_schema_from_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/load_table_schema_from_json.py -------------------------------------------------------------------------------- /samples/snippets/load_table_schema_from_json_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/load_table_schema_from_json_test.py -------------------------------------------------------------------------------- /samples/snippets/load_table_uri_firestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/load_table_uri_firestore.py -------------------------------------------------------------------------------- /samples/snippets/load_table_uri_firestore_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/load_table_uri_firestore_test.py -------------------------------------------------------------------------------- /samples/snippets/manage_job_cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/manage_job_cancel.py -------------------------------------------------------------------------------- /samples/snippets/manage_job_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/manage_job_get.py -------------------------------------------------------------------------------- /samples/snippets/manage_job_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/manage_job_test.py -------------------------------------------------------------------------------- /samples/snippets/materialized_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/materialized_view.py -------------------------------------------------------------------------------- /samples/snippets/materialized_view_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/materialized_view_test.py -------------------------------------------------------------------------------- /samples/snippets/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/mypy.ini -------------------------------------------------------------------------------- /samples/snippets/natality_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/natality_tutorial.py -------------------------------------------------------------------------------- /samples/snippets/natality_tutorial_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/natality_tutorial_test.py -------------------------------------------------------------------------------- /samples/snippets/nested_repeated_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/nested_repeated_schema.py -------------------------------------------------------------------------------- /samples/snippets/nested_repeated_schema_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/nested_repeated_schema_test.py -------------------------------------------------------------------------------- /samples/snippets/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/noxfile.py -------------------------------------------------------------------------------- /samples/snippets/noxfile_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/noxfile_config.py -------------------------------------------------------------------------------- /samples/snippets/quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/quickstart.py -------------------------------------------------------------------------------- /samples/snippets/quickstart_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/quickstart_test.py -------------------------------------------------------------------------------- /samples/snippets/relax_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/relax_column.py -------------------------------------------------------------------------------- /samples/snippets/relax_column_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/relax_column_test.py -------------------------------------------------------------------------------- /samples/snippets/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/requirements-test.txt -------------------------------------------------------------------------------- /samples/snippets/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/requirements.txt -------------------------------------------------------------------------------- /samples/snippets/revoke_dataset_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/revoke_dataset_access.py -------------------------------------------------------------------------------- /samples/snippets/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/schema.json -------------------------------------------------------------------------------- /samples/snippets/schema_us_states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/schema_us_states.json -------------------------------------------------------------------------------- /samples/snippets/simple_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/simple_app.py -------------------------------------------------------------------------------- /samples/snippets/simple_app_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/simple_app_test.py -------------------------------------------------------------------------------- /samples/snippets/test_update_with_dml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/test_update_with_dml.py -------------------------------------------------------------------------------- /samples/snippets/update_dataset_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/update_dataset_access.py -------------------------------------------------------------------------------- /samples/snippets/update_table_expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/update_table_expiration.py -------------------------------------------------------------------------------- /samples/snippets/update_table_expiration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/update_table_expiration_test.py -------------------------------------------------------------------------------- /samples/snippets/update_with_dml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/update_with_dml.py -------------------------------------------------------------------------------- /samples/snippets/user_sessions_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/user_sessions_data.json -------------------------------------------------------------------------------- /samples/snippets/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/view.py -------------------------------------------------------------------------------- /samples/snippets/view_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/snippets/view_test.py -------------------------------------------------------------------------------- /samples/table_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/table_exists.py -------------------------------------------------------------------------------- /samples/table_insert_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/table_insert_rows.py -------------------------------------------------------------------------------- /samples/table_insert_rows_explicit_none_insert_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/table_insert_rows_explicit_none_insert_ids.py -------------------------------------------------------------------------------- /samples/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/conftest.py -------------------------------------------------------------------------------- /samples/tests/test_add_empty_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_add_empty_column.py -------------------------------------------------------------------------------- /samples/tests/test_browse_table_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_browse_table_data.py -------------------------------------------------------------------------------- /samples/tests/test_client_list_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_list_jobs.py -------------------------------------------------------------------------------- /samples/tests/test_client_load_partitioned_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_load_partitioned_table.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_add_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_add_column.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_batch.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_destination_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_destination_table.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_destination_table_clustered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_destination_table_clustered.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_destination_table_cmek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_destination_table_cmek.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_destination_table_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_destination_table_legacy.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_dry_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_dry_run.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_job_optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_job_optional.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_legacy_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_legacy_sql.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_relax_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_relax_column.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_w_array_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_w_array_params.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_w_named_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_w_named_params.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_w_positional_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_w_positional_params.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_w_struct_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_w_struct_params.py -------------------------------------------------------------------------------- /samples/tests/test_client_query_w_timestamp_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_client_query_w_timestamp_params.py -------------------------------------------------------------------------------- /samples/tests/test_copy_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_copy_table.py -------------------------------------------------------------------------------- /samples/tests/test_copy_table_cmek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_copy_table_cmek.py -------------------------------------------------------------------------------- /samples/tests/test_copy_table_multiple_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_copy_table_multiple_source.py -------------------------------------------------------------------------------- /samples/tests/test_create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_create_dataset.py -------------------------------------------------------------------------------- /samples/tests/test_create_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_create_job.py -------------------------------------------------------------------------------- /samples/tests/test_create_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_create_table.py -------------------------------------------------------------------------------- /samples/tests/test_create_table_clustered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_create_table_clustered.py -------------------------------------------------------------------------------- /samples/tests/test_create_table_range_partitioned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_create_table_range_partitioned.py -------------------------------------------------------------------------------- /samples/tests/test_dataset_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_dataset_exists.py -------------------------------------------------------------------------------- /samples/tests/test_dataset_label_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_dataset_label_samples.py -------------------------------------------------------------------------------- /samples/tests/test_delete_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_delete_dataset.py -------------------------------------------------------------------------------- /samples/tests/test_delete_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_delete_table.py -------------------------------------------------------------------------------- /samples/tests/test_download_public_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_download_public_data.py -------------------------------------------------------------------------------- /samples/tests/test_download_public_data_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_download_public_data_sandbox.py -------------------------------------------------------------------------------- /samples/tests/test_get_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_get_dataset.py -------------------------------------------------------------------------------- /samples/tests/test_get_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_get_table.py -------------------------------------------------------------------------------- /samples/tests/test_list_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_list_datasets.py -------------------------------------------------------------------------------- /samples/tests/test_list_datasets_by_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_list_datasets_by_label.py -------------------------------------------------------------------------------- /samples/tests/test_list_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_list_tables.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_clustered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_clustered.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_dataframe.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_file.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_autodetect_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_autodetect_csv.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_autodetect_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_autodetect_json.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_avro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_avro.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_cmek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_cmek.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_csv.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_json.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_orc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_orc.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_parquet.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_truncate_avro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_truncate_avro.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_truncate_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_truncate_csv.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_truncate_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_truncate_json.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_truncate_orc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_truncate_orc.py -------------------------------------------------------------------------------- /samples/tests/test_load_table_uri_truncate_parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_load_table_uri_truncate_parquet.py -------------------------------------------------------------------------------- /samples/tests/test_model_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_model_samples.py -------------------------------------------------------------------------------- /samples/tests/test_query_external_gcs_temporary_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_query_external_gcs_temporary_table.py -------------------------------------------------------------------------------- /samples/tests/test_query_external_sheets_permanent_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_query_external_sheets_permanent_table.py -------------------------------------------------------------------------------- /samples/tests/test_query_external_sheets_temporary_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_query_external_sheets_temporary_table.py -------------------------------------------------------------------------------- /samples/tests/test_query_no_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_query_no_cache.py -------------------------------------------------------------------------------- /samples/tests/test_query_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_query_pagination.py -------------------------------------------------------------------------------- /samples/tests/test_query_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_query_script.py -------------------------------------------------------------------------------- /samples/tests/test_query_to_arrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_query_to_arrow.py -------------------------------------------------------------------------------- /samples/tests/test_routine_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_routine_samples.py -------------------------------------------------------------------------------- /samples/tests/test_table_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_table_exists.py -------------------------------------------------------------------------------- /samples/tests/test_table_insert_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_table_insert_rows.py -------------------------------------------------------------------------------- /samples/tests/test_table_insert_rows_explicit_none_insert_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_table_insert_rows_explicit_none_insert_ids.py -------------------------------------------------------------------------------- /samples/tests/test_undelete_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_undelete_table.py -------------------------------------------------------------------------------- /samples/tests/test_update_dataset_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_update_dataset_access.py -------------------------------------------------------------------------------- /samples/tests/test_update_dataset_default_partition_expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_update_dataset_default_partition_expiration.py -------------------------------------------------------------------------------- /samples/tests/test_update_dataset_default_table_expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_update_dataset_default_table_expiration.py -------------------------------------------------------------------------------- /samples/tests/test_update_dataset_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_update_dataset_description.py -------------------------------------------------------------------------------- /samples/tests/test_update_table_require_partition_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/tests/test_update_table_require_partition_filter.py -------------------------------------------------------------------------------- /samples/undelete_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/undelete_table.py -------------------------------------------------------------------------------- /samples/update_dataset_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/update_dataset_access.py -------------------------------------------------------------------------------- /samples/update_dataset_default_partition_expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/update_dataset_default_partition_expiration.py -------------------------------------------------------------------------------- /samples/update_dataset_default_table_expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/update_dataset_default_table_expiration.py -------------------------------------------------------------------------------- /samples/update_dataset_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/update_dataset_description.py -------------------------------------------------------------------------------- /samples/update_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/update_model.py -------------------------------------------------------------------------------- /samples/update_routine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/update_routine.py -------------------------------------------------------------------------------- /samples/update_table_require_partition_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/samples/update_table_require_partition_filter.py -------------------------------------------------------------------------------- /scripts/decrypt-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/scripts/decrypt-secrets.sh -------------------------------------------------------------------------------- /scripts/readme-gen/readme_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/scripts/readme-gen/readme_gen.py -------------------------------------------------------------------------------- /scripts/readme-gen/templates/README.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/scripts/readme-gen/templates/README.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/auth.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/scripts/readme-gen/templates/auth.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/auth_api_key.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/scripts/readme-gen/templates/auth_api_key.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/install_deps.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/scripts/readme-gen/templates/install_deps.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/install_portaudio.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/scripts/readme-gen/templates/install_portaudio.tmpl.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/setup.py -------------------------------------------------------------------------------- /testing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/testing/.gitignore -------------------------------------------------------------------------------- /testing/constraints-3.10.txt: -------------------------------------------------------------------------------- 1 | grpcio==1.47.0 2 | -------------------------------------------------------------------------------- /testing/constraints-3.11.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.12.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.13.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.14.txt: -------------------------------------------------------------------------------- 1 | # Constraints for Python 3.14 2 | grpcio >= 1.75.1 3 | -------------------------------------------------------------------------------- /testing/constraints-3.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/testing/constraints-3.9.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/data/characters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/data/characters.json -------------------------------------------------------------------------------- /tests/data/characters.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/data/characters.jsonl -------------------------------------------------------------------------------- /tests/data/colors.avro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/data/colors.avro -------------------------------------------------------------------------------- /tests/data/numeric_38_12.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/data/numeric_38_12.parquet -------------------------------------------------------------------------------- /tests/data/people.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/data/people.csv -------------------------------------------------------------------------------- /tests/data/scalars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/data/scalars.csv -------------------------------------------------------------------------------- /tests/data/scalars.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/data/scalars.jsonl -------------------------------------------------------------------------------- /tests/data/scalars_extreme.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/data/scalars_extreme.jsonl -------------------------------------------------------------------------------- /tests/data/scalars_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/data/scalars_schema.json -------------------------------------------------------------------------------- /tests/data/scalars_schema_csv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/data/scalars_schema_csv.json -------------------------------------------------------------------------------- /tests/data/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/data/schema.json -------------------------------------------------------------------------------- /tests/scrub_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/scrub_datasets.py -------------------------------------------------------------------------------- /tests/system/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/system/__init__.py -------------------------------------------------------------------------------- /tests/system/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/system/conftest.py -------------------------------------------------------------------------------- /tests/system/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/system/helpers.py -------------------------------------------------------------------------------- /tests/system/test_arrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/system/test_arrow.py -------------------------------------------------------------------------------- /tests/system/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/system/test_client.py -------------------------------------------------------------------------------- /tests/system/test_job_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/system/test_job_retry.py -------------------------------------------------------------------------------- /tests/system/test_list_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/system/test_list_rows.py -------------------------------------------------------------------------------- /tests/system/test_magics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/system/test_magics.py -------------------------------------------------------------------------------- /tests/system/test_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/system/test_pandas.py -------------------------------------------------------------------------------- /tests/system/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/system/test_query.py -------------------------------------------------------------------------------- /tests/system/test_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/system/test_structs.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/_helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/_helpers/test_cell_data_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/_helpers/test_cell_data_parser.py -------------------------------------------------------------------------------- /tests/unit/_helpers/test_data_frame_cell_data_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/_helpers/test_data_frame_cell_data_parser.py -------------------------------------------------------------------------------- /tests/unit/_helpers/test_scalar_query_param_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/_helpers/test_scalar_query_param_parser.py -------------------------------------------------------------------------------- /tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/conftest.py -------------------------------------------------------------------------------- /tests/unit/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/helpers.py -------------------------------------------------------------------------------- /tests/unit/job/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/__init__.py -------------------------------------------------------------------------------- /tests/unit/job/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/helpers.py -------------------------------------------------------------------------------- /tests/unit/job/test_async_job_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/test_async_job_retry.py -------------------------------------------------------------------------------- /tests/unit/job/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/test_base.py -------------------------------------------------------------------------------- /tests/unit/job/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/test_copy.py -------------------------------------------------------------------------------- /tests/unit/job/test_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/test_extract.py -------------------------------------------------------------------------------- /tests/unit/job/test_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/test_load.py -------------------------------------------------------------------------------- /tests/unit/job/test_load_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/test_load_config.py -------------------------------------------------------------------------------- /tests/unit/job/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/test_query.py -------------------------------------------------------------------------------- /tests/unit/job/test_query_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/test_query_config.py -------------------------------------------------------------------------------- /tests/unit/job/test_query_job_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/test_query_job_retry.py -------------------------------------------------------------------------------- /tests/unit/job/test_query_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/test_query_pandas.py -------------------------------------------------------------------------------- /tests/unit/job/test_query_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/job/test_query_stats.py -------------------------------------------------------------------------------- /tests/unit/line_arg_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/line_arg_parser/__init__.py -------------------------------------------------------------------------------- /tests/unit/line_arg_parser/test_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/line_arg_parser/test_lexer.py -------------------------------------------------------------------------------- /tests/unit/line_arg_parser/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/line_arg_parser/test_parser.py -------------------------------------------------------------------------------- /tests/unit/line_arg_parser/test_visitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/line_arg_parser/test_visitors.py -------------------------------------------------------------------------------- /tests/unit/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/model/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/model/test_model.py -------------------------------------------------------------------------------- /tests/unit/model/test_model_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/model/test_model_reference.py -------------------------------------------------------------------------------- /tests/unit/routine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/routine/test_external_runtime_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/routine/test_external_runtime_options.py -------------------------------------------------------------------------------- /tests/unit/routine/test_remote_function_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/routine/test_remote_function_options.py -------------------------------------------------------------------------------- /tests/unit/routine/test_routine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/routine/test_routine.py -------------------------------------------------------------------------------- /tests/unit/routine/test_routine_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/routine/test_routine_argument.py -------------------------------------------------------------------------------- /tests/unit/routine/test_routine_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/routine/test_routine_reference.py -------------------------------------------------------------------------------- /tests/unit/test__helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test__helpers.py -------------------------------------------------------------------------------- /tests/unit/test__http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test__http.py -------------------------------------------------------------------------------- /tests/unit/test__job_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test__job_helpers.py -------------------------------------------------------------------------------- /tests/unit/test__job_helpers_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test__job_helpers_retry.py -------------------------------------------------------------------------------- /tests/unit/test__pandas_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test__pandas_helpers.py -------------------------------------------------------------------------------- /tests/unit/test__pyarrow_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test__pyarrow_helpers.py -------------------------------------------------------------------------------- /tests/unit/test__versions_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test__versions_helpers.py -------------------------------------------------------------------------------- /tests/unit/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_client.py -------------------------------------------------------------------------------- /tests/unit/test_client_bigframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_client_bigframes.py -------------------------------------------------------------------------------- /tests/unit/test_client_resumable_media_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_client_resumable_media_upload.py -------------------------------------------------------------------------------- /tests/unit/test_client_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_client_retry.py -------------------------------------------------------------------------------- /tests/unit/test_create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_create_dataset.py -------------------------------------------------------------------------------- /tests/unit/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_dataset.py -------------------------------------------------------------------------------- /tests/unit/test_dbapi__helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_dbapi__helpers.py -------------------------------------------------------------------------------- /tests/unit/test_dbapi_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_dbapi_connection.py -------------------------------------------------------------------------------- /tests/unit/test_dbapi_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_dbapi_cursor.py -------------------------------------------------------------------------------- /tests/unit/test_dbapi_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_dbapi_types.py -------------------------------------------------------------------------------- /tests/unit/test_delete_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_delete_dataset.py -------------------------------------------------------------------------------- /tests/unit/test_encryption_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_encryption_configuration.py -------------------------------------------------------------------------------- /tests/unit/test_external_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_external_config.py -------------------------------------------------------------------------------- /tests/unit/test_format_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_format_options.py -------------------------------------------------------------------------------- /tests/unit/test_job_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_job_retry.py -------------------------------------------------------------------------------- /tests/unit/test_legacy_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_legacy_types.py -------------------------------------------------------------------------------- /tests/unit/test_list_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_list_datasets.py -------------------------------------------------------------------------------- /tests/unit/test_list_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_list_jobs.py -------------------------------------------------------------------------------- /tests/unit/test_list_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_list_models.py -------------------------------------------------------------------------------- /tests/unit/test_list_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_list_projects.py -------------------------------------------------------------------------------- /tests/unit/test_list_routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_list_routines.py -------------------------------------------------------------------------------- /tests/unit/test_list_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_list_tables.py -------------------------------------------------------------------------------- /tests/unit/test_magics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_magics.py -------------------------------------------------------------------------------- /tests/unit/test_opentelemetry_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_opentelemetry_tracing.py -------------------------------------------------------------------------------- /tests/unit/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_packaging.py -------------------------------------------------------------------------------- /tests/unit/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_query.py -------------------------------------------------------------------------------- /tests/unit/test_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_retry.py -------------------------------------------------------------------------------- /tests/unit/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_schema.py -------------------------------------------------------------------------------- /tests/unit/test_signature_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_signature_compatibility.py -------------------------------------------------------------------------------- /tests/unit/test_standard_sql_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_standard_sql_types.py -------------------------------------------------------------------------------- /tests/unit/test_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_table.py -------------------------------------------------------------------------------- /tests/unit/test_table_arrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_table_arrow.py -------------------------------------------------------------------------------- /tests/unit/test_table_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigquery/HEAD/tests/unit/test_table_pandas.py --------------------------------------------------------------------------------