From 0cbb4f7ed3953a43f4db117f750696eda6d2f62c Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Fri, 14 Sep 2018 12:09:54 -0700 Subject: [PATCH] Show top 720 packages All but three of the 360 top packages are now compatible with Python 3 (python-augeas is a false positive, Brett will fix it today). Let's show the top 720 to make it more interesting. Signed-off-by: Christian Heimes --- generate.py | 2 +- index.html | 35 ++++++++++++++++++++++++++++++++--- requirements.txt | 2 +- 3 files changed, 34 insertions(+), 5 deletions(-) diff --git a/generate.py b/generate.py index 9a4d1a7..070360a 100644 --- a/generate.py +++ b/generate.py @@ -7,7 +7,7 @@ ) -TO_CHART = 360 +TO_CHART = 720 def main(*args): diff --git a/index.html b/index.html index a2c6c80..c2c28a0 100644 --- a/index.html +++ b/index.html @@ -28,12 +28,15 @@ $(".list-upto-120").html(populate(data.slice(0, 120))); $(".list-upto-240").html(populate(data.slice(120, 240))); $(".list-upto-360").html(populate(data.slice(240, 360))); + $(".list-upto-480").html(populate(data.slice(360, 480))); + $(".list-upto-600").html(populate(data.slice(480, 600))); + $(".list-upto-720").html(populate(data.slice(600, 720))); handle_css(); }; function handle_css(){ - var ids = [".list-upto-120", ".list-upto-240", ".list-upto-360"] + var ids = [".list-upto-120", ".list-upto-240", ".list-upto-360", ".list-upto-480", ".list-upto-600", ".list-upto-720"] $.each(ids, function(idx, id) { @@ -93,10 +96,10 @@

Python 3 Readiness

-

Python 3 support graph for 360 most popular Python packages!

+

Python 3 support graph for 720 most popular Python packages!

What is this about?

-

This site shows Python 3 support for 360 most downloaded packages on PyPI

+

This site shows Python 3 support for 720 most downloaded packages on PyPI

  1. Green packages support Python 3 (or has drop in replacement package which supports Python 3),
  2. White packages don't support Python 3 yet.
  3. @@ -150,6 +153,32 @@

+
+
+
+
+

Top 360 - 480

+
+
+
+
+
+
+
+

Top 480 - 600

+
+
+
+
+
+
+
+

Top 600 - 720

+
+
+
+
+

Thanks

This is derivative work from Python Wheels, a site that tracks progress in new Python package distribution standard called Wheels. All the credits goes to meshy. diff --git a/requirements.txt b/requirements.txt index 71bbde2..00ce037 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ boto3 -caniusepython3==6.0.0 +caniusepython3 requests