Simple decorators to raise a TypeError, if paramates type not satisfied
Project description
static_parameters
-------------
Simple decorators to raise a TypeError, if parameters
and it's static type added to the description __doc__
as such (parameter_name: str) not satisfied.
Example:
from static_parameters import (
function_parameters,
class_parameters
)
@function_parameters
def example(a, b):
'''Some example to demo ((a: str)) ((b: str))'''
return a + b
# For all methods in a class
@class_parameters(function_parameters)
class Example:
def exm1(a, b):
''' ((a: bool)), ((b: int))
def exm2():
...
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
static_parameters-0.4.tar.gz
(2.7 kB
view details)
File details
Details for the file static_parameters-0.4.tar.gz
.
File metadata
- Download URL: static_parameters-0.4.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a107c504ee431a1fd21876c3dc00b8253aad66fad527887025e07e38fc392053 |
|
MD5 | 66d044a21a2fa9e5fa1e828670cb2938 |
|
BLAKE2b-256 | edcdc9e448690b21e3b6183b9f976d7cc6744570daa79025db898bda359e7b09 |