{"id":28214084,"url":"https://github.com/vzool/camelx","last_synced_at":"2025-06-11T20:30:47.961Z","repository":{"id":250244074,"uuid":"833912626","full_name":"vzool/camelX","owner":"vzool","description":"Python serialization for adults","archived":false,"fork":false,"pushed_at":"2024-07-29T03:05:57.000Z","size":73,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-17T20:12:12.599Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pypi.org/project/camelx/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vzool.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-26T03:06:09.000Z","updated_at":"2024-07-29T03:01:09.000Z","dependencies_parsed_at":"2024-07-29T03:03:03.220Z","dependency_job_id":null,"html_url":"https://github.com/vzool/camelX","commit_stats":null,"previous_names":["vzool/camelx"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/vzool/camelX","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vzool%2FcamelX","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vzool%2FcamelX/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vzool%2FcamelX/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vzool%2FcamelX/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vzool","download_url":"https://codeload.github.com/vzool/camelX/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vzool%2FcamelX/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259334608,"owners_count":22842466,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-05-17T20:12:12.895Z","updated_at":"2025-06-11T20:30:47.954Z","avatar_url":"https://github.com/vzool.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"**This fork from \"[eevee/camel](https://github.com/eevee/camel)\" aims to maintain and potentially enhance the library, the original project has been inactive for years.**\n\nCamelX\n=====\n\nCamelX is a library that lets you describe how to serialize your objects to\nYAML — and refuses to serialize them if you don't.\n\nIf you are interested in contributing, please submit pull requests.\n\nQuick example:\n\n```python\n\n    from camelx import Camel, CamelRegistry\n\n    class DieRoll(tuple):\n        def __new__(cls, a, b):\n            return tuple.__new__(cls, [a, b])\n\n        def __repr__(self):\n            return \"DieRoll(%s,%s)\" % self\n\n    reg = CamelRegistry()\n\n    @reg.dumper(DieRoll, u'roll', version=None)\n    def _dump_dice(data):\n        return u\"{}d{}\".format(*data)\n\n    @reg.loader(u'roll', version=None)\n    def _load_dice(data, version):\n        a, _, b = data.partition(u'd')\n        return DieRoll(int(a), int(b))\n\n    value = DieRoll(3, 6)\n    camel = Camel([reg])\n    print(camel.dump(value))\n\n    # !roll 3d6\n    # ...\n```\n\nDocs: http://camel.readthedocs.org/en/latest/\n\nGitHub: https://github.com/eevee/camel\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvzool%2Fcamelx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvzool%2Fcamelx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvzool%2Fcamelx/lists"}