MANIFEST.in
license.md
readme.md
requirements.txt
setup.cfg
setup.py
ChatterBot.egg-info/PKG-INFO
ChatterBot.egg-info/SOURCES.txt
ChatterBot.egg-info/dependency_links.txt
ChatterBot.egg-info/not-zip-safe
ChatterBot.egg-info/requires.txt
ChatterBot.egg-info/top_level.txt
chatterbot/__init__.py
chatterbot/chatterbot.py
chatterbot/training.py
chatterbot/adapters/__init__.py
chatterbot/adapters/adapter.py
chatterbot/adapters/exceptions.py
chatterbot/adapters/io/__init__.py
chatterbot/adapters/io/io.py
chatterbot/adapters/io/io_json.py
chatterbot/adapters/io/multi_adapter.py
chatterbot/adapters/io/no_output.py
chatterbot/adapters/io/terminal.py
chatterbot/adapters/logic/__init__.py
chatterbot/adapters/logic/base_match.py
chatterbot/adapters/logic/closest_match.py
chatterbot/adapters/logic/closest_meaning.py
chatterbot/adapters/logic/evaluate_mathematically.py
chatterbot/adapters/logic/logic.py
chatterbot/adapters/logic/mixins.py
chatterbot/adapters/logic/multi_adapter.py
chatterbot/adapters/logic/no_knowledge_adapter.py
chatterbot/adapters/logic/time_adapter.py
chatterbot/adapters/logic/weather.py
chatterbot/adapters/logic/data/math_words_EN.json
chatterbot/adapters/storage/__init__.py
chatterbot/adapters/storage/jsondatabase.py
chatterbot/adapters/storage/mongodb.py
chatterbot/adapters/storage/storage.py
chatterbot/adapters/storage/twitter_storage.py
chatterbot/conversation/__init__.py
chatterbot/conversation/signature.py
chatterbot/conversation/statement.py
chatterbot/conversation/utils.py
chatterbot/corpus/__init__.py
chatterbot/corpus/corpus.py
chatterbot/corpus/data/Portuguese/conversations_pt-BR.json
chatterbot/corpus/data/Portuguese/greetings_pt-BR.json
chatterbot/corpus/data/Portuguese/trivia_pt-BR.json
chatterbot/corpus/data/english/conversations.json
chatterbot/corpus/data/english/greetings.json
chatterbot/corpus/data/english/trivia.json
chatterbot/corpus/data/italian/conversations.json
chatterbot/corpus/data/italian/greetings.json
chatterbot/corpus/data/italian/trivia.json
chatterbot/utils/__init__.py
chatterbot/utils/clean.py
chatterbot/utils/module_loading.py
chatterbot/utils/pos_tagger.py
chatterbot/utils/read_input.py
chatterbot/utils/stop_words.py
chatterbot/utils/word_net.py
tests/__init__.py
tests/base_case.py
tests/test_chatbot.py
tests/test_utils.py
tests/conversation_tests/test_responses.py
tests/conversation_tests/test_signatures.py
tests/conversation_tests/test_statements.py
tests/conversation_tests/test_utils.py
tests/corpus_tests/__init__.py
tests/corpus_tests/test_corpus.py
tests/io_adapter_tests/__init__.py
tests/io_adapter_tests/test_json_adapter.py
tests/io_adapter_tests/test_no_output_adapter.py
tests/io_adapter_tests/test_terminal_adapter.py
tests/logic_adapter_tests/__init__.py
tests/logic_adapter_tests/test_closest_match.py
tests/logic_adapter_tests/test_closest_meaning.py
tests/logic_adapter_tests/test_data_cache.py
tests/logic_adapter_tests/test_evaluate_mathematically.py
tests/logic_adapter_tests/test_mixins.py
tests/logic_adapter_tests/test_time.py
tests/storage_adapter_tests/__init__.py
tests/storage_adapter_tests/test_jsondb_adapter.py
tests/storage_adapter_tests/test_mongo_adapter.py
tests/storage_adapter_tests/integration_tests/__init__.py
tests/storage_adapter_tests/integration_tests/base.py
tests/storage_adapter_tests/integration_tests/json_integration_tests.py
tests/storage_adapter_tests/integration_tests/mongo_integration_tests.py
tests/training_tests/__init__.py
tests/training_tests/test_training.py
tests/training_tests/test_training_from_corpus.py