objectron


Nameobjectron JSON
Version 1.0.5 PyPI version JSON
download
home_pagehttps://github.com/kairos-xx/objectron
SummaryA powerful Python package for transforming and tracking object references
upload_time2025-01-11 04:57:22
maintainerNone
docs_urlNone
authorJoao Lopes
requires_python>=3.11
licenseMIT License Copyright (c) 2024 kairos Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords object transformation tracking proxy
VCS
bugtrack_url
requirements pytest pytest rich replit black flake8 build requests toml pyyaml coverage pytest-cov tree-interval pyparsing
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
<div align="center">

<h1>Objectron</h1>
<img src="https://github.com/kairos-xx/objectron/raw/main/resources/icon_raster.png" alt="Objectron Logo" width="150"/>
<p><em>Advanced Python object transformation system with dynamic monitoring and deep reference management.</em></p>

  <a href="https://replit.com/@kairos/objectron">
    <img src="https://github.com/kairos-xx/objectron/raw/main/resources/replit.png" alt="Try it on Replit" width="150"/>
  </a>
</div>

## ✨ Features

- 🎯 **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

## 📦 Quick Start

```python
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
```

## 📖 Documentation

See our [Documentation Wiki](https://github.com/kairos-xx/objectron/wiki) for:
- Complete API Reference
- Usage Examples
- Implementation Details
- Best Practices

## 🤝 Contributing

Contributions welcome! Please submit a Pull Request.

## 📄 License

MIT License - see [LICENSE](LICENSE) file

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/kairos-xx/objectron",
    "name": "objectron",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "object, transformation, tracking, proxy",
    "author": "Joao Lopes",
    "author_email": "Joao Lopes <joaoslopes@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/c2/0b/28a2bfcc0df5742e33ca7512d2059e6721138ba671e62062ae5786453035/objectron-1.0.5.tar.gz",
    "platform": null,
    "description": "\n<div align=\"center\">\n\n<h1>Objectron</h1>\n<img src=\"https://github.com/kairos-xx/objectron/raw/main/resources/icon_raster.png\" alt=\"Objectron Logo\" width=\"150\"/>\n<p><em>Advanced Python object transformation system with dynamic monitoring and deep reference management.</em></p>\n\n  <a href=\"https://replit.com/@kairos/objectron\">\n    <img src=\"https://github.com/kairos-xx/objectron/raw/main/resources/replit.png\" alt=\"Try it on Replit\" width=\"150\"/>\n  </a>\n</div>\n\n## \u2728 Features\n\n- \ud83c\udfaf **Smart Access** - Transparent attribute access, dynamic creation, and path-based traversal\n- \ud83d\udd04 **Deep Monitoring** - Comprehensive method and attribute tracking\n- \ud83d\udee0 **Type Coverage** - Full support for built-in and custom types\n- \ud83d\udd0d **Reference Control** - Automatic tracking with circular reference handling\n- \ud83c\udfa8 **Flexible Syntax** - Mix attribute and path-based access patterns\n\n## \ud83d\udce6 Quick Start\n\n```python\nfrom objectron import Objectron\n\n# Transform objects\nobjectron = Objectron()\nconfig = objectron.transform({})\n\n# Dynamic attribute creation\nconfig.database.host = \"0.0.0.0\"\nconfig.database.port = 5432\n\n# Path-based access\nconfig[\"database.credentials.user\"] = \"admin\"\n\nprint(config.database.host)          # \"0.0.0.0\"\nprint(config[\"database.port\"])       # 5432\n```\n\n## \ud83d\udcd6 Documentation\n\nSee our [Documentation Wiki](https://github.com/kairos-xx/objectron/wiki) for:\n- Complete API Reference\n- Usage Examples\n- Implementation Details\n- Best Practices\n\n## \ud83e\udd1d Contributing\n\nContributions welcome! Please submit a Pull Request.\n\n## \ud83d\udcc4 License\n\nMIT License - see [LICENSE](LICENSE) file\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 kairos  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "A powerful Python package for transforming and tracking object references",
    "version": "1.0.5",
    "project_urls": {
        "Homepage": "https://github.com/kairos-xx/objectron",
        "Repository": "https://github.com/kairos-xx/objectron.git"
    },
    "split_keywords": [
        "object",
        " transformation",
        " tracking",
        " proxy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "332b04c3e7beb68228b3d85d0395a75ef0ccc31072f38cd0c99b0060031ee275",
                "md5": "49e3d8c163db40e7e7041983a760911b",
                "sha256": "6a9023bf877674108096095a70aadbadcc2a3ff5bf4522b042ddad834487f720"
            },
            "downloads": -1,
            "filename": "objectron-1.0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "49e3d8c163db40e7e7041983a760911b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 15373,
            "upload_time": "2025-01-11T04:57:21",
            "upload_time_iso_8601": "2025-01-11T04:57:21.319690Z",
            "url": "https://files.pythonhosted.org/packages/33/2b/04c3e7beb68228b3d85d0395a75ef0ccc31072f38cd0c99b0060031ee275/objectron-1.0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c20b28a2bfcc0df5742e33ca7512d2059e6721138ba671e62062ae5786453035",
                "md5": "b897ebebf63d0c1cd0132b7f5eda3c75",
                "sha256": "1c69af9e6113ae0c3a9ecba15011efec890ef628708ff78bd93064f51c8fe326"
            },
            "downloads": -1,
            "filename": "objectron-1.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "b897ebebf63d0c1cd0132b7f5eda3c75",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 18692,
            "upload_time": "2025-01-11T04:57:22",
            "upload_time_iso_8601": "2025-01-11T04:57:22.297071Z",
            "url": "https://files.pythonhosted.org/packages/c2/0b/28a2bfcc0df5742e33ca7512d2059e6721138ba671e62062ae5786453035/objectron-1.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-11 04:57:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kairos-xx",
    "github_project": "objectron",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "pytest",
            "specs": [
                [
                    ">=",
                    "7.0.0"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": []
        },
        {
            "name": "rich",
            "specs": []
        },
        {
            "name": "replit",
            "specs": [
                [
                    "==",
                    "4.1.0"
                ]
            ]
        },
        {
            "name": "black",
            "specs": []
        },
        {
            "name": "flake8",
            "specs": []
        },
        {
            "name": "build",
            "specs": []
        },
        {
            "name": "requests",
            "specs": []
        },
        {
            "name": "toml",
            "specs": []
        },
        {
            "name": "pyyaml",
            "specs": []
        },
        {
            "name": "coverage",
            "specs": [
                [
                    "==",
                    "7.3.2"
                ]
            ]
        },
        {
            "name": "pytest-cov",
            "specs": [
                [
                    "==",
                    "4.1.0"
                ]
            ]
        },
        {
            "name": "tree-interval",
            "specs": []
        },
        {
            "name": "pyparsing",
            "specs": [
                [
                    "==",
                    "3.2.0"
                ]
            ]
        }
    ],
    "lcname": "objectron"
}
        
Elapsed time: 1.70560s