A liquibase datasource client for python
Project description
liquibase数据源驱动
liquibase引入python3脚本,统一管理管理mongo、clickhouse的库表结构。changelog记录还是选在记录到mysql中,这样业务上会更加灵活
<changeSet id="xxxxx" author="xxxxxx" labels="mongo">
<comment>xxxxx</comment>
<executeCommand executable="python3">
<arg value="script/db_tag/creat_collection.py"/>
</executeCommand>
</changeSet>
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from liquibase_datasource import *
def create_tag_database():
# 获取mongo链接实例
client = get_client(filepath)
return client[db]
def create_tag_collection():
# 获取mongo链接实例
db_name = get_tenant_shard(tag_database)
client = get_client()
db = client[db_name]
# db开启分片
client.admin.command("enableSharding", db_name)
db.create_collection(tag_collection)
# 创建索引
coll = db[tag_collection]
coll.create_index(
[("id", 1), ("name", 1)])
if __name__ == "__main__":
# 创建标签集合
create_tag_database()
create_tag_collection()
发布包
python3 -m pip install --upgrade build
python3 -m build
python3 -m pip install --upgrade twine
python3 -m twine upload dist/*
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
liquisource-1.2.5.tar.gz
(3.1 kB
view details)
Built Distribution
File details
Details for the file liquisource-1.2.5.tar.gz
.
File metadata
- Download URL: liquisource-1.2.5.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efcdc231b2d292b311cbc9b8d2fb8431c6f11ccb218a547162848f0dee992865 |
|
MD5 | 22931ede86b63d825fa3fe0fae52ca3b |
|
BLAKE2b-256 | 6e31244acbbfb3828979434e2689ca966d2e3fc8ad7280316c88aba1aebb9be6 |
File details
Details for the file liquisource-1.2.5-py3-none-any.whl
.
File metadata
- Download URL: liquisource-1.2.5-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26a514de0cb46820772789a717e7dc7f8541006e308bd32fbfab40fb6db694db |
|
MD5 | 9175aef82b05db53c2dd31a7ebec8e60 |
|
BLAKE2b-256 | 4c9c2810daadbb578d850fa281992db8f621b90b998e533af00b6c2a9aa8c08d |