Skip to main content

A CLI tool to migrate Excel data to AWS Amplify

Project description

Amplify Excel Migrator

PyPI version Python versions Downloads License: MIT

A CLI tool to migrate data from Excel files to AWS Amplify GraphQL API. Developed for the MECO project - https://github.com/sworgkh/meco-observations-amplify

Installation

From PyPI (Recommended)

Install the latest stable version from PyPI:

pip install amplify-excel-migrator

From Source

Clone the repository and install:

git clone https://github.com/EyalPoly/amplify-excel-migrator.git
cd amplify-excel-migrator
pip install .

Usage

The tool has four subcommands:

1. Configure (First Time Setup)

Save your AWS Amplify configuration:

amplify-migrator config

This will prompt you for:

  • Excel file path
  • AWS Amplify API endpoint
  • AWS Region
  • Cognito User Pool ID
  • Cognito Client ID
  • Admin username

Configuration is saved to ~/.amplify-migrator/config.json

2. Show Configuration

View your current saved configuration:

amplify-migrator show

3. Export Schema

Export your GraphQL schema to a markdown reference document:

# Export all models
amplify-migrator export-schema

# Export to a specific file
amplify-migrator export-schema --output my-schema.md

# Export specific models only
amplify-migrator export-schema --models User Post Comment

This generates a comprehensive markdown document with:

  • All model fields with types and requirements
  • Enum definitions
  • Custom type structures
  • Foreign key relationships
  • Excel formatting guidelines

Perfect for sharing with team members who need to prepare Excel files for migration.

๐Ÿ’ก The exported schema reference can help you prepare your Excel file. For detailed formatting guidelines, see the Excel Format Specification.

4. Run Migration

Run the migration using your saved configuration:

amplify-migrator migrate

You'll only be prompted for your password (for security, passwords are never cached).

Quick Start

# First time: configure the tool
amplify-migrator config

# View current configuration
amplify-migrator show

# Export schema documentation (share with team)
amplify-migrator export-schema

# Run migration (uses saved config)
amplify-migrator migrate

# View help
amplify-migrator --help

๐Ÿ“‹ For detailed Excel format requirements, see the Excel Format Specification.

Example: Configuration

โ•”โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•—
โ•‘        Amplify Migrator - Configuration Setup      โ•‘
โ•šโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•

๐Ÿ“‹ Configuration Setup:
------------------------------------------------------
Excel file path [data.xlsx]: my-data.xlsx
AWS Amplify API endpoint: https://xxx.appsync-api.us-east-1.amazonaws.com/graphql
AWS Region [us-east-1]:
Cognito User Pool ID: us-east-1_xxxxx
Cognito Client ID: your-client-id
Admin Username: admin@example.com

โœ… Configuration saved successfully!
๐Ÿ’ก You can now run 'amplify-migrator migrate' to start the migration.

Example: Migration

โ•”โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•—
โ•‘             Migrator Tool for Amplify              โ•‘
โ• โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•ฃ
โ•‘   This tool requires admin privileges to execute   โ•‘
โ•šโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•

๐Ÿ” Authentication:
------------------------------------------------------
Admin Password: ********

Requirements

  • Python 3.8+
  • AWS Amplify GraphQL API
  • AWS Cognito User Pool
  • Admin access to the Cognito User Pool

Features

Data Processing & Conversion

  • Automatic type parsing - Smart field type detection for all GraphQL types including scalars, enums, and custom types
  • Custom types and enums - Full support for Amplify custom types with automatic conversion
  • Duplicate detection - Automatically skips existing records to prevent duplicates
  • Foreign key resolution - Automatic relationship handling with pre-fetching for performance

AWS Integration

  • Configuration caching - Save your setup, reuse it for multiple migrations
  • MFA support - Works with multi-factor authentication
  • Admin group validation - Ensures proper authorization before migration

Performance

  • Async uploads - Fast parallel uploads with configurable batch size
  • Connection pooling - Efficient HTTP connection reuse for better performance
  • Pagination support - Handles large datasets efficiently

