Metadata-Version: 2.1
Name: JenAssistant
Version: 0.0.0
Summary: A package which can be used for virtual assistants
Home-page: https://github.com/VishalShenoy2002/JEN
Author: Vishal Balakrishna Shenoy
Author-email: vishal.bshenoy@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/VishalShenoy2002/JEN/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# JEN

## What is JEN?
Jen is a package which has a list of different types of assistants which can help you in virtual assistant projects.

## Sample Code

Code For making Simple Assistant

```python
from jen.assistant import SimpleAssistant
from jen.functions import display_cli_calendar

assistant=SimpleAssistant("Assistant")

command=input("What do you want the Assistant to Do :")

if "calendar" in command:
    year=int(input("Enter Year:"))
    assistant.display_response("Displaying the calendar for {}".format(year))
    display_cli_calendar(year)
```

