├── .editorconfig ├── .github └── workflows │ ├── lint.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .ruff.toml ├── README.md ├── clickhouse.py ├── deploy.sh ├── favicon.ico ├── generate.sh ├── index.html ├── top-pypi-packages-30-days.csv ├── top-pypi-packages-30-days.json ├── top-pypi-packages-30-days.min.json ├── top-pypi-packages.csv ├── top-pypi-packages.json ├── top-pypi-packages.min.json ├── top-pypi-packages.sh └── trim.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/.ruff.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/README.md -------------------------------------------------------------------------------- /clickhouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/clickhouse.py -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/deploy.sh -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/favicon.ico -------------------------------------------------------------------------------- /generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/generate.sh -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/index.html -------------------------------------------------------------------------------- /top-pypi-packages-30-days.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/top-pypi-packages-30-days.csv -------------------------------------------------------------------------------- /top-pypi-packages-30-days.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/top-pypi-packages-30-days.json -------------------------------------------------------------------------------- /top-pypi-packages-30-days.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/top-pypi-packages-30-days.min.json -------------------------------------------------------------------------------- /top-pypi-packages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/top-pypi-packages.csv -------------------------------------------------------------------------------- /top-pypi-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/top-pypi-packages.json -------------------------------------------------------------------------------- /top-pypi-packages.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/top-pypi-packages.min.json -------------------------------------------------------------------------------- /top-pypi-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/top-pypi-packages.sh -------------------------------------------------------------------------------- /trim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugovk/top-pypi-packages/HEAD/trim.py --------------------------------------------------------------------------------