Probably the small python package, only includes raise_if function
Project description
[](https://travis-ci.org/rochacbruno/raise_if)
[](https://coveralls.io/r/rochacbruno/raise_if)


[](http://forthebadge.com)
[](http://forthebadge.com)
[](http://forthebadge.com)
# raise_if
Python could have raise conditions like Ruby.
```ruby
def i_must_have_truth(value)
raise TypeError, 'You must give me truth' if value == false
end
```
But the only one line option that works hurts PEP8
```python
def i_must_have_truth(value):
if not value: raise TypeError('You must give me truth')
```
So..
```python
$ pip install raise_if
import raise_if
def i_must_have_truth(value):
raise_if(not value, TypeError, 'You must give me truth')
```
Pass exception type and arguments
```python
raise_if(not 1 == 2, TypeError, 'Fails', another_arg='foo')
```
or
```python
raise_if(not 1 == 2, TypeError('Fails', another_arg='foo'))
```
Why??
Because I am lazy and I do not like extra breaks in a chain of if statements!
:)
Status](https://travis-ci.org/rochacbruno/raise_if.png)](https://travis-ci.org/rochacbruno/raise_if)
[](https://coveralls.io/r/rochacbruno/raise_if)


[](http://forthebadge.com)
[](http://forthebadge.com)
[](http://forthebadge.com)
# raise_if
Python could have raise conditions like Ruby.
```ruby
def i_must_have_truth(value)
raise TypeError, 'You must give me truth' if value == false
end
```
But the only one line option that works hurts PEP8
```python
def i_must_have_truth(value):
if not value: raise TypeError('You must give me truth')
```
So..
```python
$ pip install raise_if
import raise_if
def i_must_have_truth(value):
raise_if(not value, TypeError, 'You must give me truth')
```
Pass exception type and arguments
```python
raise_if(not 1 == 2, TypeError, 'Fails', another_arg='foo')
```
or
```python
raise_if(not 1 == 2, TypeError('Fails', another_arg='foo'))
```
Why??
Because I am lazy and I do not like extra breaks in a chain of if statements!
:)
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
raise_if-0.1.4.tar.gz
(2.1 kB
view details)
File details
Details for the file raise_if-0.1.4.tar.gz.
File metadata
- Download URL: raise_if-0.1.4.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcaf75a3bdbe1b5cfcb59ddcb98c21074c13132c903fe1d33fed79e0a1bd97e0
|
|
| MD5 |
d550bca903da309a6ca87b23fb3c6a9c
|
|
| BLAKE2b-256 |
09d0bfa18ae9d9599376d1afa3e0f9c1cf347addf8e49542a4e48d08d52d430b
|