| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- # -*- coding: utf-8 -*-
- """
- -------------------------------------------------
- File Name: DbClient.py
- Description : DB工厂类
- Author : JHao
- date: 2016/12/2
- -------------------------------------------------
- Change Activity:
- 2016/12/2:
- -------------------------------------------------
- """
- __author__ = 'JHao'
- from Util.GetConfig import GetConfig
- class DbClient(object):
- """
- DbClient
- """
- def __init__(self):
- """
- init
- :return:
- """
- self.config = GetConfig()
- self.__initDbClient()
- def __initDbClient(self):
- """
- init DB Client
- :return:
- """
- __type = None
- if "SSDB" == self.config.db_type:
- __type = "SsdbClient"
- else:
- pass
- assert __type, 'type error, Not support DB type: {}'.format(self.config.db_type)
- self.client = getattr(__import__(__type), __type)(name=self.config.db_name,
- host=self.config.db_host,
- port=self.config.db_port)
- def get(self, **kwargs):
- return self.client.get(**kwargs)
- def put(self, value, **kwargs):
- return self.client.put(value, **kwargs)
- def pop(self, **kwargs):
- return self.client.pop(**kwargs)
- if __name__ == "__main__":
- account = DbClient().pop()
- print(account)
|