Django Gyro
Project description
Django Gyro
A declarative system for importing and exporting CSV data with Django models. Django Gyro provides a clean, validation-rich way to map CSV columns to Django model fields with automatic foreign key resolution and intelligent data slicing capabilities.
Features
- Declarative Import System: Define how CSV data maps to your Django models using simple class-based importers
- Automatic Foreign Key Resolution: Intelligently resolves relationships between models during import
- Circular Dependency Handling: Automatically resolves circular relationships (e.g., Customer ↔ CustomerReferral)
- ID Remapping Strategies: Multiple strategies for handling ID conflicts during imports
- Data Slicing & Export: Export subsets of your data with complex relationships intact
- Multi-tenant Support: Built-in support for multi-tenant architectures with tenant-aware remapping
- PostgreSQL Bulk Loading: High-performance imports using PostgreSQL COPY operations
- Validation-Rich: Comprehensive validation during import/export operations
- Progress Tracking: Built-in progress bars for long-running operations
Quick Start
Installation
pip install django-gyro
Basic Usage
1. Define Your Importers
# myapp/importers.py
from django_gyro import Importer
from myapp.models import Tenant, Shop, Customer, Product, Order
class TenantImporter(Importer):
model = Tenant
class Columns:
pass
class ShopImporter(Importer):
model = Shop
class Columns:
tenant = Tenant
class CustomerImporter(Importer):
model = Customer
class Columns:
shop = Shop
tenant = Tenant
2. Export Data
from django_gyro import DataSlicer, ImportJob
# Define what data to export
tenant = Tenant.objects.filter(id=1)
shops = Shop.objects.filter(tenant=tenant)
customers = Customer.objects.filter(shop__in=shops)
# Export to CSV files
DataSlicer.run(
source=DataSlicer.Postgres(database_url),
target=DataSlicer.File('/path/to/export/'),
jobs=[
ImportJob(model=Tenant, query=tenant),
ImportJob(model=Shop, query=shops),
ImportJob(model=Customer, query=customers),
],
)
3. Import Data
# Import from CSV files
DataSlicer.run(
source=DataSlicer.File('/path/to/import/'),
target=DataSlicer.Postgres(database_url),
jobs=[
ImportJob(model=Tenant),
ImportJob(model=Shop),
ImportJob(model=Customer),
],
)
4. Management Command for CSV Import
Django Gyro includes a management command for importing CSV data:
# Import CSV data with automatic ID remapping
python manage.py import_csv_data --source-dir /path/to/csv/files/
# Preview import without making changes
python manage.py import_csv_data --source-dir /path/to/csv/files/ --dry-run
# Use INSERT statements instead of PostgreSQL COPY (slower but more compatible)
python manage.py import_csv_data --source-dir /path/to/csv/files/ --use-insert
The command automatically handles dependency ordering and uses sequential ID remapping to avoid conflicts.
5. ID Remapping Strategies (Python API)
For more control over ID remapping, use the Python API:
from django_gyro.importing import (
ImportContext,
SequentialRemappingStrategy,
HashBasedRemappingStrategy,
TenantAwareRemappingStrategy,
NoRemappingStrategy
)
# Sequential remapping (assigns new IDs starting from MAX+1)
strategy = SequentialRemappingStrategy(model=Customer)
context = ImportContext(
source_directory=Path("/path/to/csv/files"),
id_remapping_strategy=strategy
)
# Hash-based remapping (stable IDs using business keys)
strategy = HashBasedRemappingStrategy(
model=Customer,
business_key="email" # Use email to generate stable IDs
)
# Tenant-aware remapping (works with any "tenant" model name)
strategy = TenantAwareRemappingStrategy(
tenant_model=Organization, # Your tenant model (any name)
tenant_mappings={1060: 10, 2000: 11} # staging -> local IDs
)
# Manual ID mappings
id_mappings = {
"myapp.Customer": {100: 200, 101: 201}, # old_id: new_id
"myapp.Order": {500: 600, 501: 601}
}
Use Cases
- Data Migration: Move data between environments while preserving relationships
- Selective Exports: Export specific subsets of data for development or testing
- Multi-tenant Data Management: Handle complex tenant-based data relationships
- CSV Import/Export: Robust CSV handling with validation and error reporting
Documentation
For detailed documentation, examples, and advanced usage, see TECHNICAL_DESIGN.md.
Requirements
- Python 3.8+
- Django 3.2+
- PostgreSQL (for DataSlicer operations)
Contributing
We welcome contributions! Please see our Contributing Guidelines for details.
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_gyro-0.3.4.tar.gz.
File metadata
- Download URL: django_gyro-0.3.4.tar.gz
- Upload date:
- Size: 30.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.0 CPython/3.10.18 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5cd84381bc8131a20cf14a1b5fc0ffb771661e514d31b425eae29181e8fbac7
|
|
| MD5 |
6dab0cb60b3cae9d62b6393701773b27
|
|
| BLAKE2b-256 |
3e88fb752565b9ff5163ece3ef116a28b22a57dec5c6e945ec2bb1c7bc9b9a6e
|
File details
Details for the file django_gyro-0.3.4-py3-none-any.whl.
File metadata
- Download URL: django_gyro-0.3.4-py3-none-any.whl
- Upload date:
- Size: 32.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.0 CPython/3.10.18 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d597085ddb0cbbb85f8b2fb0905900314a7061c4a5ce7950de39176759b071c
|
|
| MD5 |
e361b06d75304a2e6e16747bd80b3f8b
|
|
| BLAKE2b-256 |
18e2667de9f907140350e8b89c8e91544c500474178811f22fdb53f274e09cd2
|