Metadata-Version: 2.1
Name: doc-cov
Version: 0.3.0
Summary: doc-cov is a tool for measuring docstring coverage of Python project
Home-page: https://github.com/cocodrips/doc-cov
Author: ku-mu
Author-email: cocodrips@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest (>=3) ; extra == 'dev'

# doc-cov 

doc-cov is a tool for measuring docstring coverage of Python project.

- Python versions >= 3.6 

## Quick start

1. Install doc-cov from pip.
2. Use `doccov PROJECT_PATH`

```
$ doccov tests/sample_project
function     3 /   5 60.00%
```

## Options
### Target object
doc-cov can measure docstring coverage of functions, classes and modules.

#### functions (default, `-f`) 

```
$ doccov tests/sample_project -f
function     3 /   5 60.00%

```

#### classes `-c`

```
$ doccov tests/sample_project -c
class        2 /   2 100.00%

```

#### modules `-m`

```
$ doccov tests/sample_project -m
module       3 /   7 42.86%

```

### Output 

#### str (default, `--output str`)

```
$ doccov tests/sample_project -fmc --output str
class        2 /   2 100.00%
module       3 /   7 42.86%
function     3 /   5 60.00%
```

#### csv `--output csv`

```
$ doccov tests/sample_project -fmc --output csv
coverage,class,2,2,100.00%
coverage,module,3,7,42.86%
coverage,function,3,5,60.00%
```

### Target 
#### Print coverage of whole (default)

```
$ doccov tests/sample_project
function     3 /   5 60.00%

```  
#### Print all coverage of modules `--all`

```
$ doccov tests/sample_project --all
=============================
module_fulldoc
-----------------------------
function     1 /   1 100.00%
=============================
package_A
-----------------------------
function     0 /   0 -
=============================
package_A.module_fulldoc
-----------------------------
function     1 /   1 100.00%
=============================
package_B
-----------------------------
function     0 /   0 -
=============================
package_B.module_shortdoc
-----------------------------
function     1 /   1 100.00%
=============================
package_B.package_B_1
-----------------------------
function     0 /   0 -
=============================
package_B.package_B_1.module_nodoc
-----------------------------
function     0 /   2 0.00%
=============================
coverage
-----------------------------
function     3 /   5 60.00%
```


