{"id":18850015,"url":"https://github.com/sahandevs/cell-script","last_synced_at":"2026-02-03T06:30:17.275Z","repository":{"id":38388238,"uuid":"460430617","full_name":"sahandevs/cell-script","owner":"sahandevs","description":"A programming language for generating tabular data","archived":false,"fork":false,"pushed_at":"2022-09-09T11:55:10.000Z","size":58,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-12-30T15:36:41.445Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/sahandevs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-02-17T12:41:53.000Z","updated_at":"2023-03-08T15:26:27.000Z","dependencies_parsed_at":"2022-08-25T06:01:36.416Z","dependency_job_id":null,"html_url":"https://github.com/sahandevs/cell-script","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sahandevs%2Fcell-script","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sahandevs%2Fcell-script/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sahandevs%2Fcell-script/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sahandevs%2Fcell-script/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sahandevs","download_url":"https://codeload.github.com/sahandevs/cell-script/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239786251,"owners_count":19696772,"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":"2024-11-08T03:27:18.200Z","updated_at":"2026-02-03T06:30:17.246Z","avatar_url":"https://github.com/sahandevs.png","language":"Rust","readme":"### Example\n\n```\n# Title: Example 1\n\nparam math_score;\nparam physics_score;\nparam data_structure_score;\n\n\ncell math:\n  math_score * 3\n;\n\ncell physics:\n  physics_score * 3\n;\n\ncell data_structure:\n  data_structure_score * 2\n;\n\ncell total:\n   math + physics + data_structure\n;\n```\n\n```sh\n./cell-script app.cell \\\n   --param \"math_score=10,11,13\" \\\n   --param \"physics_score=15\" \\\n   --param \"data_structure_score=15\" \\\n   --query \"total\" \\\n   --format \"json\"\n```\n\n```json\n[\n  {\n    \"input\": {\n      \"math_score\": 10,\n      \"physics_score\": 15,\n      \"data_structure_score\": 15\n    },\n    \"output\": {\n      \"total\": 105\n    }\n  },\n  {\n    \"input\": {\n      \"math_score\": 11,\n      \"physics_score\": 15,\n      \"data_structure_score\": 15\n    },\n    \"output\": {\n      \"total\": 109\n    }\n  },\n  {\n    \"input\": {\n      \"math_score\": 11,\n      \"physics_score\": 15,\n      \"data_structure_score\": 15\n    },\n    \"output\": {\n      \"total\": 113\n    }\n  }\n]\n```\n\n### Grammar\n\n```\nS: (Param | Cell)*\n\nParam: PARAM Ident SemiColon\n\nCell: CELL Ident Colon Exp SemiColon\n\nExpr:\n    | ParOpen Expr ParClose\n    | Expr Plus Expr\n    | Expr Sub Expr\n    | Expr Mul Expr\n    | Expr Div Expr\n    | Atom\n\nAtom:\n    | Number\n    | Ident\n\n```\n\n### Roadmap\n\n- [x] scanner\n- [x] parser\n- [x] AST interpreter\n- [x] detect cyclic dependency\n- [x] CLI\n- [x] multi-threaded\n- [ ] Bytecode\n- [ ] ByteCode interpreter\n- [ ] Compiler / CodeGen (LLVM)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsahandevs%2Fcell-script","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsahandevs%2Fcell-script","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsahandevs%2Fcell-script/lists"}