Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add note about Arrow blocks to README #73

Merged
merged 5 commits into from Jan 14, 2021
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.rst
Expand Up @@ -86,15 +86,21 @@ Optional Dependencies
Several features of ``google-cloud-bigquery-storage`` require additional
dependencies.

* Parse Arrow blocks in a ``read_rows()`` stream using `pyarrow
<https://arrow.apache.org/docs/python/>`_.

``pip install google-cloud-bigquery-storage[pyarrow]``


* Parse Avro blocks in a ``read_rows()`` stream using `fastavro
<https://fastavro.readthedocs.io/en/latest/>`_.

``pip install google-cloud-bigquery-storage[fastavro]``

* Write rows to a `pandas <http://pandas.pydata.org/pandas-docs/stable/>`_
* Download rows to a `pandas <http://pandas.pydata.org/pandas-docs/stable/>`_
dataframe.

``pip install google-cloud-bigquery-storage[pandas,fastavro]``
``pip install google-cloud-bigquery-storage[pandas,pyarrow]``

Next Steps
~~~~~~~~~~
Expand Down