No description
| .github/workflows | ||
| pypi_list | ||
| site | ||
| .gitignore | ||
| .pre-commit-config.yaml | ||
| pyproject.toml | ||
| README.md | ||
| requirements.txt | ||
| requirements_dev.txt | ||
| setup.cfg | ||
| setup.py | ||
pypi-list
Live on pypi-list.waylonwalker.com
Listing python packages from pypi, and finding available single word packages.
Install
pip install -r requirements.txt
Run the Pipeline
# Run with existing package data
python pypi-list.py
# Full run
python pypi-list.py --full
Scheduled on GitHub actions
This pipeline run daily at 0:0 to generate a packages.json,
unavailable.json, avalilable.json.
Development
pip install -e ".[dev]"
This project includes a pre-commit-config, this ensures that each commit made
to the project passes all checks that are also ran in CI. To setup pre-commit
in your development environment run the follow command.
pre-commit install