8000 restrict columns to read for pandas.read_parquet by hoffmann · Pull Request #18155 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

restrict columns to read for pandas.read_parquet #18155

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

Merged
merged 13 commits into from
Nov 8, 2017
Prev Previous commit
Next Next commit
fix flake8
  • Loading branch information
hoffmann committed Nov 7, 2017
commit d00d2222250f18cfe86441c06dac0a8f90d2d237
2 changes: 1 addition & 1 deletion pandas/io/parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def to_parquet(df, path, engine='auto', compression='snappy', **kwargs):
return impl.write(df, path, compression=compression)


def read_parquet(path, engine='auto', columns=None, **kwargs):
def read_parquet(path, engine='auto', columns=None, **kwargs):
"""
Load a parquet object from the file path, returning a DataFrame.

Expand Down
0