Minimal, spiritual fork of projen. No JSII. Python focused.
Project description
pyprojen
A minimal, Python-centric port of projen.
Overview
Project templates are great... except that they promote "code duplication at scale" and all the technical debt that come with that.
projen (the tool this project is based on) represents a new generation of project template tools. projen helps you manage the "day 2 problem" for project templates, to avoid "template drift".
projen also helps you treat project configuration as an abstraction, whose implementation details can be changed/improved, without disrupting the developer workflow. Elad Ben-Israel, creator of projen, AWS CDK, and Winglang gave a talk on this at CDK day 2020.
- ⚡️ Agility. Centrally push unit-tested updates to all existing projects created from your templates in minutes, not months.
- 🧱 Modularity. Define composable, parameterized "components" that you can add/remove from your project as needed.
Real Examples
pyprojen is a minimal port of projen's core functionality to Python.
Specifically, it gets you
- ⚡️ Agility
- Examples:
- 10x the speed of CI for all repos overnight by making CI steps run in parallel instead of serially
- Update a team linting rule in
pyproject.toml,ruff.toml, etc. - Add auth steps to publish to or install from a private PyPI registry in CI or
Dockerfiles - Completely change CI systems with minimal disruption, e.g. switch from Bitbucket Pipelines to GitHub Actions to AWS CodeBuild and back
- 🧱 Modularity
- Examples:
- define an opinionated
PythonPackagecomponent, and - layer on top a
FastAPIApp,StreamlitApp,CdkApp,PulumiApp,AirflowDag,DagsterDag,BentoMLService,AwsLambdaPythonFunction,- etc.
- Add (or remove) as many of these to your repo as you like, whenever you like, and find these packages instantly set up with CI, linting, formatting, tests, packaging, publishing, deploying, etc.
- For example, you might incrementally develop a "mini data science app monorepo" with
- a
MetaflowDagthat trains a model - served in a
FastAPIapp - which you can interact with via a
Streamlitapp - both of which are deployed by an
AwdCdkapp
- a
- all of these components would ideally be instantly set up with CI, linting, formatting, testing, packaging, publishing, deployment, etc. the moment they are added. And "un set up" with those if they are removed.
- For example, you might incrementally develop a "mini data science app monorepo" with
- define an opinionated
Q&A
How does
(py)projencompare tocopierorcookiecutter?
Click to expand
copier is a reaction to cookiecutter, built to allow template updates to be propagated to existing projects.
-
Migration. The migration process for
(py)projenis a single CLI command (python .pyprojenrc.py). Whereas the migration process forcopieris a bit more manual and prone to errors. -
Composable components.
copieris more likecookiecutterin that it uses Jinja templates to generate a certain set of files.(py)projenlets you define re-usable components. You can add arbitrary numbers of these components to your project with different parameters and remove them just as easily.
That said, although cookiecutter and copier are more limited, they are also simpler.
What is the difference between
pyprojenandprojen?
Click to expand
1. Fundamentally, projen offers a few things:
- A
Project,Component, andConstructabstraction that lets you define reusable components that you can push updates to. - Primitive components like
TextFile,YamlFile,JsonFile,MarkdownFile, etc. that you can compose to build "higher-level components". - A library of opinionated, higher-level components like
PythonProject,TypescriptProject,DockerCompose,GithubWorkflow, ... - An opinionated "task runner" system (think
Makefile/Justfile,poetryscripts, etc.) to define project-related commands. - A
projen newcommand which creates the initial.projenrc.pyconfig file for your project
2. pyprojen implements [1] and [2] from the list above (the unopinionated parts).
It is up to you to create your own components with your own opinions on things like
- when, if, and how to manage virtual environments, e.g.
uv,pip,conda, etc. - which linter/formatter to use, e.g.
ruff,pre-commit, etc. - how to structure single- and multi-package repos (monorepos) and CI for them
Coming from tools like cookiecutter or copier, many people/teams prefer than using off-the-shelf templates or components.
3. pyprojen is not a drop-in replacement for projen, but it tries to get close.
If you write components in Python using pyprojen, it should be easy to move them over to the projen Python bindings if you decide to.
Should I use
pyprojenorprojen?
Click to expand
TL;DR Bias towards projen, unless you
- Want a Python-first dev experience, and
- Prefer to fully-define your own project template/components rather than using projen's existing project templates, higher-level components, or task runner system
projen is a larger project and is primarily maintained by developers at AWS. projen,
But to develop with projen, you either need to write TypeScript, or use generated Python bindings that invoke TypeScript.
If you are familiar with writing AWS CDK in Python, developing with projen in Python is a similar experience, because they both use Python bindings generated from TypeScript using the JSII project.
This means:
- Not all internals of the original TS/JS code is exposed in the TS bindings, e.g. private attributes. You can unexectedly hit dead ends when attributes or methods that are available in TS are simply not available in Python.
- Step debugging is limited. The bindings are thin wrappers around a tool that invokes the original TypeScript/JavaScript code
- Errors raised by python bindings are cryptic and difficult to parse.
- Autocompletion is poor
- You need to have NodeJS installed on your system and in CI
- The JSII is a bit slow. (seconds not milliseconds)
📌 Since
projen's Python bindings andpyprojenhave a nearly identical API, you could switch toprojenif you want to join the larger TypeScript-based ecosystem.
Quick start (TODO)
[!NOTE] Until this section is filled out, you can refer to this repo to get a sense of what projen can do. And the official projen docs contain many of the same concepts that this port uses.
pip install pyprojen
from pyprojen import ...
Developing/Contributing
System requirements
You will need the following installed on your machine to develop on this codebase
makeAKAcmake, e.g.sudo apt-get update -y; sudo apt-get install cmake -y- Python 3.7+, ideally using
pyenvto easily change between Python versions git
# clone the repo
git clone https://github.com/<your github username>/pyprojen.git
# install the dev dependencies
make install
# run the tests
make test
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyprojen-0.0.4.tar.gz.
File metadata
- Download URL: pyprojen-0.0.4.tar.gz
- Upload date:
- Size: 27.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf6de0a82958f7ca07447a234dee2e8987134362b3551681c6f74c33cecb29d1
|
|
| MD5 |
3ff8b939a63f6076aedde9d535fbf7e6
|
|
| BLAKE2b-256 |
d5c1902ceca28ee98bd9a98cf226f3882d60672030d89e735ae6d2331c61394b
|
File details
Details for the file pyprojen-0.0.4-py3-none-any.whl.
File metadata
- Download URL: pyprojen-0.0.4-py3-none-any.whl
- Upload date:
- Size: 29.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd676f2dbefa260ea2d89ec49e820862f8eca81a2bcff3c10fbcb61cc3006d23
|
|
| MD5 |
8e336339bb2f6ed4a82416faaae49b70
|
|
| BLAKE2b-256 |
8e7641d071711cd6a276fcde5230bfefa053d8ba92910b549c162ab84b6bedb7
|