> On Jan 21, 2016, at 4:31 AM, Nick Coghlan <[email protected]> wrote:
> 
> If Donald can provide the list of "most downloaded wheel files" for
> other platforms, that could also be a useful guide as to how many
> source builds may potentially already be avoided through the draft
> "manylinux1" definition.


SELECT
  COUNT(*) AS downloads,
  file.filename
FROM
  TABLE_DATE_RANGE( [long-stack-762:pypi.downloads], TIMESTAMP("20160114"), 
CURRENT_TIMESTAMP() )
WHERE
  file.type = 'bdist_wheel'
  AND NOT REGEXP_MATCH(file.filename, '^.*-none-any.whl$')
GROUP BY
  file.filename
ORDER BY
  downloads DESC
LIMIT
  1000


https://gist.github.com/dstufft/1dda9a9f87ee7121e0ee

-----------------
Donald Stufft
PGP: 0x6E3CBCE93372DCFA // 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA

Attachment: signature.asc
Description: Message signed with OpenPGP using GPGMail

_______________________________________________
Distutils-SIG maillist  -  [email protected]
https://mail.python.org/mailman/listinfo/distutils-sig

Reply via email to