Skip to main content

A decorator for decorators that allows you to see the parameters of a decorated function when using it in PyCharm.

Project description

decohints

PyPI PyPI PyPI

decohints

🇷🇺 Версия на русском

A decorator for decorators that allows you to see the parameters of a decorated function when using it in PyCharm.

PyPi: https://pypi.org/project/decohints/

Reasons for creation

Below is an example of a decorator with parameters without the use of decohints:

from functools import wraps


def decorator_with_params(aa=None, bb=None, cc=None):
    def _decorator(func):
        @wraps(func)
        def wrapper(*args, **kwargs):
            try:
                result = func(*args, **kwargs)
            except Exception:
                print("Error")
                return
            return result

        return wrapper

    return _decorator


@decorator_with_params()
def test(a: int, b: int) -> int:
    return a + b

If you type below test() in PyCharm and wait, it will show decorator wrapper parameter hints as test function parameter hints:

test() (*args, **kwargs)

This is not convenient and can confuse developers, which is why this library was made.

Installation

pip install decohints

Usage

✅ Works with all kinds of decorators
⚠️ If your decorator is already wrapped in another decorator, then decohints should be on top

To use, you need to follow two simple steps:

  1. Import the decohints decorator from the decohints library:
from decohints import decohints
  1. Wrap your decorator with a decohints decorator:
@decohints
def your_decorator():
    ...

The following is an example of a decorator with parameters, with using decohints:

from functools import wraps

from decohints import decohints


@decohints
def decorator_with_params(aa=None, bb=None, cc=None):
    def _decorator(func):
        @wraps(func)
        def wrapper(*args, **kwargs):
            try:
                result = func(*args, **kwargs)
            except Exception:
                print("Error")
                return
            return result

        return wrapper

    return _decorator


@decorator_with_params()
def test(a: int, b: int) -> int:
    return a + b

If you type below test() in PyCharm and wait, it will show test function parameter hints:

test() (a: int, b: int)

❕Examples of use with decorator class, class decorators, and more are found at here: click

Alternatives

Specifying the type of wrapper

✅ Works with all kinds of decorator functions

Specifying the type wrapper: func will have the same behavior as using decohints.

Example:

from functools import wraps


def decorator(func):
    @wraps(func)
    def wrapper(*args, **kwargs):
        try:
            result = func(*args, **kwargs)
        except Exception:
            print("Error")
            return
        return result

    wrapper: func
    return wrapper


@decorator
def test(a: int, b: int) -> int:
    return a + b

If you type below test() in PyCharm and wait, it will show test function parameter hints:

test() (a: int, b: int)

Specifying an output type in a decorator with parameters

❗️This method only works in decorator functions with parameters

If you specify the Callable type from the typing module for the result of the decorator with parameters, then the behavior will be the same as using decohints.

Example:

from functools import wraps
from typing import Callable


def decorator_with_params(aa=None, bb=None, cc=None) -> Callable:
    def _decorator(func):
        @wraps(func)
        def wrapper(*args, **kwargs):
            try:
                result = func(*args, **kwargs)
            except Exception:
                print("Error")
                return
            return result

        return wrapper

    return _decorator


@decorator_with_params()
def test(a: int, b: int) -> int:
    return a + b

If you type below test() in PyCharm and wait, it will show test function parameter hints:

test() (a: int, b: int)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

decohints-1.0.9.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

decohints-1.0.9-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file decohints-1.0.9.tar.gz.

File metadata

  • Download URL: decohints-1.0.9.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.4

File hashes

Hashes for decohints-1.0.9.tar.gz
Algorithm Hash digest
SHA256 0e066715f003ddef965fce223d1e83bf9102f8bfb5be3e98bc545aef58fca944
MD5 a9d178a3811347e5e59179f54df7c63b
BLAKE2b-256 56f0791ba6f965487a81c3b494a5c14354f99bc57418d79ab903e72da4b0d4d5

See more details on using hashes here.

File details

Details for the file decohints-1.0.9-py3-none-any.whl.

File metadata

  • Download URL: decohints-1.0.9-py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.4

File hashes

Hashes for decohints-1.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 3007256b1b179ccca9e240ea4117c8b59cd31e32de9129c95bbbb867f320c922
MD5 bd331f4e953bcfebaab31d789b29c0d2
BLAKE2b-256 9b7bd4358edcd028eb4313f91d9972d976e81f3dbfb1035a5511f31f73f248b2

See more details on using hashes here.

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