Python stub file generator.
Project description
pygenstub is a utility for generating stub files from docstrings in source files.
If the docstring of a function includes a sig field, the value of that field will be used to generate a stub by matching the types to the parameters in the same order.
For example, for the function given below:
def foo(a, b):
"""Do foo.
:sig: (int, str) -> None
"""
pygenstub will generate the following stub:
def foo(a: int, b: str) -> None: ...
pygenstub consists of a single source file which contains such signatures. You can check the stub file generated by running pygenstub on itself as an example.
Getting started
pygenstub runs on Python 3.6 and later versions. You can install the latest version from PyPI:
pip install pygenstub
Installation creates a script named pygenstub which can be used as follows:
pygenstub foo.py
This command will generate the file foo.pyi in the same directory as the input file. If the output file already exists, it will be overwritten.
If you download the source file, you can also run it directly without installing:
python pygenstub.py foo.py
If pygenstub is activated as a Sphinx extension (after sphinx.ext.autodoc), it will insert type comments into the docstring:
extensions = [
"sphinx.ext.autodoc",
"pygenstub"
]
As an example of the output, you can check the API documentation for pygenstub itself.
Getting help
The documentation is available on: https://pygenstub.readthedocs.io/
The source code can be obtained from: https://github.com/uyar/pygenstub
License
Copyright (C) 2016-2021 H. Turgut Uyar <uyar@tekir.org>
pygenstub is released under the GPL license, version 3 or later. Read the included LICENSE.txt for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pygenstub-2.0.1.tar.gz
.
File metadata
- Download URL: pygenstub-2.0.1.tar.gz
- Upload date:
- Size: 24.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.9.1 Linux/5.8.0-43-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e72af6765731e9b3c4dfef8461960d83c8046922cfb3b486c129b23b8112b7f |
|
MD5 | ca3fded2264c9fde0ed98b2f5e77d45d |
|
BLAKE2b-256 | 08ef19ff0f6c27ef4b64f78b6a677bf790e597b277f7155a9f13caf06757854c |
File details
Details for the file pygenstub-2.0.1-py3-none-any.whl
.
File metadata
- Download URL: pygenstub-2.0.1-py3-none-any.whl
- Upload date:
- Size: 24.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.9.1 Linux/5.8.0-43-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c63c6dd1df9dad13d9fcbc9e55ab0367d2bad7fc2ce1063d4a8c0d93153b6803 |
|
MD5 | 82bcf7fa835dce43589369725c2617f0 |
|
BLAKE2b-256 | eea7693dc043b83afd26462889cb4c42431e42248d66bfe5c27d829077f402e4 |