{"id":18878812,"url":"https://github.com/rwanyoike/csvblend-python-library","last_synced_at":"2026-01-27T04:03:07.947Z","repository":{"id":62565728,"uuid":"234951912","full_name":"rwanyoike/csvblend-python-library","owner":"rwanyoike","description":"🖇 Join or merge multiple CSVs on a list of columns efficiently","archived":false,"fork":false,"pushed_at":"2024-10-07T18:54:33.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-07T11:27:37.249Z","etag":null,"topics":["csv","python","python-library","sqlite3"],"latest_commit_sha":null,"homepage":"","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/rwanyoike.png","metadata":{"files":{"readme":"README.md","changelog":"HISTORY.md","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":"2020-01-19T19:17:12.000Z","updated_at":"2024-10-07T18:54:37.000Z","dependencies_parsed_at":"2024-12-31T02:42:24.191Z","dependency_job_id":null,"html_url":"https://github.com/rwanyoike/csvblend-python-library","commit_stats":null,"previous_names":["rwanyoike/csvblend"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/rwanyoike/csvblend-python-library","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rwanyoike%2Fcsvblend-python-library","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rwanyoike%2Fcsvblend-python-library/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rwanyoike%2Fcsvblend-python-library/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rwanyoike%2Fcsvblend-python-library/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rwanyoike","download_url":"https://codeload.github.com/rwanyoike/csvblend-python-library/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rwanyoike%2Fcsvblend-python-library/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28800933,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T03:44:14.111Z","status":"ssl_error","status_checked_at":"2026-01-27T03:43:33.507Z","response_time":168,"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":["csv","python","python-library","sqlite3"],"created_at":"2024-11-08T06:30:16.834Z","updated_at":"2026-01-27T04:03:07.932Z","avatar_url":"https://github.com/rwanyoike.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# csvblend: Python CSV Merge Library\n\n[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/rwanyoike/csvblend-python-library/python-package.yml?branch=main)\n](https://github.com/rwanyoike/csvblend-python-library/actions/workflows/python-package.yml?query=branch%3Amain)\n[![GitHub License](https://img.shields.io/github/license/rwanyoike/csvblend-python-library)\n](LICENSE.txt)\n[![PyPI - Version](https://img.shields.io/pypi/v/csvblend)\n](https://pypi.org/project/csvblend)\n\n\u003e Join or merge multiple CSVs.\n\ncsvblend is a Python library to merge multiple CSVs based on a list of columns efficiently.\n\nNOTE: csvblend requires SQLite version 3.24.0 (2018-06-04) or better:\n\n```shell\npython -c 'import sqlite3; print(sqlite3.sqlite_version)'\n```\n\nBasic merge usage:\n\n```python\n\u003e\u003e\u003e from csvblend import MergeFiles\n\u003e\u003e\u003e columns = [\"field1\", \"field2\", \"field3\"]\n\u003e\u003e\u003e indexes = [\"field1\"]\n\u003e\u003e\u003e with MergeFiles(columns, indexes) as mf:\n...     with open(\"csvfile1\") as fp:\n...         mf.merge(fp)\n...     with open(\"csvfile2\") as fp:\n...         mf.merge(fp)\n...     with open(\"csvfile3\") as fp:\n...         mf.merge(fp)\n...     for row in mf.rows():\n...         print(row)\n```\n\n[Features](#features) | [Installation](#installation) | [Usage](#usage) | [Contributing](#contributing) | [License](#license)\n\n## Features\n\n- [SQLite](https://www.sqlite.org) (RDBMS) under the hood.\n- Affected row count (created or updated) -- show changes between CSVs.\n- No external dependencies.\n\ncsvblend officially supports Python 3.8+.\n\n## Installation\n\nTo install csvblend, simply run:\n\n```shell\n$ pip install -U csvblend\n✨🖇✨\n```\n\n## Usage\n\nFor documentation, see [`./docs/README.md`](./docs/README.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frwanyoike%2Fcsvblend-python-library","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frwanyoike%2Fcsvblend-python-library","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frwanyoike%2Fcsvblend-python-library/lists"}