Having typings in the library would help and saw that there is a PR opened for that. However, the documentation is somewhat lacking.
It is hard to tell what the methods return and are all the parameters while looking at the docs https://googleapis.dev/python/bigquery/latest/generated/google.cloud.bigquery.client.Client.html
For example, in the tutorial: what is the difference between these 2 table objects created?
table = bigquery.Table(table_id, schema=schema)
table = client.create_table(table) # Make an API request.
Having typings in the library would help and saw that there is a PR opened for that. However, the documentation is somewhat lacking.
It is hard to tell what the methods return and are all the parameters while looking at the docs https://googleapis.dev/python/bigquery/latest/generated/google.cloud.bigquery.client.Client.html
For example, in the tutorial: what is the difference between these 2 table objects created?