User Experience

  • Interactive prompts - Easy step-by-step configuration
  • Progress reporting - Real-time feedback on migration status
  • Detailed error messages - Clear context for troubleshooting failures
  • Schema export - Generate markdown documentation of your GraphQL schema to share with team members

Excel Format Requirements

Your Excel file must follow specific formatting guidelines for sheet names, column headers, data types, and special field handling. For comprehensive format requirements, examples, and troubleshooting, see:

๐Ÿ“‹ Excel Format Specification Guide

Advanced Features

  • Foreign Key Resolution - Automatically resolves relationships between models with pre-fetching for optimal performance
  • Schema Introspection - Dynamically queries your GraphQL schema to understand model structures and field types
  • Configurable Batch Processing - Tune upload performance with adjustable batch sizes (default: 20 records per batch)
  • Progress Reporting - Real-time batch progress with per-sheet confirmation prompts before upload

Error Handling & Recovery

When records fail to upload, the tool provides a robust recovery mechanism to help you identify and fix issues without starting over.

How It Works

  1. Automatic Error Capture - Each failed record is logged with detailed error messages explaining what went wrong
  2. Failed Records Export - After migration completes, you'll be prompted to export failed records to a new Excel file with a timestamp (e.g., data_failed_records_20251201_143022.xlsx)
  3. Easy Retry - Fix the issues in the exported file and run the migration again using only the failed records
  4. Progress Visibility - Detailed summary shows success/failure counts, percentages, and specific error reasons for each failed record

The tool tracks which records succeeded and failed, providing row-level context to help you quickly identify and resolve issues. Simply export the failed records, fix the errors in the Excel file, and re-run the migration with the corrected file.

Troubleshooting

Authentication & AWS Configuration

Authentication Errors:

  • Verify your Cognito User Pool ID and Client ID are correct
  • Ensure your username and password are valid
  • Check that your user is in the ADMINS group

MFA Issues:

  • Enable MFA in your Cognito User Pool settings if required
  • Ensure your user has MFA set up (SMS or software token)

AWS Credentials:

  • Set up AWS credentials in ~/.aws/credentials
  • Or set environment variables: AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_DEFAULT_REGION
  • Or use aws configure to set up your default profile

Permission Errors:

  • Add your user to the ADMINS group in Cognito User Pool
  • Contact your AWS administrator if you don't have permission

Excel Format & Validation Issues

For errors related to Excel file format, data types, sheet naming, required fields, or foreign keys, see the comprehensive troubleshooting guide:

๐Ÿ“‹ Common Issues and Solutions

License

MIT

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

amplify_excel_migrator-1.3.4.tar.gz (59.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

amplify_excel_migrator-1.3.4-py3-none-any.whl (72.1 kB view details)

Uploaded Python 3

File details

Details for the file amplify_excel_migrator-1.3.4.tar.gz.

File metadata

  • Download URL: amplify_excel_migrator-1.3.4.tar.gz
  • Upload date:
  • Size: 59.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for amplify_excel_migrator-1.3.4.tar.gz
Algorithm Hash digest
SHA256 6ffe13c42a270520caf1a7c09fc5aee4bc825f51d000df1509c0b0f11c1ac540
MD5 e7b3e78e6fd32e025eac90fb60f5f7ca
BLAKE2b-256 d3976acb602e6181dab32d82232fdeae9b44d171fd9486d618b6663b3c164be3

See more details on using hashes here.

File details

Details for the file amplify_excel_migrator-1.3.4-py3-none-any.whl.

File metadata

File hashes

Hashes for amplify_excel_migrator-1.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 263ff1631abb932b7a6190326c9f0aab1b6a8371f371e141cc15ec2a7b05f883
MD5 23d673e2c1b78826f647ed0f6303905a
BLAKE2b-256 eca92a7781680844b779a21e6dea87d51ab8c916afff4b3855e0b5ee5d115074

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page