i follow you guide,pip install python-cephclient,and write the code:
from cephclient.wrapper import *
wrapper = CephWrapper(
endpoint = 'http://127.0.0.1:5000/api/v0.1/',
debug = True
)
response, body = wrapper.get_fsid(body = 'json')
but i got the problem :
response, body = wrapper.get_fsid(body = 'json')
AttributeError: 'CephWrapper' object has no attribute 'get_fsid'
there is not attribute 'get_fsid',what is the problem?