Runtime type checking decorators with sync and async support.
Project description
typesentinel
typesentinel is a lightweight, dependency-free library for runtime type checking of Python function arguments. It supports both synchronous and asynchronous functions, Union types, custom failure handlers, and signature-aware error messages.
pip install typesentinel
🧠 Why typesentinel?
Other libraries like Pydantic, Beartype, Enforce, or typeguard offer runtime validation, but often come with heavy dependencies, global monkey-patching, performance costs, or complicated configuration.
typesentinel focuses on one thing and does it well:
- ✔ Minimal — zero dependencies, tiny footprint
- ✔ Explicit — works only where you decorate; never global
- ✔ Async-friendly — supports async functions & async failure handlers
- ✔ Precise errors — error messages include the real parameter names
- ✔ Flexible — annotations, shorthand, or explicit
TypeCheckobjects - ✔ Safe — never mutates your function’s signature or typing info
If you want simple, predictable runtime validation with no overhead, typesentinel is built for you.
🚀 Quick Start
Type checking from function annotations
from typesentinel.decorator import type_check
@type_check
def greet(name: str, excited: bool = False):
return f"Hello, {name}{'!' if excited else ''}"
greet("Alice") # OK
greet(123) # ❌ Invalid type for argument 'name': expected str, got int
Shorthand keyword type checks
@type_check(name=str, times=int)
async def repeat(name, times):
return ", ".join(name for _ in range(times))
🔍 Union Type Support
from typing import Union
@type_check(a=Union[int, str])
def fn(a):
return a
@type_check(a=int | str)
def fn(a):
return a
Error message:
Invalid type for argument 'a': expected int | str, got float
🛠 Custom Failure Handling
from typesentinel.decorator import type_check
from typesentinel.type_check import TypeCheckResult
async def capture(*fails: TypeCheckResult):
raise ValueError("validation failed")
@type_check(a=int, on_failure=capture)
async def double(a):
return a * 2
🧩 Explicit TypeCheck Objects
from typesentinel.decorator import type_check
from typesentinel.type_check import TypeCheck, ArgKind
checks = [
TypeCheck(0, int, ArgKind.POSITIONAL),
TypeCheck("label", str, ArgKind.KEYWORD, message="label must be a string"),
]
@type_check(checks)
def render(value, *, label):
return f"{label}: {value}"
🧪 Testing
python -m pytest
📄 License
MIT License. See LICENSE for details.
---
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 typesentinel-0.2.3.tar.gz.
File metadata
- Download URL: typesentinel-0.2.3.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
532adc78e53f375f534745ef08c4be09853ce7dfa432ea314bb5cef7596d4207
|
|
| MD5 |
38dc389cd9f5b46d24c0be1859cf0c42
|
|
| BLAKE2b-256 |
38782e33e990a101e838afb83b87ea4946da4d6c391b2512237317a13ffa99bd
|
File details
Details for the file typesentinel-0.2.3-py3-none-any.whl.
File metadata
- Download URL: typesentinel-0.2.3-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8595c068feb68b4089812c6f5710c04be3c1d240058c96dc28dcce7fba72fc7
|
|
| MD5 |
360e44c08ffb0c31687b6744d08bca96
|
|
| BLAKE2b-256 |
a9068f0d72b65cfa33d40bf7445277314891ee15e5a6b39ec84e7233e66d0ca7
|