Skip to content

Commit

Permalink
bump version for tagging
Browse files Browse the repository at this point in the history
Bumped version, fixed readme typo.
  • Loading branch information
tanmaykm committed Dec 4, 2020
1 parent 05e4371 commit 2642b9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uuid = "626c502c-15b0-58ad-a749-f091afb673ae"
keywords = ["parquet", "julia", "columnar-storage"]
license = "MIT"
desc = "Julia implementation of parquet columnar file format reader and writer"
version = "0.7.1"
version = "0.8.0"

[deps]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@

### Simple Reader

You can load a [parquet file](https://en.wikipedia.org/wiki/Apache_Parquet) by using the `read_parquet` function
You can load a [parquet file](https://en.wikipedia.org/wiki/Apache_Parquet) by using the `read_parquet` function.

```
# `tbl` is a Tables.jl compatible table
tbl = read_parquet(path_to_parquet_file)
# example for how to convertconvert to DataFrame
# example for how to convert to DataFrame
using DataFrames
df = DataFrame(tbl, copycols=true)
```

### Lower Level Reader Details
### Lower Level Reader

Load a [parquet file](https://en.wikipedia.org/wiki/Apache_Parquet). Only metadata is read initially, data is loaded in chunks on demand. (Note: [ParquetFiles.jl](https://github.com/queryverse/ParquetFiles.jl) also provides load support for Parquet files under the FileIO.jl package.)

Expand Down

0 comments on commit 2642b9b

Please sign in to comment.