npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

create-packkit-py

v2.4.0

Published

Scaffold modern Python projects — pyproject/uv, ruff, pytest, src layout — from a CLI or the browser. Packkit's Python sibling.

Downloads

1,729

Readme

create-packkit-py 🐍📦

Scaffold a modern Python project — pyproject.toml/uv, ruff, pytest, src/ layout — from a CLI (and soon the browser). Packkit's Python sibling.

npm CI Configure on the web License: MIT

Prefer clicking to typing? Configure a Python project in the browser → — pick options, preview the tree, download a zip (or copy the command). No install needed.

Like create-packkit, this is a JavaScript generator — but its output is an idiomatic Python project. That means the whole Packkit engine pattern (a deterministic core, presets, a browser configurator, --schema, MCP, and a packkit.json provenance file) carries over, while you get standard Python: PEP 621 pyproject.toml, a src/ layout, ruff, pytest, mypy, and a hatchling build. No Python toolchain is needed to generate — only to run what's generated.

Quick start

npx create-packkit-py py-lib my-lib
npx create-packkit-py py-cli my-tool
# then:
cd my-lib && uv sync --all-extras && uv run pytest

Every generated project passes pytest, ruff, and mypy --strict out of the box — the same guarantee create-packkit makes for JS/TS.

Presets

| Preset | Alias | What you get | | -------- | ----- | ---------------------------------------------------------------------------------- | | py-lib | lib | Library — src/ layout, ruff, pytest, mypy (strict), hatchling build, py.typed. | | py-cli | cli | Everything in py-lib plus an argparse entry point wired as a console script. |

Options

--name <name>            Distribution name (or a positional, in either slot)
--description <text>
--author "<name> <email>"
--license <MIT|Apache-2.0|ISC|none>   (default: MIT)
--python <3.x>           Minimum Python version (default: 3.11)
--target <library|cli|worker|service>
--release <none|pypi>    PyPI Trusted-Publishing (OIDC) release workflow (default: none)
--no-typecheck           Skip the mypy config + dev dependency
--here                   Scaffold into the current directory
--no-git                 Skip initializing a git repository
--force                  Overwrite existing files

Where it fits

create-packkit-py is a separate package, not a fork of create-packkit's core — Packkit stays JS/TS-focused, and Python lives in its own sibling. The two are composed at the edges: the shared packkit-mcp server can front both, and the browser configurator can host both engines.

Roadmap: uv/Poetry/PDM choice · Apache-2.0 · ruff/mypy config knobs · web configurator + MCP wiring · baseline-aware upgrade.

Requirements

Node.js >= 20 to run the generator.

License

MIT © DanMat