{"id":13825421,"url":"https://github.com/hay/dataknead","last_synced_at":"2025-08-28T02:33:22.012Z","repository":{"id":29661745,"uuid":"121182024","full_name":"hay/dataknead","owner":"hay","description":"Effortless conversion between data formats like JSON, XML and CSV","archived":false,"fork":false,"pushed_at":"2022-05-16T18:01:53.000Z","size":609,"stargazers_count":120,"open_issues_count":8,"forks_count":12,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-30T16:12:45.002Z","etag":null,"topics":["csv","data-analysis","data-conversion","json","python","python3"],"latest_commit_sha":null,"homepage":"https://hay.github.io/dataknead/","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/hay.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}},"created_at":"2018-02-12T00:32:01.000Z","updated_at":"2025-01-07T02:36:02.000Z","dependencies_parsed_at":"2022-07-27T22:19:57.202Z","dependency_job_id":null,"html_url":"https://github.com/hay/dataknead","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hay%2Fdataknead","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hay%2Fdataknead/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hay%2Fdataknead/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hay%2Fdataknead/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hay","download_url":"https://codeload.github.com/hay/dataknead/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251703009,"owners_count":21630142,"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":["csv","data-analysis","data-conversion","json","python","python3"],"created_at":"2024-08-04T09:01:20.589Z","updated_at":"2025-04-30T12:44:16.388Z","avatar_url":"https://github.com/hay.png","language":"Python","funding_links":[],"categories":["Python","Conversion"],"sub_categories":[],"readme":"# dataknead\n**Fluent conversion between data formats like JSON, XML and CSV**\n\n[Read the docs](https://hay.github.io/dataknead/)\n\nEver sighed when you wrote code to convert CSV to JSON for the thousandth time?\n\n```python\nimport csv\nimport json\n\ndata = []\n\nwith open(\"cities.csv\") as f:\n    reader = csv.DictReader(f)\n\n    for row in reader:\n        data.append(row)\n\nwith open(\"cities.json\", \"w\") as f:\n    json.dump(data, f)\n```\n\nStop sighing and use `dataknead`. Fetch it with `pip`:\n\n```bash\n$ pip install dataknead\n```\n\nAnd use it like this:\n\n```python\nfrom dataknead import Knead\nKnead(\"cities.csv\").write(\"cities.json\")\n```\n\nOr make it even easier on the command line:\n\n```bash\nknead cities.csv cities.json\n```\n\n`dataknead` has inbuilt loaders for CSV, Excel, JSON, TOML and XML and you can easily write your own.\n\nPiqued your interest? [Read the docs!](https://hay.github.io/dataknead/).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhay%2Fdataknead","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhay%2Fdataknead","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhay%2Fdataknead/lists"}