-
Notifications
You must be signed in to change notification settings - Fork 199
Closed
Description
The methods on an API client object have no documentation:
>>> import ipfsApi
>>> api = ipfsApi.Client()
>>> help(api.ls)
This yields documentation on the partial
class, which isn't terribly helpful. It is also impossible to ask for documentation on these methods using pydoc
:
$ pydoc ipfsApi.Client.ls
no Python documentation found for 'ipfsApi.Client.ls'
This all seems very developer-unfriendly.