Replies: 1 comment
-
the version downloads archive may contain version IDs for crates or versions that were deleted from crates.io either by their authors or by admins due to copyright issues or for other reasons like that. |
Beta Was this translation helpful? Give feedback.
0 replies
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.
-
I’m trying to build a complete mapping between
version_id
andcrate_id
from the official crates.io database dumps (https://crates.io/data-access#database-dumps).Here is what I have done so far:
version_id → crate_id
should be available in theversions.csv
file, since it contains bothid
(the version ID) andcrate_id
.For
version_id
s, I used their official website as well (https://static.crates.io/archive/version-downloads/) which includesversion_id
s from 2014 to the present. However, many of theseversion_id
s don’t seem to have corresponding entries in the latest dump’sversions.csv
. For example, version_ids = {447167, 931652, 861844}How can I get a complete mapping of every version_id to its crate_id for all versions published on crates.io?
My ultimate goal is to get top K most downloaded packages before 2024 and 2024 to current.
Beta Was this translation helpful? Give feedback.
All reactions