--- id: property-manager version: "3.0" license: MIT license_treatment: permissive maintenance: abandoned --- # property-manager — Useful property variants for Python programming (required properties, writable properties, cached properties, etc) License: permissive · Maintenance: abandoned · Downloads: 395.9K/mo ## What it is and what it does property-manager defines a collection of custom property decorators that extend Python's built-in property to handle common patterns: required properties that enforce initialization, writable properties with computed defaults that can be overridden, cached properties that compute once and cache the result, and lazy properties that cache but cannot be invalidated. It also includes a PropertyManager base class that coordinates these properties during object construction and provides environment-variable-based property values. The package originated as a submodule of the executor package and was extracted into its own project to avoid unnecessary dependencies. It is currently tested on Python 2.7, 3.5, 3.6, 3.7, 3.8 and PyPy. The two runtime dependencies (humanfriendly and verboselogs) are lightweight utilities for string formatting and logging. Use it for: - Define class properties with computed defaults that can be overridden without losing the ability to recompute. - Create required properties that raise an exception if not provided during object initialization. - Cache expensive computations per instance and invalidate them on demand when the underlying data changes. - Build configuration classes where properties can read from environment variables as fallbacks. - Implement lazy initialization patterns where property values are computed only when first accessed. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides custom Python property decorators for defining required properties, writable properties with computed defaults, and cached properties that compute values on demand. No. The package is abandoned (last release 2020-03-02) with no active maintenance or security updates. While it has low install friction and a permissive MIT license, the lack of maintenance makes it a poor choice for new projects. Modern Python alternatives or the standard library may be safer bets. ## Install pip install property-manager uv add property-manager poetry add property-manager ## Installing property-manager Before you install: Low install friction with only two runtime dependencies (humanfriendly and verboselogs). However, the package is abandoned—last release was 2020-03-02, over 2356 days ago. No active maintenance or security updates. License in practice: MIT license is permissive, allowing use in commercial and private projects with minimal restrictions. No licensing concerns for adoption. Quickstart: pip install property-manager from property_manager import writable_property, cached_property class Example(object): @writable_property def computed_value(self): return 42 @cached_property def expensive_value(self): return some_calculation() Package is abandoned and last tested on Python 2.7, 3.5, 3.6, 3.7, 3.8 and PyPy; compatibility with newer Python versions is unverified. Verify before relying: - Whether the package works reliably on Python versions beyond those listed in the description. - Whether humanfriendly and verboselogs dependencies have known security issues or compatibility problems. - Real-world usage frequency and whether the decorator patterns it provides are still the best approach in modern Python. ## Package facts - License: MIT (permissive) - Python support: supports_current - Install friction: low - Maintenance: abandoned - Downloads: 395.9K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags python property decorators, cached properties, required properties, writable properties with defaults, lazy property evaluation, computed property values, property management utilities, property-decorators, abandoned [View on SkillFed](https://skillfed.io/packages/property-manager) · [View on PyPI](https://pypi.org/project/property-manager/)