3 Star 0 Fork 0

mirrors_EnterpriseDB/pgldapsync

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pgldapsync.py 594 Bytes
一键复制 编辑 原始数据 按行查看 历史
Dave Page 提交于 2023-05-22 16:40 +08:00 . Version 3.0.
#!/usr/bin/env python
################################################################################
#
# pgldapsync
#
# Synchronise Postgres roles with users in an LDAP directory.
#
# Copyright 2018 - 2023, EnterpriseDB Corporation
#
################################################################################
# -*- coding: utf-8 -*-
"""pgldapsync application runner."""
# FIX THIS!
# pylint: disable=import-self
import re
import sys
from pgldapsync import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_EnterpriseDB/pgldapsync.git
git@gitee.com:mirrors_EnterpriseDB/pgldapsync.git
mirrors_EnterpriseDB
pgldapsync
pgldapsync
main

搜索帮助