Directory structure:
└── coderchintan-college-information-chatbot-information/
├── README.md
├── main_with_session.py
├── mappings.py
├── std-startup.xml
├── stress.py
├── aiml/
│ ├── __init__.py
│ ├── AimlParser.py
│ ├── constants.py
│ ├── DefaultSubs.py
│ ├── Kernel.py
│ ├── PatternMgr.py
│ ├── Utils.py
│ ├── WordSub.py
│ └── script/
│ ├── __init__.py
│ ├── aimlvalidate.py
│ └── bot.py
├── database/
│ ├── bot_profile.aiml
│ ├── bye.aiml
│ ├── date.aiml
│ ├── default.aiml
│ ├── domain_academics.aiml
│ ├── domain_Admissions.aiml
│ ├── domain_ExamCell.aiml
│ ├── domain_notice.aiml
│ ├── domain_PlacementCell.aiml
│ ├── emotion.aiml
│ ├── invalidated_log.txt
│ ├── questions.txt
│ ├── std-65percent.aiml
│ ├── std-botmaster.aiml
│ ├── std-connect.aiml
│ ├── std-disconnect.aiml
│ ├── std-errors.aiml
│ ├── std-hello.aiml
│ ├── std-numbers.aiml
│ ├── std-suffixes.aiml
│ └── std-yesno.aiml
├── seminar2_progress/
│ ├── sntnce.py
│ └── shrya/
│ ├── db.py
│ ├── gpa_query.py
│ ├── keywords.py
│ └── sqlite.rar
├── static/
│ └── style.css
├── templates/
│ └── index.html
└── test/
├── __init__.py
├── __main__.py
├── encoding.aiml
├── self-test.aiml
├── test_encoding.py
├── test_kernel.py
├── test_utils.py
└── test_wordsub.py