Feature Request: downloadable data #20
jamescridland
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Inspired by Podcast Index's downloadable database...
I'm wondering whether it's possible to perhaps produce a (monthly? weekly?) downloadable SQLlite dump for research purposes, based on the "downloads" data (i.e. these verified downloads, rather than individual requests).
This would enable researchers into podcasting to, for example...
SELECT agentName,COUNT(*) AS totaldownloads WHERE devicetype="android" GROUP BY agentName ORDER BY totaldownloads DESC
SELECT agentName,COUNT(*) AS totaldownloads WHERE countryCode="DE" GROUP BY agentName ORDER BY totaldownloads DESC
... and many other permutations we've not yet considered, like normalising US downloads by timezone, or looking at auto downloads vs user-initiated downloads.
I'm imagining that the files would be, um, quite big. Podcast Index doesn't appear to store theirs, though; so you might be able to simply host "the latest one". I'm thinking that monthly might be best, but I've no idea whether that makes it a stupidly large file.
For filesize, perhaps you don't need the URL (you could look that up); and perhaps also you could lose the continentCode (given that you can reproduce that based on the countryCode).
Beta Was this translation helpful? Give feedback.
All reactions