Код: Выделить всё
job_config = bigquery.LoadJobConfig(
schema=[
bigquery.SchemaField("name", "STRING"),
bigquery.SchemaField("post_abbr", "STRING"),
],
skip_leading_rows=1,
column_name_character_map='V2',
# The source format defaults to CSV, so the line below is optional.
source_format=bigquery.SourceFormat.CSV,
)
Свойство columns_name_character_map неизвестно для
Подробнее здесь: https://stackoverflow.com/questions/787 ... djobconfig