https://github.com/python-tools/etcdproxy
提供etcd的代理对象功能
https://github.com/python-tools/etcdproxy
Last synced: 11 months ago
JSON representation
提供etcd的代理对象功能
- Host: GitHub
- URL: https://github.com/python-tools/etcdproxy
- Owner: Python-Tools
- License: mit
- Created: 2021-09-02T03:00:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-03T11:15:09.000Z (almost 3 years ago)
- Last Synced: 2025-01-17T04:09:32.678Z (about 1 year ago)
- Language: Python
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# etcdproxy
提供etcd的代理对象功能.本项目代理的对象是
+ aio模式代理[aetcd](https://aetcd.readthedocs.io/en/latest/index.html)
+ 普通模式代理[etcd3](https://python-etcd3.readthedocs.io/en/latest/)
需要注意这两个模块本身冲突,也就是说如果`import etcd3`就不能再`import aetcd`.因此同一个程序中不能混用两种模式.如果并不确定使用的是什么模式可以在代理的`aio`字段进行确认
## 安装
```bash
pip install etcdproxy
```