Created
July 21, 2016 02:59
-
-
Save kmmbvnr/668eaa7ce6eb71234ef2954a871326a2 to your computer and use it in GitHub Desktop.
Query pypi package download stats
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT details.installer.name, COUNT(*) | |
| FROM | |
| TABLE_DATE_RANGE( | |
| [the-psf:pypi.downloads], | |
| TIMESTAMP("20160601"), | |
| TIMESTAMP("20160630") | |
| ) | |
| WHERE file.project='django-material' | |
| group by details.installer.name |
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.