{"id":31364387,"url":"https://github.com/loxewyx/norvelang","last_synced_at":"2026-05-02T17:33:06.461Z","repository":{"id":316575464,"uuid":"1060978274","full_name":"LoXewyX/Norvelang","owner":"LoXewyX","description":"Multi-Source Data Processing Language","archived":false,"fork":false,"pushed_at":"2025-09-25T12:28:28.000Z","size":193,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-25T12:29:13.404Z","etag":null,"topics":["csv","db","declarative","dsl-interpreter","excel","json","lark-parser","multiformat","pipeline","python-api","sqlite","sqlite3","xls","xlsx","xml"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/norve/","language":"Python","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/LoXewyX.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-21T01:38:30.000Z","updated_at":"2025-09-25T12:19:03.000Z","dependencies_parsed_at":"2025-09-25T12:29:23.378Z","dependency_job_id":null,"html_url":"https://github.com/LoXewyX/Norvelang","commit_stats":null,"previous_names":["loxewyx/norvelang"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/LoXewyX/Norvelang","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LoXewyX%2FNorvelang","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LoXewyX%2FNorvelang/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LoXewyX%2FNorvelang/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LoXewyX%2FNorvelang/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LoXewyX","download_url":"https://codeload.github.com/LoXewyX/Norvelang/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LoXewyX%2FNorvelang/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277194869,"owners_count":25777177,"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-09-27T02:00:08.978Z","response_time":73,"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":["csv","db","declarative","dsl-interpreter","excel","json","lark-parser","multiformat","pipeline","python-api","sqlite","sqlite3","xls","xlsx","xml"],"created_at":"2025-09-27T07:05:18.673Z","updated_at":"2026-05-02T17:33:06.454Z","avatar_url":"https://github.com/LoXewyX.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Norvelang\n\nMulti-Source Data Processing Language\n\n## Features\n- SQL-like pipelines for CSV, JSON, XML, SQLite, Excel\n- Robust join handling with automatic column disambiguation\n- Clean, extensible grammar\n- CLI and Python API for interactive and programmatic use\n\n## Quick Start\n\n```norvelang\ndata.csv | use name, age | where age \u003e 30\n```\n\n## Installation\n\n```powershell\nuv venv\n.venv\\Scripts\\activate\nuv pip install -r .\\requirements.txt\n```\n\n## Usage\n\n### Command Line\n```powershell\n# Run a sample file\npython -m norve samples/math.nv\n\n# Interactive REPL\npython -m norve\n\n# Use regular Lark parser (disable cython)\npython -m norve samples/queries.nv --no-lark-cython\n```\n\n### Python API\n```python\nimport norve\n\ndf = norve.execute_query('''data.csv | use name, age | limit 10''')\noutput = norve.execute_with_output('''data.csv | use name, age | limit 5''')\nvariables = {'my_table': 'users.csv'}\ndf = norve.execute_query('''let users = $my_table; $users | use name, age | limit 10''', variables=variables)\n```\n\n## Directory Structure\n\n```\nnorvelang/\n├── norve/              # Core language implementation\n│   ├── api/            # Python API\n│   ├── ast/            # AST definitions\n│   ├── error/          # Error handling\n│   ├── interpreter/    # Pipeline execution\n│   ├── transformer/    # AST transformation\n│   ├── grammar.lark    # Grammar definition\n│   └── *.py            # Core modules\n├── publish/            # Create new release on Github and PyPI\n├── samples/            # Example .nv files\n├── sample_data/        # Test data files\n├── tests/              # Unit tests\n├── requirements.txt    # Python dependencies\n└── README.md           # This file\n```\n\n## Running Tests\n\n```bash\ncd tests\npytest -v\n```\n\n## Sample Files\n- math.nv: Math and function demos\n- queries.nv, queries2.nv: Data processing examples\n- data_sources.nv: Multi-format data\n- errors.nv: Error handling\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floxewyx%2Fnorvelang","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Floxewyx%2Fnorvelang","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floxewyx%2Fnorvelang/lists"}