Skip to main content

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.2

  • Updated comments.

v0.1.1

  • New optional parameter for hintwith() and hintwithmethod():
    • __is_method : determines whether the function to get hinted is a method.

v0.1.0

  • Initial release.

Project details


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

hintwith-0.1.2-py2.py3-none-any.whl (4.4 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page