{"id":40796890,"url":"https://github.com/cxmeel/dump-parser","last_synced_at":"2026-01-21T20:23:57.744Z","repository":{"id":119711018,"uuid":"572690888","full_name":"cxmeel/dump-parser","owner":"cxmeel","description":"Parses data from the Roblox API dump","archived":false,"fork":false,"pushed_at":"2024-08-14T14:52:31.000Z","size":1193,"stargazers_count":7,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-08-14T16:24:33.728Z","etag":null,"topics":["api","conversion","data","luau","roblox","roblox-api","roblox-api-wrapper","roblox-lua","robloxdev","robloxlua","rojo","utility","wally"],"latest_commit_sha":null,"homepage":"https://csqrl.github.io/dump-parser/","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cxmeel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null},"funding":{"github":"csqrl"}},"created_at":"2022-11-30T20:28:16.000Z","updated_at":"2024-08-14T14:51:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"761305ab-9323-4e4c-9b38-8317c3f3819b","html_url":"https://github.com/cxmeel/dump-parser","commit_stats":null,"previous_names":["cxmeel/dump-parser"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/cxmeel/dump-parser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cxmeel%2Fdump-parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cxmeel%2Fdump-parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cxmeel%2Fdump-parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cxmeel%2Fdump-parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cxmeel","download_url":"https://codeload.github.com/cxmeel/dump-parser/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cxmeel%2Fdump-parser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28641544,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T18:04:35.752Z","status":"ssl_error","status_checked_at":"2026-01-21T18:03:55.054Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["api","conversion","data","luau","roblox","roblox-api","roblox-api-wrapper","roblox-lua","robloxdev","robloxlua","rojo","utility","wally"],"created_at":"2026-01-21T20:23:57.672Z","updated_at":"2026-01-21T20:23:57.726Z","avatar_url":"https://github.com/cxmeel.png","language":"Lua","readme":"# Dump Parser\n\nA generic parser for the Roblox API dump. Inspired by [@corecii](https://github.com/Corecii)'s\n[API Dump (Static)](https://github.com/corecii/api-dump-static) and\n[@raphtalia](https://github.com/raphtalia)'s [RobloxAPI](https://github.com/raphtalia/robloxapi)\nlibraries.\n\n## Documentation\n\nDocumentation can be found at https://csqrl.github.io/dump-parser.\n\n## Quick Start\n\nDump Parser is available via [Wally](https://wally.run).\n\n### Wally\n\n```toml\n# wally.toml\n\n[dependencies]\nDumpParser = \"csqrl/dump-parser@0.1.0\"\n```\n\n```bash\n$ wally install\n```\n\n### Manual Installation\n\nDownload a copy of the latest release from the GitHub repo,\nand compile it using Rojo. From there, you can drop the\nbinary directly into your project files or Roblox Studio.\n\n## Example Usage\n\n~~~lua\nlocal DumpParser = require(path.to.DumpParser)\nlocal Dump = DumpParser.fetchFromServer()\n\nlocal PartClass = Dump:GetClass(\"Part\")\n\n-- Get a list of all properties on \"Part\"\nprint(PartClass:GetProperties())\n\n--[[\n\tGet a list of safe-to-use properties on \"Part\". This is\n\tfunctionally equivalent to:\n\n\t```lua\n\tPartClass:GetProperties(\n\t\tFilter.Invert(Filter.Deprecated), -- Include non-deprecated\n\t\tFilter.HasSecurity(\"None\"), -- Include properties with no read/write security\n\t\tFilter.Scriptable -- Include properties that can be set in scripts\n\t)\n\t```\n\n\t`GetProperties`, `GetEvents`, `GetFunctions` and `GetCallbacks`\n\tall accept a variable number of filters as arguments. This\n\tallows you to filter down the list of results to only what\n\tyou need.\n--]]\nprint(Dump:GetProperties(\"Part\"))\n~~~\n","funding_links":["https://github.com/sponsors/csqrl"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcxmeel%2Fdump-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcxmeel%2Fdump-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcxmeel%2Fdump-parser/lists"}