Skip to main content

@accepts decorator to check arguments types

Project description

https://img.shields.io/badge/language-Python-blue.svg https://img.shields.io/pypi/pyversions/accepts.svg https://img.shields.io/pypi/v/accepts.svg

https://api.codacy.com/project/badge/Grade/81a64e612bec41c4afe6fc3901daa88a https://codeclimate.com/github/looking-for-a-job/accepts.py/badges/gpa.svg https://img.shields.io/scrutinizer/g/looking-for-a-job/accepts.py.svg https://sonarcloud.io/api/project_badges/measure?project=accepts.py&metric=code_smells https://sonarcloud.io/api/project_badges/measure?project=accepts.py&metric=reliability_rating

Install

`[sudo] pip install accepts`

Features

  • support multiple types argument

  • support None argument

  • human readable detailed exception message

Usage

>>> from accepts import accepts

>>> @accepts(arg1type,arg2type,...)

Examples

>>> @accepts(int)
def inc(value):
    return value+1

>>> inc(1) # ok
>>> inc(1.5) # exception
TypeError: ....

# multiple types
>>> @accepts((int,float))

# None
>>> @accepts((int,float,type(None)))

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

accepts-0.0.108.tar.gz (2.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page