File size: 503 Bytes
1856027 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | Managing Jobs
~~~~~~~~~~~~~
Jobs describe actions performed on data in BigQuery tables:
- Load data into a table
- Run a query against data in one or more tables
- Extract data from a table
- Copy a table
Listing jobs
^^^^^^^^^^^^
List jobs for a project with the
:func:`~google.cloud.bigquery.client.Client.list_jobs` method:
.. literalinclude:: ../samples/client_list_jobs.py
:language: python
:dedent: 4
:start-after: [START bigquery_list_jobs]
:end-before: [END bigquery_list_jobs]
|