--- id: plette version: "2.2.1" license: ISC License license_treatment: permissive maintenance: active --- # plette — Structured Pipfile and Pipfile.lock models. License: permissive · Maintenance: active · Downloads: 174.1K/mo ## What it is and what it does Plette is a library for working with Pipfile and Pipfile.lock files—the dependency manifests used by pipenv—in a structured, programmatic way. It provides parsers to read these files into Python objects and generators to write them back out, so you can inspect, modify, or create dependency specifications without manual string manipulation. The library depends only on tomlkit for TOML handling, keeping the install footprint small. The package is actively maintained and supports Python 3.7 through 3.10. It carries an ISC License, which is permissive. An optional validation feature is available if you need stricter checking of Pipfile structure, though the fact sheet does not detail what that entails. Use it for: - Parse an existing Pipfile or Pipfile.lock to programmatically inspect or audit package dependencies. - Generate or modify Pipfile entries from within a tool or script that manages Python environments. - Build dependency-management automation that reads and writes pipenv configuration files. - Validate Pipfile structure before committing or deploying it to ensure correctness. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Plette provides structured parsers and generators for Pipfile and Pipfile.lock, letting you read, manipulate, and write these dependency files programmatically. Yes, if you need to work with Pipfile or Pipfile.lock files programmatically. Low install friction, permissive license, active maintenance, and no known vulnerabilities make it a safe choice. The Planning classifier is a minor signal of early-stage status, but the repo is actively maintained and the API is stable enough for practical use. ## Install pip install plette uv add plette poetry add plette ## Installing plette Before you install: Low friction: pure Python wheel with a single runtime dependency (tomlkit). Actively maintained with recent commits; marked as Planning status in classifiers but repo is not archived and receives updates. License in practice: ISC License is permissive, allowing commercial and private use with minimal restrictions—suitable for most projects. Quickstart: pip install plette from plette.models import Pipfile pipfile = Pipfile.load('Pipfile') print(pipfile.packages) Requires Python 3.7 or later. Verify before relying: - Whether validation feature (optional extra) requires additional dependencies beyond what the fact sheet lists. - Specific API stability guarantees or breaking-change policy for a Planning-status package. ## Package facts - License: ISC License (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 174.1K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags pipfile parser, pipfile.lock handling, dependency file management, pipenv file structure, structured pipfile models, pipfile validation, dependency lock file parsing, pipenv, dependency-management, toml-parsing [View on SkillFed](https://skillfed.io/packages/plette) · [View on PyPI](https://pypi.org/project/plette/)