Description
I was trolling through the docs on RTD and noticed that the Client API section is currently being done manually. Since I am a glutton for punishment, I figured I'd see if you would be interested in a pull request that converts this to use Sphinx's autodoc. This would involve moving a lot of what is in that api.md to the source itself.
The benefit of this is that you end up with detailed documentation within the source itself, and it becomes very easy to update docstrings as code is touched.
Just in case an example is needed, we'll continue using boto+dynamodb as an example.
- Layer1.put_item() source code: https://github.com/boto/boto/blob/develop/boto/dynamodb/layer1.py#L347
- The resulting auto-doc'd page: http://boto.cloudhackers.com/en/latest/ref/dynamodb.html#boto.dynamodb.layer1.Layer1.put_item
I'd suggest starting with this, then working on a more conversational How-To page that shows some usage examples. I can't promise anything, but I'd potentially be interested in helping as I learn docker-py (and Docker) better.
If you were interested in the autodoc'd API page, that's probably something I could volunteer a pull request for.