←back to thread

275 points whatisabcdefgh | 1 comments | | HN request time: 0.001s | source
Show context
supportengineer ◴[] No.45133233[source]
What if instead of API's for data sets, we simply placed a sqlite file onto a web server as a static asset, so you could just periodically do a GET and have a local copy.
replies(4): >>45133260 #>>45133305 #>>45133319 #>>45133437 #
1. yupyupyups ◴[] No.45133260[source]
This works as long as the data is "small" and you have no ACL for it. Assuming you mean automatic downloads.

Devdocs does something similar, but there you request to download the payload manually, and the data is still browsable online without you having to download all of it. The data is also split in a convenient manner (by programming language/library). In other words, you can download individual parts. The UI also remains available offline, which is pretty cool.

https://devdocs.io/