Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to tell the amount of times a pypi package is downloaded by actual users?

Tags:

python

pypi

I uploaded a python package to pypi and I would like to track how many "real" downloads does it have. Like, given that my package has, say, 1000 downloads (per day, week, month, doesn't matter), I would like to discard from that amount the number of downloads made from CI servers and so. I mean, I would like to discard downloads that are not from actual users.

Is there any way to accomplish this?

Thanks!

like image 435
Gerard Avatar asked Jan 24 '14 22:01

Gerard


1 Answers

I could possibly be 7 years late, but there's now a website called pypistats that gives you how many downloads your PyPi package has. django's statistics and downloads according to the pypistats.org

like image 137
ichirod Avatar answered Oct 07 '22 08:10

ichirod