https://github.com/d3f0/dbglue
https://github.com/d3f0/dbglue
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/d3f0/dbglue
- Owner: D3f0
- License: mit
- Created: 2024-05-31T08:53:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-04T10:46:00.000Z (10 months ago)
- Last Synced: 2025-02-17T10:12:44.190Z (5 months ago)
- Language: Python
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# dbglue
Copy tables with SQLAlchemy when:
- Database schemas differ between source and destination (only for additive changes on source)
- Use database URLs[](https://pypi.org/project/dbglue)
[](https://pypi.org/project/dbglue)-----
## Table of Contents
- [dbglue](#dbglue)
- [Table of Contents](#table-of-contents)
- [Installation](#installation)
- [Installation as a clone (using `pipx`)](#installation-as-a-clone-using-pipx)
- [License](#license)
- [Development](#development)
- [VS Code](#vs-code)## Installation
```console
pip install dbglue
```### Installation as a clone (using `pipx`)
```bash
# clone the repo
git clone ... dbglue
pipx install -e dbglue
```## License
`dbglue` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
## Development
### VS Code
To enable code completion in VSCode, it's recommended to use the dev environment. To
get the interpreter path run:```bash
hatch run which python
```Copy the results and use the option Select Interpreter in VSCode.