Some questions I find that I'm always asking myself either when using a new library/framework or even using my own projects are what functions do I have available to me or what types of parameters does this function expect. In the case of my own projects, I always find myself getting into the mindset of "Oh, I'll remember that this function exists because I wrote it." But what happens when that project gets more classes and functions? Or what happens when you focus on another project for awhile and then come back to your original project? The same outcome happens, you forgot what functions you've written, what you've named those functions, and what parameters it needs. Now, instead of building in those new features, you're forced to spend some amount of time and energy meticulously scrolling through your own code. Along comes the concept of API documentation.
Last week, I wrote an article on using markdown to write documentation for yourself and for other developers. Markdown works great for documenting what's involved in the project in the "story" type format we're used to reading. API documentation is more technical documentation for how to use and extend the functionality that already exists.
There are many document generation programs out there specifically for API documentation, but one program that I've found especially useful is Sphinx.
When I started working on larger projects, remembering the specifics of the functions was a nightmare. I would frequently make a new function that would do almost the same action as an already existing function and then when I noticed, I couldn't delete the old one because I'm not sure what else is depending on the call to that function. When I started using Sphinx, the only thing I had to remember was to just spend an extra minute or two writing a docstring within my function. Here's where Python Enhancement Proposal (PEP) comes into the story. PEP provides suggestions for standardizing your code so that it is easier to read for yourself and other developers. For my docstrings, I've personally found it helpful to make a boilerplate docstring that is a variation on PEP 257 that I can copy and paste whenever I make a new function, module, or class:
<function description>
Args: <argument> (<required>) - <data type> - <argument description>
<argument> (<required>) - <data type> - <argument description>
...
Return: <data type> - <return description>
Although this boilerplate docstring is built for functions, it can be modified for modules and classes. Everything in angle brackets are variables and will differ based on that specific function. An example of this docstring for:
could be
dummy function does what dummies do
Args: req (required) - Int - Give me a number
opt (optional) - String - "We need more cowbell"
Return: Int - one higher than req
Often the hardest part is when you're in the middle of trying to make a new feature for your program and then remember that it'll be best in the long run to slow down and make the necessary docs before you forget.
Though there are a lot of documentation generators out there, Sphinx is a fairly well known and popular one. Serveral open source projects use Sphinx including Flask, A lightweight but powerful microframework for creating web applications. A full list of projects using Sphinx is available at their official website
Sphinx may take a bit of effort to get started and have a bit of a learning curve but, once Sphinx is understood, you'll wonder how you ever wrote code without it. Sphinx installation has a little bit different ways of starting for Linux vs. Windows. I'll start with Windows.
The following steps assume that you have python already installed to your machine. When using Windows, I typically use git bash to add some bash flavor to Windows.
virtualenv
for its lightweight and easy setup.Simply download Sphinx from your package repository:
Debian/Ubuntu: apt-get install python-sphinx
RHEL/CentOS: yum install python-sphinx
Other instructions are available from the official documentation
├── _build
├── conf.py
├── index.rst
├── make.bat
├── Makefile
├── _static
└── _templates
We want to edit conf.py
by uncommenting (removing the hash in front of) the following three lines:
The index.rst
file is where our documentation will be started when we generate the HTML output. This file uses reStructuredText as its markup language to generate the documentation. I find it useful to create links to more rst files by creating new lines indented by three spaces followed by the name of the module to link to.
index.rst
and insert the following linesThis will tell the index file to take the documentation of our dummy function
Windows: ./make.bat html
Linux: make html
You should now have documentation that looks like: