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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file typed_everywhere-1.1.0.post2.tar.gz.
File metadata
- Download URL: typed_everywhere-1.1.0.post2.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12866ad5593ca61131382bf965f7825966d26d2263e2339426dc2f7a5ef71eee
|
|
| MD5 |
f71a904d1b8115cd0aa11148b3030c11
|
|
| BLAKE2b-256 |
bc2a2a5d6194b58f245132cb21b12ef43a331badad00383e20066d4c9cedd266
|
File details
Details for the file typed_everywhere-1.1.0.post2-py2.py3-none-any.whl.
File metadata
- Download URL: typed_everywhere-1.1.0.post2-py2.py3-none-any.whl
- Upload date:
- Size: 3.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a88193a9717d37a838a2e8530604b026a35da14247e9d10cbd0a89693bdf2d2a
|
|
| MD5 |
85769c6d915affdcfbf6df4377026992
|
|
| BLAKE2b-256 |
77174cf28e6d523a58619924260347b0be04267b6d34a4e4ed8e9a4eaec007e1
|