How can I automatically create the boilerplate code of pyi files?
I want to create a pyi file for type hinting as described in pep484 which contains all method names
I wrote a makefile for this:
package := example
sources := $(wildcard $(package)/*.py)
stub: $(sources)
stubgen --output . --package $(package)
dist: setup.py stub
python $< sdist bdist_wheel
publish: dist
twine upload dist/*
.PHONY += stub dist publish
Running make publish will generate the .pyi files in the same location as their corresponding .py files before packaging and uploading to PyPI. They will be included in the package provided that they are part of package_data.
As far as I am concerned, there is no such direct tool in PyCharm. There are, however, 3rd party tools for this.
.pyi generatorsYes, I guess anyone who wants to use compile-time type checking in Python, probably ends up using MyPy. MyPy contains stubgen.py tool which generates .pyi files.
mkdir out
stubgen urllib.parse
generates out/urllib/parse.pyi.
You can use it wit Python2 too:
stubgen --py2 textwrap
And for C modules:
scripts/stubgen --docpath <DIR>/Python-3.4.2/Doc/library curses
If you want to specify the path to your custom package, you can use --search-path option:
stubgen my-pkg --search-path=folder/path/to/the/package
This project is dedicated to exactly this goal.
A very basic one (but it has a handful of options, just consult README.md or make_stub_files -h
make_stub_files foo.py
.pyi filesSo you don't have to write your own.
Yes, if you're using .pyi files in your own project, you probably want to use this also when using external code. Typeshed contains .pyi files for Python2 and Python3 stdlib and a bunch of Python2 libraries (like redis, crypto, ...) and some Python3 libraries (like werkzeug or requests), all nicely versioned.
.pyi filesIn case you're lazy, or simply just working on a project which doesn't require .pyi files and you don't want to be bothered by using 3rd party tools, PyCharm allows you to use: