Documentation generator for your model subclasses.
Project description
modeldocs is a documentation generator for your model subclasses.
By parsing source code files, this generates documentation for your data models with a documentation format similar to apidocs (https://github.com/apidoc/apidoc)
Installation
From pypi:
$ pip install modeldocs
Or from the project root directory:
$ python setup.py install
Usage
First, create a configuration file in json, like (optional “include”):
{ "name": "My Documentation", "version": "1.0.0", "title": "My Documentation Title", "description": "This documents my data models", "include": [ "mymodule", "tests/myfile.py" ] }
Save it as modeldocs.json in the current directory.
Then simply run it, and it’ll search for all modeldocs recursively from the current directory:
$ modeldocs
Or, specify via the command line where to look and what files:
$ modeldocs --include mymodule myfile.py
Or pass a path to your custom config, which may specify an “include” configuration variable:
$ modeldocs --config my_model_docs.json
Also, you can specify a custom output directory (default “docs”):
$ modeldocs --output mydocs
Use –help/-h to view info on the arguments:
$ modeldocs --help
The format is pretty simple. It follows a very similar format to apidocs (check github link above), example:
class Motorcycle(MongoCollection): ''' @modelGroup Vehicles @modelTitle Motorcycle @modelDescription This represents a motorcycle and all its data. @modelField {String} name the motorcycle name @modelField {Number} year the year it was made @modelField {Datetime} purchased_at the datetime it was purchased @modelField {String="red","green","blue"} color the color of the motorcycle, with specified possible values. @modelField {String} [owner] the owner of the vehicle (optional due to brackets) @modelField {Number} [wheels=2] the number of wheels (default 2 as specified) @modelExample {json} Motorcycle Example { "name": "yamaha v-star 650", "year": 2002, ... } ''' pass
That’s all it takes. Just add doc strings like the above to all your classes and it will recursively discover them and generate the documentation into the “docs” directory.
Release Notes
- 0.1.3:
Fix issue with labeltype description wrapping multiple lines
- 0.1.2:
Add note to readme
- 0.1.1:
Better method of parsing, without loading any python modules. Just give it an include directory.
- 0.1.0:
Generates docs!
- 0.0.1:
Project created
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file modeldocs-0.1.4.tar.gz
.
File metadata
- Download URL: modeldocs-0.1.4.tar.gz
- Upload date:
- Size: 194.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3e39a3ab90ec7cee6b439d16818d0b5ecfc100e98e78cd922a407987cf82d57 |
|
MD5 | 1152bb1d5af137abbb90b376062ecdf3 |
|
BLAKE2b-256 | 3856620c2009c5181f72cb4382ae5146da5b0139ca0ae1ef29b0edfecbb1e2f5 |