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.6.tar.gz
(3.5 kB
view details)
Built Distribution
File details
Details for the file liquisource-1.2.6.tar.gz
.
File metadata
- Download URL: liquisource-1.2.6.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9ab4f14a8c163daa0ece1f554447231b81ad70a16a6a9adcc158a2f1f454efa |
|
MD5 | 581e524131ad85d2119775367fbbf33a |
|
BLAKE2b-256 | 1268bda9cdcbfbf465b7e72dd9d84a2d0d2aecac7413493c11e2aef65173157c |
File details
Details for the file liquisource-1.2.6-py3-none-any.whl
.
File metadata
- Download URL: liquisource-1.2.6-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 | 25096b38100d4dfcdd614f2d8971d8ee6340acaddd6e13ef0e8bbac8f0951d26 |
|
MD5 | 070a51b54d7e726e4aec914b39528c39 |
|
BLAKE2b-256 | 3de9c14f357ac3861d28454f7dcd409d02fe073b4cb484c269a0bbcedeaa07d7 |