Skip to main content

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


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.10.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

liquisource-1.2.10-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file liquisource-1.2.10.tar.gz.

File metadata

  • Download URL: liquisource-1.2.10.tar.gz
  • Upload date:
  • Size: 4.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.8

File hashes

Hashes for liquisource-1.2.10.tar.gz
Algorithm Hash digest
SHA256 5177a6c66309f6b622fc499252d0725034e20f0cd1012f5d58a3c320b110ca51
MD5 55e5c4b4f2509ec6fea35c936d7a2a6b
BLAKE2b-256 2fb1632ecff5b835d38dbe0f0c0ae477fb5646f2751ae6a0e8020185d173df2e

See more details on using hashes here.

File details

Details for the file liquisource-1.2.10-py3-none-any.whl.

File metadata

File hashes

Hashes for liquisource-1.2.10-py3-none-any.whl
Algorithm Hash digest
SHA256 bcbb3c9e61aa3961a93f01455bbd41b5ee1c20771acd3ca972aae08d8138d0d3
MD5 0572fc84c9d6ef2017616fc99323ac65
BLAKE2b-256 733e8bc9a83a55b6afb71c36056a3f9641bdfc2f6838b4603aacde74dc76c563

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page