Skip to main content

Load sqlalchemy models into an Atlas project.

Project description

atlas-provider-sqlalchemy

Load SQLAlchemy models into an Atlas project.

Use-cases

  1. Declarative migrations - use a Terraform-like atlas schema apply --env sqlalchemy to apply your SQLAlchemy schema to the database.
  2. Automatic migration planning - use atlas migrate diff --env sqlalchemy to automatically plan a migration from the current database version to the SQLAlchemy schema.

Installation

Install Atlas from macOS or Linux by running:

curl -sSf https://atlasgo.sh | sh

See atlasgo.io for more installation options.

Install the provider by running:

# The Provider works by importing your SQLAlchemy models and extracting the schema from them.
# Therefore, you will need to run the provider from within your project's Python environment.
pip install atlas-provider-sqlalchemy

Standalone

If all of your SQLAlchemy models exist in a single package, you can use the provider directly to load your SQLAlchemy schema into Atlas.

In your project directory, create a new file named atlas.hcl with the following contents:

data "external_schema" "sqlalchemy" {
  program = [
    "atlas-provider-sqlalchemy",
    "--path", "./path/to/models",
    "--dialect", "mysql" // mariadb | postgresql | sqlite | mssql
  ]
}

env "sqlalchemy" {
  src = data.external_schema.sqlalchemy.url
  dev = "docker://mysql/8/dev"
  migration {
    dir = "file://migrations"
  }
  format {
    migrate {
      diff = "{{ sql . \"  \" }}"
    }
  }
}

As Python Script

If you want to use the provider as a python script, you can use the provider as follows:

Create a new file named load_models.py with the following contents:

# import all models
from models import User, Task
from atlas_provider_sqlalchemy.ddl import print_ddl
print_ddl("mysql", [User, Task])

Next, in your project directory, create a new file named atlas.hcl with the following contents:

data "external_schema" "sqlalchemy" {
    program = [
        "python",
        "load_models.py"
    ]
}

env "sqlalchemy" {
  src = data.external_schema.sqlalchemy.url
  dev = "docker://mysql/8/dev"
  migration {
    dir = "file://migrations"
  }
  format {
    migrate {
      diff = "{{ sql . \"  \" }}"
    }
  }
}

Usage

Once you have the provider installed, you can use it to apply your SQLAlchemy schema to the database:

Apply

You can use the atlas schema apply command to plan and apply a migration of your database to your current SQLAlchemy schema. This works by inspecting the target database and comparing it to the SQLAlchemy schema and creating a migration plan. Atlas will prompt you to confirm the migration plan before applying it to the database.

atlas schema apply --env sqlalchemy -u "mysql://root:password@localhost:3306/mydb"

Where the -u flag accepts the URL to the target database.

Diff

Atlas supports a version migration workflow, where each change to the database is versioned and recorded in a migration file. You can use the atlas migrate diff command to automatically generate a migration file that will migrate the database from its latest revision to the current SQLAlchemy schema.

atlas migrate diff --env sqlalchemy 

Supported Databases

The provider supports the following databases:

  • MySQL
  • MariaDB
  • PostgreSQL
  • SQLite
  • Microsoft SQL Server

Credit

The code in this repository is based on noamtamir/atlas-provider-sqlalchemy.

Issues

Please report any issues or feature requests in the ariga/atlas repository.

License

This project is licensed under the Apache License 2.0.

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

atlas_provider_sqlalchemy-0.2.0.tar.gz (7.8 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file atlas_provider_sqlalchemy-0.2.0.tar.gz.

File metadata

  • Download URL: atlas_provider_sqlalchemy-0.2.0.tar.gz
  • Upload date:
  • Size: 7.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.11.0 Linux/6.5.0-1018-azure

File hashes

Hashes for atlas_provider_sqlalchemy-0.2.0.tar.gz
Algorithm Hash digest
SHA256 ead69bf2b0f3968c6c2406a254d47d8cbc2e3ae83a8474ac3175a8c61bb8866c
MD5 f082adea0353b58388f6d9dfb4fd9e69
BLAKE2b-256 5c3219af8937881e28f1cf70984b782092d8244320ca8c5ca5de2e12120c6806

See more details on using hashes here.

File details

Details for the file atlas_provider_sqlalchemy-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for atlas_provider_sqlalchemy-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2c78709a48310a26ce1753fa0cf07d4d397cee39e23e4b4d53f20b356d060c23
MD5 6f70429149078fc5f32349e801f21005
BLAKE2b-256 dd8b22347ab7a11e04a8ea35e365b140792b10bdad00f5ac8779dd829c306e61

See more details on using hashes here.

Supported by

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