Hugo van Kemenade
Hugo van Kemenade
The `project_urls` for each of the top 5,000, preview: ``` {'Homepage': 'https://urllib3.readthedocs.io/'} {'Homepage': 'https://github.com/benjaminp/six'} {'Homepage': 'https://github.com/boto/botocore'} {'Homepage': 'http://python-requests.org'} {'Homepage': 'https://dateutil.readthedocs.io'} {'Homepage': 'https://pip.pypa.io/'} {'Homepage': 'https://github.com/boto/s3transfer'} {'Homepage': 'https://certifi.io/'} {'Homepage': 'https://github.com/kjd/idna'} {'Homepage': 'http://docutils.sourceforge.net/'}...
Multipart zip of `/Users/hugo/Library/Caches/source-finder/` containing the top 5,000 (plus 5) JSON metatdata, created with `zip source-finder.zip --out cachefiles.zip -s 10m` Rename the `.z0X.zip` to `.zOX` before uncompressing. - [cachefiles.z01.zip](https://github.com/hugovk/pypi-tools/files/3802061/cachefiles.z01.zip) -...
And a count of all the `project_urls` keys: ```python Counter({'Homepage': 4881, 'Download': 1164, 'Documentation': 238, 'Issue tracker': 116, 'Source': 95, 'Tracker': 41, 'Source Code': 38, 'Bug Tracker': 36, 'Repository': 31,...
Looks good! Thanks!
# August 2020 Updated list of most popular `project_uls` keys in the top 4,000 downloaded packages (via https://github.com/hugovk/pypi-tools/pull/20#issue-493725680): ```console $ python3 project_urls.py -n 4000 Load data/top-pypi-packages.json... Find project_urls... 100%|████████████████████████████████| 4000/4000...
# June 2022 Updated list of most popular project_uls keys in the top 5,000 downloaded packages: `python3 pypi_fields.py --number 5000 --format markdown` ## Top 10 | project_urls | Count |...
Adding a README with explicit install/usage instructions would be great, especially if not pip installable.
The [Python 3.13 beta is out](https://discuss.python.org/t/python-3-13-0b1-now-available/52891) and the release manager has issued a call to action: > We **strongly encourage** maintainers of third-party Python projects to **test with 3.13** during...
I think this is intended behaviour, as this module is garbage, in garbage out. > The method `plural_noun()` takes a _singular_ English noun or pronoun and returns its plural. https://github.com/jazzband/inflect#forming-plurals-and-singulars...
Yes: > The method `singular_noun()` takes a _plural_ English noun or pronoun and returns its singular. Or otherwise `False`: ```python >>> import inflect >>> p = inflect.engine() >>> p.singular_noun('women') 'woman'...