Metadata-Version: 2.1
Name: pretty-logic
Version: 1.0.1
Summary: A pretty logic library
Home-page: https://github.com/aqeelat/pretty-logic.git
Author: Abdullah Alaqeel
Author-email: abdullah.t.aqeel@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Pretty Logic

Are you tired of your multi-line `or` statements looking ugly? Would you rather use commas between your booleans? This is the package for you.

It's very simple!

### And
```python
from pretty_logic import _and

if _and(True, False, True, True):
    print("This is false")
else:
    print("This is true")
```

### Or
```python
from pretty_logic import _or

if _or(True, False, True, True):
    print("This is true")
else:
    print("This is false")
```


