{"id":18859267,"url":"https://github.com/callocgd/robdantic","last_synced_at":"2026-02-14T14:33:44.459Z","repository":{"id":254028370,"uuid":"845268929","full_name":"CallocGD/Robdantic","owner":"CallocGD","description":"A BaseModel implementation for Geometry Dash Responses","archived":false,"fork":false,"pushed_at":"2024-08-21T00:01:04.000Z","size":11,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-08T14:55:43.787Z","etag":null,"topics":["deserialization","geometry-dash","models","pydantic-models","pydantic-v2","python","serlizable"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"wtfpl","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CallocGD.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-08-20T23:25:35.000Z","updated_at":"2024-12-02T16:54:53.000Z","dependencies_parsed_at":"2024-08-21T01:26:23.425Z","dependency_job_id":null,"html_url":"https://github.com/CallocGD/Robdantic","commit_stats":null,"previous_names":["callocgd/robdantic"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CallocGD/Robdantic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CallocGD%2FRobdantic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CallocGD%2FRobdantic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CallocGD%2FRobdantic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CallocGD%2FRobdantic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CallocGD","download_url":"https://codeload.github.com/CallocGD/Robdantic/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CallocGD%2FRobdantic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29447281,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T14:10:32.461Z","status":"ssl_error","status_checked_at":"2026-02-14T14:09:49.945Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["deserialization","geometry-dash","models","pydantic-models","pydantic-v2","python","serlizable"],"created_at":"2024-11-08T04:17:04.898Z","updated_at":"2026-02-14T14:33:44.442Z","avatar_url":"https://github.com/CallocGD.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Robdantic\nA Pydantic dataclass BaseModel for decoding/encoding Geometry Dash Robtop Strings. \nThis is part of a planned replacement library for gdpy whith better functionality \nalong with a greater lifespan although everything is currently in it's concept phase\nand may require a few more things but for the most part you can copy and paste the code until \nI can get around to uploading this to pypi.\n\n## Examples\n```python\n# Note: Field is different from a Pydantic field\nfrom robdantic import RobtopModel, Field\n\nclass SimpleModel(RobtopModel):\n    x: int = Field(key=1)\n    y: int = Field(key=2)\n\nmodel = SimpleModel.from_robtop(b\"1~10~2~699\", splitter=b\"~\")\nprint((model.x, model.y))\n```\n\n\n```python\n# Robdantic can also take splitter parameters as a subclass argument.\nclass NameModel(RobtopModel, split=b\":\"):\n    name:str = Field(key=1)\n\nmodel = NameModel.from_robtop(b\"1:john doe\")\nassert model.name == \"john doe\"\n# re-encode the model to bytes format\nprint(model.to_robtop())\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcallocgd%2Frobdantic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcallocgd%2Frobdantic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcallocgd%2Frobdantic/lists"}