Skip to main content

summary

Project description

# smoothie [![Build Status](https://api.travis-ci.org/TheSriram/smoothie.png)](https://travis-ci.org/TheSriram/smoothie)
Python Exception Based Callbacks

Add your callbacks to functions as decorators, that are slated to be called as per the Exception raised.

```python
from smoothie.king import Dispenser

def err_callback(*args, **kwargs):
print("Error handled")

juice = Dispenser()
@juice.attach(exception=IndexError,
callback=err_callback)
def vending_machine():
drinks = ['Tea','Coffee', 'Water']
return drinks[4]

vending_machine()
```

To run the unit tests,

```bash
pip install -r test-requirements.txt
cd smoothie/tests
nosetests -vs
```

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

smoothie-0.1.dev14.tar.gz (7.3 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