Metadata-Version: 2.1
Name: fancybox
Version: 0.1.1
Summary: Print beautiful message boxes on command line
Home-page: https://github.com/shivampip/FirstPyPl
Author: Shivam Agrawal
Author-email: shivam301296@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# FancyBox

Fancy Box is a Python module that allows you to print beautiful message boxes on command line. There are predefined message boxes, you can use or you can create you own custom box.


## Installation
```
pip3 install fancybox
```

## Uses
* Simple messages
```
import fancybox as fb

fb.success("Test Successful")
fb.error("IOError occured")
fb.info("Setup Completed")
fb.warning("name is NULL")
```

![Output Screenshot](/imgs/fancybox_messages.png)

* Box with title and description

![Table Screenshot](/imgs/fancybox_table.png)



