Add command-line interface (closes #44) - #68
Merged
Merged
Conversation
Add a `sqlalchemyseed` console script (and `python -m sqlalchemyseed`) that seeds a database from data files without writing Python. - Accepts one or more files and/or directories (directories seed every .json/.yaml/.yml inside, sorted) - Database URL via --url or the DATABASE_URL env var - --seeder basic|hybrid, --dry-run (seed then roll back), --ref-prefix - CSV inputs supported via --model (CSV is not self-describing) - Inserts the working directory on sys.path so model paths like "models.Person" resolve against the user's project Bumps version to 2.2.0. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a
sqlalchemyseedCLI so a database can be seeded from data files without writing Python — the first feature from the revival roadmap (#65). Closes #44.Usage
What's included
[project.scripts]) andpython -m sqlalchemyseedvia__main__.py.json/.yaml/.yml, sorted)--urlor theDATABASE_URLenv var--dry-run(seed in a transaction, then roll back),--seeder basic|hybrid,--ref-prefix--model(CSV isn't self-describing)sys.pathso model paths likemodels.Personresolve against the user's projectImplementation is a thin, dependency-free (argparse) wrapper over the existing loaders +
Seeder/HybridSeeder; no changes to the core engine.Tests & verification
python -m,$DATABASE_URL, and--helpall behave correctlyuv buildregisters thesqlalchemyseedconsole script in the wheelBumps version to 2.2.0.
🤖 Generated with Claude Code