https://github.com/chhantyal/py3readiness
Python 3 support graph for most popular packages
https://github.com/chhantyal/py3readiness
packages packaging pypi python python3
Last synced: over 1 year ago
JSON representation
Python 3 support graph for most popular packages
- Host: GitHub
- URL: https://github.com/chhantyal/py3readiness
- Owner: chhantyal
- License: bsd-2-clause
- Created: 2014-03-03T18:45:40.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2020-01-27T10:34:01.000Z (over 6 years ago)
- Last Synced: 2025-02-27T11:48:21.082Z (over 1 year ago)
- Topics: packages, packaging, pypi, python, python3
- Language: HTML
- Homepage: http://chhantyal.net/py3readiness
- Size: 251 KB
- Stars: 159
- Watchers: 15
- Forks: 70
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Python 3 readiness
==================
Python 3 support graph for most popular Python libraries and packages http://chhantyal.net/py3readiness
## How do you identify Python 3 support?
This site utilizes little tool, [caniusepython3](https://github.com/brettcannon/caniusepython3) created by Brett Cannon.
Throw your `requirements.txt` file at it and it will tell you which packages support Python 3, and list out which don't.
## Contribute
Please use issue tracker for issues, suggestions, feature requests and further enhancements.
## How does the site work?
The site works by checking PyPi periodically (currently daily).
Script `generate.py` is run daily which generates JSON and updates date and time.
For almost a year, the site was running on very low resource VPS with nginx as web server.
Daily update was done via cron job in same machine.
Currently, `generate.py` function is run on AWS Lambda.
It saves output JSON file to S3 which is used to build graph. Site itself is hosted on GitHub Pages.
## Local
Output (`results.json`, `wheel.svg`, `wheel.css`) are uploaded to S3. You need to configure `aws-cli`
1. `aws configure`
2. `python generate.py`
## Deploy
AWS Lambda needs all dependencies as zip file along with codebase.
1. `zip -r app.zip generate.py src/`
2. `cd path/to/site-packages/`
3. `zip -r app.zip *`
Finally, upload the app.zip file and update version.
## Credits
This is derivative work from [Python Wheels](https://pythonwheels.com), a site that tracks progress in new Python package distribution standard called [Wheels](https://pypi.org/project/wheel/). All the credits goes to [meshy](https://github.com/meshy).