Hints your function with an existing one.
Project description
hintwith
Hints your function with an existing one.
Installation
$ pip install hintwith
Usage
Use hintwith() to hint a function with another function:
>>> from hintwith import hintwith
>>> def a(x: int, y: int, z: int = 0) -> int:
... """Sums x, y and z."""
... return x + y + z
...
>>> @hintwith(a)
... def b(*args, **kwargs) -> float:
... return float(a(*args, **kwargs))
...
Also, there is hintwithmethod() to hint the function with a method rather than a direct callable.
See Also
Github repository
PyPI project
License
This project falls under the BSD 3-Clause License.
History
v0.1.5
- New optional parameter for
hintwith()andhintwithmethod():use_doc: determines whether to use the docstring of the original function.
v0.1.4
- New optional parameter for
hintwith()andhintwithmethod():__hint_returntype: determines whether to use the return type of the original function.
v0.1.0
- Initial release.
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hintwith-0.1.5-py2.py3-none-any.whl.
File metadata
- Download URL: hintwith-0.1.5-py2.py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d7c20cad64b6d8c3804faf6bb8befb54f88e27f3724171f453e454fd5f22f0a
|
|
| MD5 |
99f1f8ca7c66abcea525baf45aa6921c
|
|
| BLAKE2b-256 |
383e959cc09213388b1871dcc5ee6d1ca403baa2b65a0340ca4f49cc2fb5948b
|