TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: Anyquery – A SQL query engine for anything (CSV, GitHub, Airtable,etc.)

12 点作者 julien04010 个月前
Hey HN, I’m Julien, and after finishing my CS sophomore year, I wanted a project to keep me busy during the summer. So I built anyquery for fun, a SQL query engine for pretty much anything.<p>SQL is the industry standard query language for databases. But what if it could query other services? That’s what I wanted to explore. Kinda like Yahoo! Query Language, except that I was too young to see it.<p>Anyquery can run queries on local&#x2F;remote files (CSV, JSON, logs with Grok, Parquet, HTML tables, etc.), SaaS (GitHub, Notion, Spotify, etc.) and local apps (Apple Notes, Git, Google Chrome tabs, etc.). I’ve built 35 integrations. Anyquery can also transform a Google Sheets or an Airtable base into a SQL database with INSERT&#x2F;UPDATE&#x2F;DELETE support. Additionally, it can act as a MySQL server to leverage its ecosystem (BI tools, ORMs, etc.). Finally, you can run PRQL and PQL (KQL inspired language) queries with it.<p>Under the hood, it uses Go and SQLite&#x27;s virtual tables. Therefore, you can use the SQLite ecosystem (like sqlite-vec, datasette, etc.). The project is licensed under the AGPL-v3.<p>Personally, I find the project useful for data migration (I’m using it to transfer my Pocket bookmarks to Raindrop) and data visualization (connecting my GitHub data to Metabase or Tableau)<p>I would love to hear your feedback about the project.<p>Website: <a href="https:&#x2F;&#x2F;anyquery.dev&#x2F;docs&#x2F;#installation" rel="nofollow">https:&#x2F;&#x2F;anyquery.dev&#x2F;docs&#x2F;#installation</a><p>Source code: <a href="https:&#x2F;&#x2F;github.com&#x2F;julien040&#x2F;anyquery">https:&#x2F;&#x2F;github.com&#x2F;julien040&#x2F;anyquery</a><p>Brief overview of the architecture: <a href="https:&#x2F;&#x2F;anyquery.dev&#x2F;docs&#x2F;developers&#x2F;project&#x2F;architecture&#x2F;" rel="nofollow">https:&#x2F;&#x2F;anyquery.dev&#x2F;docs&#x2F;developers&#x2F;project&#x2F;architecture&#x2F;</a>

2 条评论

nbbaier10 个月前
Really cool! For querying something like CSV, what&#x27;s the difference between this and say, DuckDB?
评论 #41204235 未加载
st0le10 个月前
This is an amazing idea! Love it.