Python utility decorator and context manager for swapping exceptions
Project description
swap-exceptions
Python utility decorator and context manager for swapping exceptions.
Basic Usage
As a decorator:
from swap_exceptions import swap_exceptions
@swap_exceptions({KeyError: ValueError("Incorrect value")})
def get_value(key: str):
d = {'a': 1, 'b': 2}
return d[key]
get_value('c') # ValueError: Incorrect value
Or as a context manager:
from swap_exceptions import swap_exceptions
def get_value(key: str):
d = {'a': 1, 'b': 2}
with swap_exceptions({KeyError: ValueError("Incorrect value")}):
return d[key]
get_value('c') # ValueError: Incorrect value
Advanced Usage
Mapping key can also be a tuple:
from swap_exceptions import swap_exceptions
@swap_exceptions({(KeyError, TypeError): ValueError("Incorrect value")})
def get_value(key: str):
d = {'a': 1, 'b': 2, 'c': 'not a number'}
return d[key] + 10
get_value('c') # ValueError: Incorrect value
Mapping value can also be a factory that generates the exception:
from swap_exceptions import swap_exceptions
@swap_exceptions({KeyError: lambda e: ValueError(f"Incorrect value {e.args[0]}")})
def get_value(key: str):
d = {'a': 1, 'b': 2}
return d[key]
get_value('c') # ValueError: Incorrect value c
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
swap-exceptions-1.0.2.tar.gz
(3.5 kB
view hashes)
Built Distribution
Close
Hashes for swap_exceptions-1.0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36e708836de4bb5e4c211a4cf502aa6c91f7d0e0e3b0f0fcdbcd08d11aba409b |
|
MD5 | c1d0bd080b3e28e5f6a92f212479cd0c |
|
BLAKE2b-256 | 7d3255eb9e4df53bcf24c933a81a616f328c54258b816a389a80857d761cc3e1 |