On Thu, Jan 26, 2017 at 5:23 PM, Nathaniel Smith <n...@pobox.com> wrote:

> It's also relatively common to need a 64-bit Python, e.g. if running
> programs that need more than 4 GiB of address space. (Data analysts
> run into this fairly often.)
>
> I don't know enough about Windows to have an informed opinion about
> how the trade-offs work out, but as an additional data point, it looks
> like in the last ~week of PyPI downloads, 32-bit windows wheels have
> been downloaded 379943 times, and 64-bit windows wheels have been
> downloaded 331933 times [1], so it's pretty evenly split 53% / 47%.
>

How much of that is because of the default download on python.org ?

Also % seem swapped depending on python2 vs Python3, and quite different.

Python 3
190466   win_amd64  ~ 60%
275949   win32

Python 2
3139051 win32  ~ 87%
463554   win_amd64

-- 
M



SELECT
  COUNT(*) AS downloads,
  REGEXP_EXTRACT(file.filename, r"(win32|win_amd64)\.whl") as windows_bitness,
  REGEXP_EXTRACT(details.python, r"(^\d)") as  python
FROM
  TABLE_DATE_RANGE( [the-psf:pypi.downloads], TIMESTAMP("20170119"),
TIMESTAMP("20170126") )
WHERE
  REGEXP_EXTRACT(file.filename, r"(win32|win_amd64)\.whl") <> 'null'
GROUP BY
  windows_bitness, python
ORDER BY
  python DESC, downloads DESC
LIMIT
  1000
_______________________________________________
Python-ideas mailing list
Python-ideas@python.org
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to