Skip to main content

Simple decorators for enforcing types during runtime.

Project description

License PyPI PePy stats

EnforceTypes

Simple decorators for enforcing types during runtime.

The idea behind this is to reduce time spent developing and using packages that are computationally intensive by allowing for early raising and exiting rather than running for a long time and failing on type or class problems. Currently the easiest way to do this, which is most commonly seen in packages and modules that have type hints applied, is by adding isinstance checks and assert statements throughout the code. This quickly becomes repetitive, doesn’t help readability of the code and can easily be forgotten.

The decorators provided in this module resolve that problem by handling these type checks (as annotated) and raising when unexpected types are provided. They also aid in debugging and development by providing both the expected type and the provided argument’s runtime type. There are separate decorators for functions and classes, please do not use them the wrong way around.

Due to some very iffy results and instability in the way decorators work when combined, please try using decorators in a different order before submitting bug reports. I can’t help that, it’s a limitation with the way Python itself handles it.

I’m working on combining common use cases (such as @dataclass which has already been implemented) and would gladly take suggestions! I’ve also been putting some effort into splitting the package, so auto-imports and __all__ might be somewhat affected until v0.1.0, which I’ll release once I’m confident that it’s mostly stable (except for the API)

from EnforceTypes import classtypes, functypes, methtypes


@functypes
def add(a: int, b: int) -> None:
    print(f"Adding {a} to {b} equals {a + b}")


add(2, 2)  # prints "Adding 2 to 2 equals 4"
add("a", 2)  # This causes the decorator to raise a TypeError!

@classtypes
class Add:
    def __init__(a: int, b: int):
        self.a = a
        self.b = b

    @property
    def printadd(self):
        print(f"Adding {self.a} to {self.b} equals {self.add()}")

    @classmethod
    @methtypes
    def add_values(cls, *, a: int = 1, b: int = 1) -> int:
        obj = cls(a, b)
        return obj.add()

    @methtypes
    def add(self) -> int:
        return self.a + self.b


Add(1, 1).printadd  # prints 2
a = Add(1, "a")  # TypeError raised because of a `str` instead of an `int`.
Add(1, "b").printadd  # This causes a TypeError too, before instantiating an `Add` object!
Add.add_values(b=5)  # returns 6
a = Add(10, 20)
a.add()  # returns 30

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

EnforceTypes-0.0.8.tar.gz (7.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

enforcetypes-0.0.8-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

Details for the file EnforceTypes-0.0.8.tar.gz.

File metadata

  • Download URL: EnforceTypes-0.0.8.tar.gz
  • Upload date:
  • Size: 7.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.28.1

File hashes

Hashes for EnforceTypes-0.0.8.tar.gz
Algorithm Hash digest
SHA256 29833905e0ba35f2a264e735780c653ab5d3e3fd19d69d22c02c8da817f04757
MD5 80549ae1c9430282affca131a0e7778f
BLAKE2b-256 7e929dcfc7950048ed9f7c907d2041e9c0bf99cd1fdafe64ed7410c169b8db6a

See more details on using hashes here.

File details

Details for the file enforcetypes-0.0.8-py3-none-any.whl.

File metadata

  • Download URL: enforcetypes-0.0.8-py3-none-any.whl
  • Upload date:
  • Size: 7.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.28.1

File hashes

Hashes for enforcetypes-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 33d80c7364b20da9603d731cee640d5e5c7eaa20517a6889e98309ff57721197
MD5 2ceb4abe765fc628eccfc6776d238f80
BLAKE2b-256 f6f43e286ef8c4f2bd8216c65c07d431f264886388f77c75807366998b376cfc

See more details on using hashes here.

Supported by

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