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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

SQLite-Utils

142 点作者 dedalus将近 2 年前

7 条评论

jgalt212将近 2 年前
If you want to fiddle with SQLite and don&#x27;t need all the power herein, I recommend DB Browser for SQLite.<p><a href="https:&#x2F;&#x2F;sqlitebrowser.org&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;sqlitebrowser.org&#x2F;</a>
评论 #36919915 未加载
评论 #36919289 未加载
FragenAntworten将近 2 年前
Julia Evans has a brief description of SQLite-Utils that sold me on it: <a href="https:&#x2F;&#x2F;jvns.ca&#x2F;blog&#x2F;2022&#x2F;05&#x2F;12&#x2F;sqlite-utils--a-nice-way-to-import-data-into-sqlite&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;jvns.ca&#x2F;blog&#x2F;2022&#x2F;05&#x2F;12&#x2F;sqlite-utils--a-nice-way-to-...</a>
srik将近 2 年前
Among other things that makes this tool awesome is how convenient it makes light weight data wrangling on the cli, e.g. to introspect some json data in your clipboard with sql<p>`$ pbpaste | sqlite-utils memory --table - &quot;select * from stdin;&quot;`
tibudiyanto将近 2 年前
thank you @simonw for creating this wonderful tool! I reach for sqlite-utils for my adhoc data needs every now and then. For aggregation then I use duckdb to read the resulting sqlite file.
thangngoc89将近 2 年前
I&#x27;m absolutely recommend SQLite-utils for fast SQLite operations, converting to and from SQLite. I have piles of bash script that import different sources of data (json, csv) into SQLite so that I can run analysis on it using SQL. My scripts are expected to work for years to come because SQL in general are stable, unlike the dependencies hell that comes with Python or Node.js
评论 #36918430 未加载
p4bl0将近 2 年前
That&#x27;s very cool thanks for sharing. Reading the manual I wonder if it wouldn&#x27;t be more work for me to use a library like this than to use the default sqlite3 Python biding and writing my SQL queries by hand. Still cool nonetheless, as I can totally see how it could be useful to some people.
7373737373将近 2 年前
Another sqlite-based high level library that positively surprised me: <a href="https:&#x2F;&#x2F;dataset.readthedocs.io&#x2F;en&#x2F;latest&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;dataset.readthedocs.io&#x2F;en&#x2F;latest&#x2F;</a>