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.11.tar.gz
(4.2 kB
view details)
Built Distribution
File details
Details for the file liquisource-1.2.11.tar.gz
.
File metadata
- Download URL: liquisource-1.2.11.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b73207fe62d19c32d3e43ef635b5e869eb4bd16424d9230033d54f04e88ce1b3 |
|
MD5 | 4dc4cd312567968383ed6c3f53d7929a |
|
BLAKE2b-256 | 5f125a7ebc4707d23ce4cb80388d983d9eed33ed94161b42cbaaeb030a6b2a7a |
File details
Details for the file liquisource-1.2.11-py3-none-any.whl
.
File metadata
- Download URL: liquisource-1.2.11-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3aa878095142f946af637204cd43d8c624dcd03c495156021ac78e89430a780 |
|
MD5 | ad83a645c4fb643a11682ae7f447b69e |
|
BLAKE2b-256 | 87c576711e869ade515588ff8a2441124f3911a3055fdc42d3934537facce149 |