Pip statistics are not available on the pypi.python.org website, and the vanity package also does not work.
Today you can get pips statistics only through this BigQuery dataset: https://bigquery.cloud.google.com/dataset/the-psf:pypi
Sample request for https://pypi.python.org/pypi/dvc package:
SELECT details.system.name, COUNT(*) as download_count, FROM TABLE_DATE_RANGE( [the-psf:pypi.downloads], DATE_ADD(CURRENT_TIMESTAMP(), -31, "day"), DATE_ADD(CURRENT_TIMESTAMP(), -1, "day") ) WHERE file.project = 'dvc' GROUP BY details.system.name
Please note that some download signals are generated by monitoring tools and should not be counted as user downloads. For example, you should exclude null values from the output:
Row details_system_name download_count 1 Darwin 1111 2 null 10000 3 Windows 222 4 Linux 3333
Dmitry Petrov May 6 '17 at 5:45 a.m. 2017-05-06 05:45
source share