Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,48 @@
# Docstringify
Flag missing docstrings and, optionally, generate them from signatures and type annotations.

<table>
<tr>
<td>
<img alt="Last Release" src="https://img.shields.io/badge/last%20release-inactive?style=for-the-badge">
</td>
<td>
<a href="https://pypi.org/project/docstringify/" target="_blank" rel="noopener noreferrer">
<img alt="PyPI release" src="https://img.shields.io/pypi/v/docstringify.svg">
</a>
<a href="https://pypi.org/project/docstringify/" target="_blank" rel="noopener noreferrer">
<img alt="Supported Python Versions" src="https://img.shields.io/pypi/pyversions/docstringify">
</a>
<a href="https://github.com/stefmolin/docstringify/blob/main/LICENSE" target="_blank" rel="noopener noreferrer">
<img alt="License" src="https://img.shields.io/pypi/l/docstringify.svg?color=blueviolet">
</a>
</td>
</tr>
<tr>
<td>
<img alt="Build status" src="https://img.shields.io/badge/build%20status-inactive?style=for-the-badge">
</td>
<td>
<!-- <a href="https://codecov.io/gh/stefmolin/docstringify" target="_blank" rel="noopener noreferrer">
<img alt="codecov" src="https://codecov.io/gh/stefmolin/docstringify/branch/main/graph/badge.svg?token=3SEEG9SZQO">
</a> -->
<a href="https://github.com/stefmolin/docstringify/actions/workflows/ci.yml" target="_blank" rel="noopener noreferrer">
<img alt="CI" src="https://github.com/stefmolin/docstringify/actions/workflows/ci.yml/badge.svg">
</a>
</td>
</tr>
<tr>
<td>
<img alt="Downloads" src="https://img.shields.io/badge/%23downloads-inactive?style=for-the-badge">
</td>
<td>
<a href="https://pypi.org/project/docstringify/" target="_blank" rel="noopener noreferrer">
<img alt="PyPI downloads" src="https://img.shields.io/pepy/dt/docstringify?label=pypi&color=blueviolet">
</a>
</td>
</tr>
</table>

## About

Given a file, `test.py`, with the following contents:
Expand Down
Loading