Skip to content

Commit 9a2daa4

Browse files
committed
📝 Update README.md
1 parent 6166fef commit 9a2daa4

File tree

1 file changed

+56
-6
lines changed

1 file changed

+56
-6
lines changed

README.md

+56-6
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
# Anyquery
22

3-
<img src="https://anyquery.dev/images/logo.png" alt="Anyquery logo" width="96"></img>
3+
<img src="https://anyquery.dev/images/logo-shadow.png" alt="Anyquery logo" width="96"></img>
44

55
![GitHub Downloads (all assets, all releases)](https://img.shields.io/github/downloads/julien040/anyquery/total)
66
![GitHub commit activity](https://img.shields.io/github.ghproxy.topmit-activity/m/julien040/anyquery)
77
[![Documentation](https://img.shields.io/badge/documentation-blue)](https://anyquery.dev)
88
[![GitHub issues](https://img.shields.io/github/issues/julien040/anyquery)](https://github.com/julien040/anyquery/issues)
99
[![Dynamic JSON Badge](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fregistry.anyquery.dev%2Fv0%2Fregistry%2F&query=%24.plugins_count&label=Integrations%20count&cacheSeconds=3600)](https://anyquery.dev/integrations/)
1010

11-
Anyquery is a SQL query engine that allows you to run SQL queries on pretty much anything. It supports querying [JSON](https://anyquery.dev/docs/usage/querying-files/#json), [CSV](https://anyquery.dev/docs/usage/querying-files/#csv), [Parquet](https://anyquery.dev/docs/usage/querying-files/#parquet), SQLite, [Airtable bases](https://anyquery.dev/integrations/airtable/), [Google Sheets](https://anyquery.dev/integrations/google_sheets/), [Notion databases](https://anyquery.dev/integrations/notion/), and more. It also supports running SQL queries on [remote files](https://anyquery.dev/docs/usage/querying-files/#remote-files) (HTTP, S3, GCS) and local apps ([Apple Notes](https://anyquery.dev/integrations/notes/), [Apple Reminders](https://anyquery.dev/integrations/reminders/), [Google Chrome Tabs](https://anyquery.dev/integrations/chrome/), etc.).
11+
Anyquery is a SQL query engine that allows you to run SQL queries on pretty much anything. It supports querying [JSON](https://anyquery.dev/docs/usage/querying-files/#json), [CSV](https://anyquery.dev/docs/usage/querying-files/#csv), [Parquet](https://anyquery.dev/docs/usage/querying-files/#parquet), SQLite, [Airtable bases](https://anyquery.dev/integrations/airtable/), [Google Sheets](https://anyquery.dev/integrations/google_sheets/), [Notion databases](https://anyquery.dev/integrations/notion/), [logs file](https://anyquery.dev/docs/usage/querying-log/) using [Grok](https://www.elastic.co/guide/en/elasticsearch/reference/current/grok.html), and more. It also supports running SQL queries on [remote files](https://anyquery.dev/docs/usage/querying-files/#remote-files) (HTTP, S3, GCS) and local apps ([Apple Notes](https://anyquery.dev/integrations/notes/), [Apple Reminders](https://anyquery.dev/integrations/reminders/), [Google Chrome Tabs](https://anyquery.dev/integrations/chrome/), etc.).
1212
It's built on top of [SQLite](https://www.sqlite.org) and uses [plugins](https://anyquery.dev/integrations/) to extend its functionality.
1313

1414
Moreover, it can acts as a [MySQL server](https://anyquery.dev/docs/usage/mysql-server/), allowing you to run SQL queries from your favorite MySQL-compatible client (e.g. [Looker Studio](https://anyquery.dev/connection-guide/looker-studio/), [DBeaver](https://anyquery.dev/connection-guide/dbeaver/), [TablePlus](https://anyquery.dev/connection-guide/tableplus/), [Metabase](https://anyquery.dev/connection-guide/metabase/), etc.).
1515

1616
![Anyquery header](https://anyquery.dev/images/release-header.png)
1717

18-
## Installation
19-
20-
The [documentation](https://anyquery.dev/docs/#installation) provides detailed instructions on how to install Anyquery on your system. You can install anyquery from Homebrew, APT, YUM/DNF, Scoop, Winget and Chocolatey. You can also download the binary from the [releases page](https://github.com/julien040/anyquery/releases).
21-
2218
## Usage
2319

2420
The [documentation](https://anyquery.dev/docs/usage/running-queries) provides detailed instructions on how to run queries with Anyquery.
@@ -45,6 +41,60 @@ anyquery server &
4541
mysql -u root -h 127.0.0.1 -P 8070
4642
```
4743

44+
## Installation
45+
46+
The [documentation](https://anyquery.dev/docs/#installation) provides detailed instructions on how to install Anyquery on your system. You can install anyquery from Homebrew, APT, YUM/DNF, Scoop, Winget and Chocolatey. You can also download the binary from the [releases page](https://github.com/julien040/anyquery/releases).
47+
48+
### Homebrew
49+
50+
```zsh
51+
brew install julien040/anyquery/anyquery
52+
```
53+
54+
### Snap
55+
56+
```bash
57+
sudo snap install anyquery
58+
```
59+
60+
### APT
61+
62+
```bash
63+
echo "deb [trusted=yes] https://apt.julienc.me/ /" | sudo tee /etc/apt/sources.list.d/anyquery.list
64+
sudo apt update
65+
sudo apt install anyquery
66+
```
67+
68+
### YUM/DNF
69+
70+
```bash
71+
echo "[anyquery]
72+
name=Anyquery
73+
baseurl=https://yum.julienc.me/
74+
enabled=1
75+
gpgcheck=0" | sudo tee /etc/yum.repos.d/anyquery.repo
76+
sudo dnf install anyquery
77+
```
78+
79+
### Scoop
80+
81+
```powershell
82+
scoop bucket add anyquery https://github.com/julien040/anyquery-scoop
83+
scoop install anyquery
84+
```
85+
86+
### Winget
87+
88+
```powershell
89+
winget install JulienCagniart.anyquery
90+
```
91+
92+
### Chocolatey
93+
94+
```powershell
95+
choco install anyquery
96+
```
97+
4898
## Plugins
4999

50100
Anyquery is plugin-based, and you can install plugins to extend its functionality. You can install plugins from the [official registry](https://anyquery.dev/integrations) or create your own. Anyquery can also [load any SQLite extension](https://anyquery.dev/docs/usage/plugins#using-sqlite-extensions).

0 commit comments

Comments
 (0)