Metadata-Version: 1.1
Name: Jare
Version: 0.0.3
Summary: A module for A.I
Home-page: UNKNOWN
Author: Kittex0/Mohammed Daniyal
Author-email: kittex0@protonmail.com
License: MIT
Description: Installing Jare
        
        
        Since this is a python module, you have to have the module installed. 
        Know since I do have a windows and not mac or linux it might be a bit different but 
        mostly it is the same.
        
        To install Jare, simply open Command Promt(For Mac or Linux it is different, 
        you can google "how to install packages in mac/linux" if you have any of those) 
        and then type:
        
        pip install jare
        
        
        Commands:
        
        
        1.jare_run_list
        
        
        This Command takes 3 values:
        
        1.Input value (input(x))
        
        
        2.Questions list (questions = ["Hello", "How are you doing"])
        
        
        3. Answers List (answers = ["Hi", "I am fine, Thank You!"])
        
        
        BEFORE YOU CODE:
        MAKE SURE THAT THE INDEX OF THE QUESTION AND THE ANSWER LIST ARE THE SAME 
        FOR EXAMPLE: IF YOU WANT THE BOT TO SAY Hi WHEN THE USER ASKE'S hello AND 
        IF YOU WANT THE BOT TO SAY I am fine, Thank You! WHEN THE USER ASKE'S How are you doing
        THEN THE INDEX OR THE STRINGS HAVE TO BE IN THE SAME ORDER
        
        
        questions = ["Hello", "How are you doing"]
        
        
        answers = ["Hi", "I am fine, Thank You!"]
        
        
        Then it simple combines it in to a dictionary and then ask's the user for an input and 
        then prints out the responses
        
        
        
        2.jare_run_dictionary
        
        
        This is very similar to the 1st Command. Simply it takes two values the input value
        and the dictionary. Make sure that the dictionary is something like this:
        
        dictionary = {"Hello":"Hi", "How are you":"I am fine thank you!"}
        
        
        
        then ask's the user for an input and then prints out the responses
        
        
        Change Log
        ==========
        
        0.0.1 (11/07/2021)
        ------------------
        - First Release
        - Added jase_run
        - Changed Name
        
        
        
        0.0.2 (11/07/2021)
        ------------------
        - Changed Name
        - Added more info in README.md
Keywords: A.I
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
