bigframes.pandas.read_avro#

bigframes.pandas.read_avro(path: str | IO[bytes], *, engine: str = 'auto') DataFrame[source]#

Load an Avro file to a BigQuery DataFrames DataFrame.

Parameters:
  • path (str or IO) – The path or buffer to the Avro file. Can be a local path or Google Cloud Storage URI.

  • engine (str, default "auto") – The engine used to read the file. Only bigquery is supported for Avro.

Returns:

A new DataFrame representing the data from the Avro file.

Return type:

bigframes.pandas.DataFrame