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_everywhere.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(). You can also access this function from assign_overload module. You can find documentation about this function 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.1.0.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.1.0-py2.py3-none-any.whl (43.1 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

  • Download URL: typed_everywhere-1.1.0.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.1.0.tar.gz
Algorithm Hash digest
SHA256 b51cba3873c602dbfb976da7f27cc07b8f579d908d14a1f407ff5f29efb08c79
MD5 df8c7dbf7c79354c09f74343737a6cad
BLAKE2b-256 f7c76e383228427c8938c66fc272bb5db61d23aa801dc4f501885b98f71a49df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typed_everywhere-1.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 e510c6cb76a08835865ec35be9664a9329e0f9b01e1be02cdc80d1b92a9af1af
MD5 bb3b36075b29a8e51e247ecf68e778dc
BLAKE2b-256 5cdb81f0726ccd94bd32aa05eeaed09a12bde8e614ed772e2ffc915b3861ca69

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