{"id":20456805,"url":"https://github.com/niyarin/gorgos","last_synced_at":"2026-02-22T22:45:14.306Z","repository":{"id":194908782,"uuid":"312810553","full_name":"niyarin/gorgos","owner":"niyarin","description":"[WIP] Parser combinator for Scheme.","archived":false,"fork":false,"pushed_at":"2021-09-25T03:42:19.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-05T10:39:13.413Z","etag":null,"topics":["parser-combinator","scheme"],"latest_commit_sha":null,"homepage":"","language":"Scheme","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/niyarin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2020-11-14T12:15:44.000Z","updated_at":"2021-09-25T03:42:21.000Z","dependencies_parsed_at":"2023-09-15T18:36:30.416Z","dependency_job_id":null,"html_url":"https://github.com/niyarin/gorgos","commit_stats":null,"previous_names":["niyarin/gorgos"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/niyarin/gorgos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niyarin%2Fgorgos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niyarin%2Fgorgos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niyarin%2Fgorgos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niyarin%2Fgorgos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/niyarin","download_url":"https://codeload.github.com/niyarin/gorgos/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niyarin%2Fgorgos/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281890670,"owners_count":26579164,"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","status":"online","status_checked_at":"2025-10-30T02:00:06.501Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["parser-combinator","scheme"],"created_at":"2024-11-15T11:24:12.602Z","updated_at":"2025-10-30T22:11:31.856Z","avatar_url":"https://github.com/niyarin.png","language":"Scheme","readme":"# Gorgos\n[WIP] Parser combinator for Scheme.\n\nThis library is in the alpha version and will undergo breaking changes in the future.\n\n## examples\nThis is an example of an unsinged integer parser.\n\nIn Gorgos, you can use (scheme charset).\n```scheme\n(define unsigned-integer-parser\n   (gconv (gpair (gcharset char-set:digit)\n                 (glist-of (gcharset char-set:digit)))\n          (lambda (x) (string-\u003enumber (list-\u003estring x)))))\n```\n\n\nThis is an example of creating an integer-parser using the previous unsigned-integer.\n```scheme\n(define integer-parser\n   (gconv (gpair (goptional (gchar #\\-))\n                 unsigned-integer-parser)\n          (lambda (x)\n             (if (null? (car x)) (cdr x) (- (cdr x))))))\n```\nSee the examples directory for details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fniyarin%2Fgorgos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fniyarin%2Fgorgos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fniyarin%2Fgorgos/lists"}