- 🎯 Smart Access - Transparent attribute access, dynamic creation, and path-based traversal
- 🔄 Deep Monitoring - Comprehensive method and attribute tracking
- 🛠 Type Coverage - Full support for built-in and custom types
- 🔍 Reference Control - Automatic tracking with circular reference handling
- 🎨 Flexible Syntax - Mix attribute and path-based access patterns
from objectron import Objectron
# Transform objects
objectron = Objectron()
config = objectron.transform({})
# Dynamic attribute creation
config.database.host = "0.0.0.0"
config.database.port = 5432
# Path-based access
config["database.credentials.user"] = "admin"
print(config.database.host) # "0.0.0.0"
print(config["database.port"]) # 5432
pip install objectron
See our Documentation Wiki for:
- Complete API Reference
- Usage Examples
- Implementation Details
- Best Practices
Contributions welcome! Please submit a Pull Request.
MIT License - see LICENSE file