--- id: pyperplan version: "2.1" license: GPL3+ license_treatment: copyleft maintenance: active --- # pyperplan — A lightweight STRIPS planner written in Python. License: copyleft · Maintenance: active · Downloads: 114.0K/mo ## What it is and what it does Pyperplan is a classical planning engine that takes PDDL (Planning Domain Definition Language) specifications and computes sequences of actions to solve planning problems. It was originally developed as a teaching tool at a university planning course and deliberately prioritizes clean, understandable code over raw performance. The planner supports STRIPS (Simplified Planning Domain Representation Language) without action costs and can be invoked from the command line with a domain file and a problem file, optionally using different search algorithms and heuristics like greedy best-first search with the FF heuristic. The package is suitable for educational use, prototyping, and research contexts where clarity and extensibility matter more than state-of-the-art speed. It runs on Python 3.6 and later, has minimal dependencies (only wheel), and is actively maintained. The authors explicitly caution that Pyperplan does not offer competitive performance for production planning tasks, making it most valuable for learning how planning algorithms work or for small-scale experimental work. Use it for: - Teaching classical planning algorithms and STRIPS semantics in an AI or computer science course. - Prototyping planning solutions for academic papers or research projects before moving to optimized solvers. - Extending the planner with custom heuristics or search strategies for experimental work. - Solving small to medium PDDL planning problems where execution speed is not a constraint. - Understanding how domain and problem specifications map to action sequences in planning. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Pyperplan is a lightweight STRIPS planner that solves classical planning problems by reading PDDL domain and problem files and computing action sequences to reach a goal state. Yes, if you are learning planning, doing research, or prototyping. The low install friction, active maintenance, and clean codebase make it ideal for education and experimentation. No, if you need production-grade performance or are solving large-scale planning problems—the authors explicitly warn against using Pyperplan for performance-critical work. The GPLv3+ license is permissive for academic and open-source use but restricts proprietary applications. ## Install pip install pyperplan uv add pyperplan poetry add pyperplan ## Installing pyperplan Before you install: Installation is straightforward with low friction—a single wheel dependency. The project is actively maintained with a recent commit on 2026-06-16, though the latest release was 2022-01-17, so updates may be infrequent. License in practice: Pyperplan is licensed under GPLv3+, a copyleft license. Any derivative work or distribution must also be open source under compatible terms; proprietary use or closed-source integration is not permitted. Quickstart: pip install pyperplan pyperplan benchmarks/tpp/domain.pddl benchmarks/tpp/task01.pddl # For heuristic search: pyperplan -H hff -s gbf domain.pddl problem.pddl Requires Python >= 3.6. PDDL domain and problem files must be provided; the planner does not generate plans from natural language or other input formats. Verify before relying: - Whether the planner's performance is suitable for problems beyond teaching or prototyping contexts. - Availability and quality of documentation beyond the brief README guidance. ## Package facts - License: GPL3+ (copyleft) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 114.0K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags STRIPS planner, PDDL solver, classical planning, automated planning, action sequence planning, AI planning tool, domain problem solver, planning-algorithms, educational-tool, pddl [View on SkillFed](https://skillfed.io/packages/pyperplan) · [View on PyPI](https://pypi.org/project/pyperplan/)