Skip to main content

Runtime type checking and not only for function arguments and class variables but even for the ordinary local and global variables!

Project description

typed-everywhere

Runtime type checking and not only for function arguments and class variables but even for the ordinary local and global variables!

Installation

pip install typed-everywhere

How To Use

We have a proxy class:

class Typed(wrapped)

This class inherits a variant of ObjectProxy from wrapt. Along with all augmented assignment operators, this class also overloads the normal assignment operator (=) thanks to assign-overload. wrapped can be any object and the resulting instance of this class will act like wrapped in every way. If you use this class, you need to call typed_everywhere.patch_and_reload_module(). This function only exposed in this package as a convenience, actually it is the exact copy of assign_overload.patch_and_reload_module() and you can find documentation about it in assign-overload. Usage example:

import typed_everywhere

def main():
    a = typed_everywhere.Typed(10)
    a = 20 # Ok
    print(a) # prints 20
    a = "abc" # Error

if typed_everywhere.patch_and_reload_module():
    main()

One thing to note is if you assign a variable holding a Typed instance to a new variable, new variable takes the value of the Typed instance, not the value of its underlying object. However, most operators return the underlying object. Example:

import typed_everywhere

def main():
    a = typed_everywhere.Typed(10)
    print(type(a+5)) # prints int
    b = a
    print(type(b)) # prints Typed

if typed_everywhere.patch_and_reload_module():
    main()

If you want to access the underlying object, use the __wrapped__ attribute:

import typed_everywhere

def main():
    a = typed_everywhere.Typed(10)
    b = a.__wrapped__
    print(type(b)) # prints int

if typed_everywhere.patch_and_reload_module():
    main()

Typed is also compatible with typeguard. Function argument type enforcement example:

import typeguard
import typed_everywhere

@typeguard.typechecked
def test4(a: typed_everywhere.Typed[int]):
    pass

def main():
    a = typed_everywhere.Typed(10)
    b = typed_everywhere.Typed("abc")
    test4(a) # Ok
    test4(b) # Error

if typed_everywhere.patch_and_reload_module():
    main()

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

typed_everywhere-1.0.1.tar.gz (37.4 kB view details)

Uploaded Source

Built Distribution

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

typed_everywhere-1.0.1-py2.py3-none-any.whl (43.2 kB view details)

Uploaded Python 2Python 3

File details

Details for the file typed_everywhere-1.0.1.tar.gz.

File metadata

  • Download URL: typed_everywhere-1.0.1.tar.gz
  • Upload date:
  • Size: 37.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.0

File hashes

Hashes for typed_everywhere-1.0.1.tar.gz
Algorithm Hash digest
SHA256 500eae52259d22210576b85b489615e499b2db8ec77b01f775ffe9da924ffb3a
MD5 a9e3e0fe248b3d510ca25d6da972d7d6
BLAKE2b-256 06f2a6ba870dcd3ef2b5bd9d7d00c1157651833e47fd94423f8e77400bbef08a

See more details on using hashes here.

File details

Details for the file typed_everywhere-1.0.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for typed_everywhere-1.0.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1c0ad4c568b64cad043896f4297112f009ca535324e967d9985d60644b1d1478
MD5 f7fc1484cf89313778f3aa806acffbf9
BLAKE2b-256 0d6e4776441bbf0d67c91e9f1a55eb4f3a29f8e8732b66299611762852d3abde

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