Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/d3f0/dbglue
https://github.com/d3f0/dbglue
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/d3f0/dbglue
- Owner: D3f0
- License: mit
- Created: 2024-05-31T08:53:29.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-31T09:15:13.000Z (7 months ago)
- Last Synced: 2024-05-31T10:23:38.499Z (7 months ago)
- Language: Python
- Size: 10.7 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[![PyPI - Version](https://img.shields.io/pypi/v/dbglue.svg)](https://pypi.org/project/dbglue)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/dbglue.svg)](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.