{"id":13469298,"url":"https://github.com/wq/django-data-wizard","last_synced_at":"2026-04-09T14:02:31.482Z","repository":{"id":22006114,"uuid":"25331283","full_name":"wq/django-data-wizard","owner":"wq","description":"🧙⚙️ Import structured data (e.g. Excel, CSV, XML, JSON) into one or more Django models via an interactive web-based wizard","archived":false,"fork":false,"pushed_at":"2024-02-12T19:43:36.000Z","size":2443,"stargazers_count":344,"open_issues_count":2,"forks_count":52,"subscribers_count":14,"default_branch":"main","last_synced_at":"2025-03-21T22:02:55.499Z","etag":null,"topics":["csv","data-import","django","excel","serialization","wizard"],"latest_commit_sha":null,"homepage":"https://django-data-wizard.wq.io","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/wq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"docs/support.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-10-17T01:26:45.000Z","updated_at":"2025-03-14T19:41:34.000Z","dependencies_parsed_at":"2024-06-18T22:57:59.760Z","dependency_job_id":"f7963728-d559-46c0-8bb4-101adcb4d8f8","html_url":"https://github.com/wq/django-data-wizard","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wq%2Fdjango-data-wizard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wq%2Fdjango-data-wizard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wq%2Fdjango-data-wizard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wq%2Fdjango-data-wizard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wq","download_url":"https://codeload.github.com/wq/django-data-wizard/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245604097,"owners_count":20642938,"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-import","django","excel","serialization","wizard"],"created_at":"2024-07-31T15:01:32.334Z","updated_at":"2025-12-13T18:34:24.817Z","avatar_url":"https://github.com/wq.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://django-data-wizard.wq.io\"\u003e\n    \u003cimg src=\"https://django-data-wizard.wq.io/images/django-data-wizard.svg\" alt=\"Django Data Wizard\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n[**Django Data Wizard**][Django Data Wizard] is an interactive tool for mapping tabular data (e.g. Excel, CSV, XML, JSON) into a normalized database structure via [Django REST Framework] and [IterTable].  Django Data Wizard allows novice users to map spreadsheet columns to serializer fields (and cell values to foreign keys) on-the-fly during the import process.  This reduces the need for preset spreadsheet formats, which most data import solutions require.\n\n[![Django Data Wizard Workflow](https://django-data-wizard.wq.io/images/screenshots/workflow.png)][workflow]\n\nThe Data Wizard supports straightforward one-to-one mappings from spreadsheet columns to database fields, as well as more complex scenarios like [natural keys] and [Entity-Attribute-Value] (or \"wide\") table mappings.\n\n[![Latest PyPI Release](https://img.shields.io/pypi/v/data-wizard.svg)](https://pypi.org/project/data-wizard)\n[![Release Notes](https://img.shields.io/github/release/wq/django-data-wizard.svg)](https://github.com/wq/django-data-wizard/releases)\n[![License](https://img.shields.io/pypi/l/data-wizard.svg)](https://github.com/wq/django-data-wizard/blob/master/LICENSE)\n[![GitHub Stars](https://img.shields.io/github/stars/wq/django-data-wizard.svg)](https://github.com/wq/django-data-wizard/stargazers)\n[![GitHub Forks](https://img.shields.io/github/forks/wq/django-data-wizard.svg)](https://github.com/wq/django-data-wizard/network)\n[![GitHub Issues](https://img.shields.io/github/issues/wq/django-data-wizard.svg)](https://github.com/wq/django-data-wizard/issues)\n\n[![Tests](https://github.com/wq/django-data-wizard/actions/workflows/test.yml/badge.svg)](https://github.com/wq/django-data-wizard/actions/workflows/test.yml)\n[![Python Support](https://img.shields.io/pypi/pyversions/data-wizard.svg)](https://pypi.org/project/data-wizard)\n[![Django Support](https://img.shields.io/pypi/djversions/data-wizard.svg)](https://pypi.org/project/data-wizard)\n\n### [Documentation]\n\nDjango Data Wizard provides a [web interface][workflow], [JSON API][api], and [CLI][cli] for specifying a [data source][sources] to import (e.g. a previously-uploaded file), selecting a [serializer][serializers], mapping the data [columns] and [identifiers][ids], and (asynchronously) importing the [data] into any target model in the database.\n\nData Wizard is designed to allow users to iteratively refine their data import flow.  For example, decisions made during an initial data import are preserved for future imports of files with the same structure.  The included [data model][models] makes this workflow possible. \n\n 1. **Getting Started**\n    * [Installation][installation]\n    * [Initial Configuration][initial-configuration]\n    * [**Target Model Registration (required)**][target-model-registration]\n    * [Usage][workflow]\n    * [wq Framework Integration (optional)][wq-setup]\n 2. **API Documentation**\n    * [Run API][api]\n    * [Admin Screens][admin]\n    * [Command-Line Interface][cli]\n 3. **Advanced Customization**\n    * [Django Settings][settings]\n    * [Data Model][models]\n    * [Custom Serializers][serializers]\n    * [Custom Data Sources][sources]\n    * [Custom Tasks][tasks]\n    * [Task Backends][backends]\n\n\n[Django Data Wizard]: https://django-data-wizard.wq.io/\n[IterTable]: https://django-data-wizard.wq.io/itertable/\n[Django REST Framework]: http://www.django-rest-framework.org/\n[natural keys]: https://github.com/wq/django-natural-keys\n[Entity-Attribute-Value]: https://wq.io/guides/eav-vs-relational\n\n[Documentation]: https://django-data-wizard.wq.io/\n\n[workflow]: https://django-data-wizard.wq.io/guides/using-django-data-wizard\n[api]: https://django-data-wizard.wq.io/api/\n[admin]: https://django-data-wizard.wq.io/api/admin\n[cli]: https://django-data-wizard.wq.io/api/cli\n\n[installation]: https://django-data-wizard.wq.io/overview/setup#installation\n[initial-configuration]: https://django-data-wizard.wq.io/overview/setup#initial-configuration\n[target-model-registration]: https://django-data-wizard.wq.io/overview/setup#target-model-registration\n[wq-setup]: https://django-data-wizard.wq.io/guides/integrate-with-wq-framework\n\n[sources]: https://django-data-wizard.wq.io/config/sources\n[serializers]: https://django-data-wizard.wq.io/config/serializers\n[columns]: https://django-data-wizard.wq.io/api/columns\n[ids]: https://django-data-wizard.wq.io/api/ids\n[data]: https://django-data-wizard.wq.io/api/data\n[settings]: https://django-data-wizard.wq.io/config/settings\n[models]: https://django-data-wizard.wq.io/config/models\n[tasks]: https://django-data-wizard.wq.io/config/tasks\n[backends]: https://django-data-wizard.wq.io/config/backends\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwq%2Fdjango-data-wizard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwq%2Fdjango-data-wizard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwq%2Fdjango-data-wizard/lists"}