上传者: 42152298
|
上传时间: 2022-03-07 15:52:00
|
文件大小: 86KB
|
文件类型: -
python-etcd3
etcd API v3 的 Python 客户端,在 python 2.7、3.4 和 3.5 下支持。
警告:API 大部分是稳定的,但将来可能会发生变化
如果您有兴趣使用此库,请参与。
免费软件:Apache 软件许可证 2.0
文档: : 。
基本用法:
import etcd3
etcd = etcd3 . client ()
etcd . get ( 'foo' )
etcd . put ( 'bar' , 'doot' )
etcd . delete ( 'bar' )
# locks
lock = etcd . lock ( 'thing' )
lock . acquire ()
# do something
lock . release ()
with etcd . lock ( 'doot-machine' ) as lock