TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

SQLite-Utils

142 pointsby dedalusalmost 2 years ago

7 comments

jgalt212almost 2 years ago
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 未加载
FragenAntwortenalmost 2 years ago
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>
srikalmost 2 years ago
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;`
tibudiyantoalmost 2 years ago
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.
thangngoc89almost 2 years ago
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 未加载
p4bl0almost 2 years ago
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.
7373737373almost 2 years ago
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>