Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amoeba/qlarrow
WIP QuickLook plugin for Apache Arrow and Parquet
https://github.com/amoeba/qlarrow
apache-arrow golang macos parquet quicklook
Last synced: about 1 month ago
JSON representation
WIP QuickLook plugin for Apache Arrow and Parquet
- Host: GitHub
- URL: https://github.com/amoeba/qlarrow
- Owner: amoeba
- Created: 2022-09-17T01:50:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-20T21:32:59.000Z (over 2 years ago)
- Last Synced: 2024-11-02T14:42:06.152Z (about 2 months ago)
- Topics: apache-arrow, golang, macos, parquet, quicklook
- Language: C
- Homepage:
- Size: 23 MB
- Stars: 16
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# QLArrow
[QuickLook](https://support.apple.com/guide/mac-help/view-and-edit-files-with-quick-look-mh14119/mac) plugin for various [Arrow](https://arrow.apache.org/) file formats.
[Arrow](https://arrow.apache.org/) is a high-performance, language-agnostic columnar memory format.## Roadmap
[Parquet](https://parquet.apache.org/) is the main use case here but [Arrow IPC](https://arrow.apache.org/docs/format/Columnar.html) may be useful for some.
Currently, [QLArrow](https://github.com/amoeba/QLArrow) provides [QuickLook](https://support.apple.com/guide/mac-help/view-and-edit-files-with-quick-look-mh14119/mac) previews for:
- [x] [Parquet](https://parquet.apache.org/)
- [ ] Feather
- [ ] Arrow IPC# Installation
- Download the [latest release](https://github.com/amoeba/QLArrow/releases/) and extract the ZIP
- Run `xattr -d com.apple.quarantine QLArrow.qlgenerator` on `QLArrow.qlgenerator`
- Move to `~/Library/QuickLook`# Building
0. Pre-requisites
- XCode
- Go1. Build the Go subproject
```sh
go build -buildmode=c-archive -o internal.a ./internal
```2. Build the XCode subproject
* Open `QLArrow.xcodeproj`
* Build the `QLArrow` target## Credit
- [https://github.com/toland/qlmarkdown](https://github.com/toland/qlmarkdown)
- [https://github.com/remko/qlmka](https://github.com/remko/qlmka)