Introduce strict typing in your functions.
Project description
Introspector
[WIP] A Python library to write strongly typed code.
Table of contents
Introduction
Introduce strict typing in your functions.
This project is under development.
Requirements
- Python >= 3.10
Basic usage
import introspector
@introspector.strict
def foo(a: int, b: list[dict[str, Any]]) -> list[int]:
# Some funny code...
return [1, 2, 3, 4]
foo(
42,
[
{
'x': ['hello', 'world'],
'y': 3.14,
},
],
)
When the code is executed, the instrospector.strict decorator will inspect the signature of the foo function and compare it with the values passed in its parameters.
If the typing of the values does not match the signature of the function, introspector will throw a TypeError exception.
Python 3.10 supported typing syntax
This paclage support the following typing syntaxes:
| Name | Description | Example |
|---|---|---|
| operator |
The Union type shortcut syntax | int | float |
Instrospector.strict available options
:arrow_right: ignore
A list of parameter names that will be excluded from the typing control.
Notice that the ignore option will always contains self and cls.
Example:
@instrospector.strict(ignore=['b'])
def foo(a: int, b: float) -> None:
...
The argument b will be ignored by the typing control.
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 introspector-0.2.1a0.tar.gz.
File metadata
- Download URL: introspector-0.2.1a0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d96044f02e80e8ea85c8b5a8774068aca239d112488b1d19398a0e5526b2dd2
|
|
| MD5 |
8554b6eb99b2697d39fc6bdcefe7677c
|
|
| BLAKE2b-256 |
145ddd0bf57712fcbcfa63691f1415fd29818cbf1cfe763b8fa6f4daede26dcc
|
File details
Details for the file introspector-0.2.1a0-py3-none-any.whl.
File metadata
- Download URL: introspector-0.2.1a0-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
905c3dff1b74beb86d722b97fe171d57bf3d47d687d84d9f1f2f2a12f9a2aba7
|
|
| MD5 |
bb5ca1a073560412bba85748009f5f2d
|
|
| BLAKE2b-256 |
b85b975c630e1f18ffec738c2817bf10e87a8fa572f643dc721e31fb716a111d
|