1 Star 0 Fork 8

Zhouji0212/data_service

forked from 海风/data_service 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config.py 654 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__title__ = '配置文件'
__author__ = 'HaiFeng'
__mtime__ = '20180912'
from psycopg2 import create_engine
from sqlalchemy import create_engine
from sqlalchemy.engine import Engine
import json
class Config(object):
def __init__(self, cfg_file):
cfg = json.load(open(cfg_file, 'r', encoding='utf-8'))
self.engine_postgres: Engine = None
if 'postgres_config' in cfg:
cfg_pg = cfg['postgres_config']
self.engine_postgres = create_engine('postgresql://{}:{}@{}:{}/{}'.format(cfg_pg['user'], cfg_pg['pwd'], cfg_pg['host'], cfg_pg['port'], cfg_pg['db']))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/zhouji0212/data_service.git
[email protected]:zhouji0212/data_service.git
zhouji0212
data_service
data_service
master

搜索帮助