Reputation: 21
Can you load csv file without opening in binary format
with open(file_path, "rb") as source_file: job = client.load_table_from_file(source_file, table_id, job_config=job_config)
Upvotes: 1
Views: 80
Reputation: 21
It looks like Google bigquery will not handle special characters when loading data from csv local storage that contains special characters
Upvotes: 1