{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [], "description": "ChatterBot is a machine learning, conversational dialog engine.\n\nHome-page: https://github.com/gunthercox/ChatterBot\nAuthor: Gunther Cox\nAuthor-email: gunthercx@gmail.com\nLicense: BSD\nDownload-URL: https://github.com/gunthercox/ChatterBot/tarball/1.0.5\nProject-URL: Documentation, https://chatterbot.readthedocs.io\nDescription: ![ChatterBot: Machine learning in Python](https://i.imgur.com/b3SCmGT.png)\n \n # ChatterBot\n \n ChatterBot is a machine-learning based conversational dialog engine build in\n Python which makes it possible to generate responses based on collections of\n known conversations. The language independent design of ChatterBot allows it\n to be trained to speak any language.\n \n [![Package Version](https://img.shields.io/pypi/v/chatterbot.svg)](https://pypi.python.org/pypi/chatterbot/)\n [![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/)\n [![Django 2.0](https://img.shields.io/badge/Django-2.0-blue.svg)](https://docs.djangoproject.com/en/2.1/releases/2.0/)\n [![Requirements Status](https://requires.io/github/gunthercox/ChatterBot/requirements.svg?branch=master)](https://requires.io/github/gunthercox/ChatterBot/requirements/?branch=master)\n [![Build Status](https://travis-ci.org/gunthercox/ChatterBot.svg?branch=master)](https://travis-ci.org/gunthercox/ChatterBot)\n [![Documentation Status](https://readthedocs.org/projects/chatterbot/badge/?version=stable)](http://chatterbot.readthedocs.io/en/stable/?badge=stable)\n [![Coverage Status](https://img.shields.io/coveralls/gunthercox/ChatterBot.svg)](https://coveralls.io/r/gunthercox/ChatterBot)\n [![Code Climate](https://codeclimate.com/github/gunthercox/ChatterBot/badges/gpa.svg)](https://codeclimate.com/github/gunthercox/ChatterBot)\n [![Join the chat at https://gitter.im/chatterbot/Lobby](https://badges.gitter.im/chatterbot/Lobby.svg)](https://gitter.im/chatterbot/Lobby?utm_source=badge&utm_medium=badge&utm_content=badge)\n \n An example of typical input would be something like this:\n \n > **user:** Good morning! How are you doing? \n > **bot:** I am doing very well, thank you for asking. \n > **user:** You're welcome. \n > **bot:** Do you like hats? \n \n ## How it works\n \n An untrained instance of ChatterBot starts off with no knowledge of how to communicate. Each time a user enters a statement, the library saves the text that they entered and the text that the statement was in response to. As ChatterBot receives more input the number of responses that it can reply and the accuracy of each response in relation to the input statement increase. The program selects the closest matching response by searching for the closest matching known statement that matches the input, it then returns the most likely response to that statement based on how frequently each response is issued by the people the bot communicates with.\n \n ## Installation\n \n This package can be installed from [PyPi](https://pypi.python.org/pypi/ChatterBot) by running:\n \n ```\n pip install chatterbot\n ```\n \n ## Basic Usage\n \n ```\n from chatterbot import ChatBot\n from chatterbot.trainers import ChatterBotCorpusTrainer\n \n chatbot = ChatBot('Ron Obvious')\n \n # Create a new trainer for the chatbot\n trainer = ChatterBotCorpusTrainer(chatbot)\n \n # Train the chatbot based on the english corpus\n trainer.train(\"chatterbot.corpus.english\")\n \n # Get a response to an input statement\n chatbot.get_response(\"Hello, how are you today?\")\n ```\n \n # Training data\n \n ChatterBot comes with a data utility module that can be used to train chat bots.\n At the moment there is training data for over a dozen languages in this module.\n Contributions of additional training data or training data\n in other languages would be greatly appreciated. Take a look at the data files\n in the [chatterbot-corpus](https://github.com/gunthercox/chatterbot-corpus)\n package if you are interested in contributing.\n \n ```\n from chatterbot.trainers import ChatterBotCorpusTrainer\n \n # Create a new trainer for the chatbot\n trainer = ChatterBotCorpusTrainer(chatbot)\n \n # Train based on the english corpus\n trainer.train(\"chatterbot.corpus.english\")\n \n # Train based on english greetings corpus\n trainer.train(\"chatterbot.corpus.english.greetings\")\n \n # Train based on the english conversations corpus\n trainer.train(\"chatterbot.corpus.english.conversations\")\n ```\n \n **Corpus contributions are welcome! Please make a pull request.**\n \n # [Documentation](https://chatterbot.readthedocs.io/)\n \n View the [documentation](https://chatterbot.readthedocs.io/)\n for ChatterBot on Read the Docs.\n \n To build the documentation yourself using [Sphinx](http://www.sphinx-doc.org/), run:\n \n ```\n sphinx-build -b html docs/ build/\n ```\n \n # Examples\n \n For examples, see the [examples](https://github.com/gunthercox/ChatterBot/tree/master/examples)\n directory in this project's git repository.\n \n There is also an example [Django project using ChatterBot](https://github.com/gunthercox/ChatterBot/tree/master/examples), as well as an example [Flask project using ChatterBot](https://github.com/chamkank/flask-chatterbot).\n \n # History\n \n See release notes for changes https://github.com/gunthercox/ChatterBot/releases\n \n # Development pattern for contributors\n \n 1. [Create a fork](https://help.github.com/articles/fork-a-repo/) of\n the [main ChatterBot repository](https://github.com/gunthercox/ChatterBot) on GitHub.\n 2. Make your changes in a branch named something different from `master`, e.g. create\n a new branch `my-pull-request`.\n 3. [Create a pull request](https://help.github.com/articles/creating-a-pull-request/).\n 4. Please follow the [Python style guide for PEP-8](https://www.python.org/dev/peps/pep-0008/).\n 5. Use the projects [built-in automated testing](https://chatterbot.readthedocs.io/en/latest/testing.html).\n to help make sure that your contribution is free from errors.\n \n # License\n \n ChatterBot is licensed under the [BSD 3-clause license](https://opensource.org/licenses/BSD-3-Clause).\n \nKeywords: ChatterBot,chatbot,chat,bot\nPlatform: any\nClassifier: Development Status :: 4 - Beta\nClassifier: Intended Audience :: Developers\nClassifier: License :: OSI Approved :: BSD License\nClassifier: Environment :: Console\nClassifier: Environment :: Web Environment\nClassifier: Operating System :: OS Independent\nClassifier: Topic :: Software Development :: Libraries :: Python Modules\nClassifier: Topic :: Communications :: Chat\nClassifier: Topic :: Internet\nClassifier: Programming Language :: Python\nClassifier: Programming Language :: Python :: 3\nClassifier: Programming Language :: Python :: 3.4\nClassifier: Programming Language :: Python :: 3.5\nClassifier: Programming Language :: Python :: 3.6\nClassifier: Programming Language :: Python :: 3.7\nClassifier: Programming Language :: Python :: 3 :: Only\nRequires-Python: >=3.4, <4\nDescription-Content-Type: text/markdown\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "ChatterBot", "package_url": "https://pypi.org/project/ChatterBot/", "platform": "", "project_url": "https://pypi.org/project/ChatterBot/", "project_urls": null, "release_url": "https://pypi.org/project/ChatterBot/1.0.5/", "requires_dist": [ "mathparse (<0.2,>=0.1)", "nltk (<4.0,>=3.2)", "pint (>=0.8.1)", "pymongo (<4.0,>=3.3)", "python-dateutil (<2.8,>=2.7)", "pyyaml (<5.2,>=5.1)", "spacy (<2.2,>=2.1)", "sqlalchemy (<1.3,>=1.2)", "pytz" ], "requires_python": "", "summary": "", "version": "1.0.5" }, "last_serial": 4978825, "releases": { "0.0.0": [ { "comment_text": "", "digests": { "md5": "27dd59c2681eb36d314e71f69d2b77be", "sha256": "aaa342098e002d0d414f3c0174c419ed75ace62a8ef1cb96c4a30d6ccbe09d60" }, "downloads": -1, "filename": "ChatterBot-0.0.0.tar.gz", "has_sig": false, "md5_digest": "27dd59c2681eb36d314e71f69d2b77be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7752, "upload_time": "2014-10-12T00:14:40", "url": "https://files.pythonhosted.org/packages/44/fa/bceb84ba66ace7993709f0597c523b110e1a0efd06df0b757f049b39dd5e/ChatterBot-0.0.0.tar.gz" } ], "0.0.1": [ { "comment_text": "", "digests": { "md5": "b89a4ca01c08b908e8aab08c306c669e", "sha256": "6a9c7bb78e6420f4e9952fa3c3150aef9ee1cca8af2e96e51b5648ec528c5c3c" }, "downloads": -1, "filename": "ChatterBot-0.0.1.tar.gz", "has_sig": false, "md5_digest": "b89a4ca01c08b908e8aab08c306c669e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8093, "upload_time": "2014-10-14T22:50:06", "url": "https://files.pythonhosted.org/packages/c0/7b/a9ae52c6c195aff2deac6287dcd933b6b792a9b09d28738f63483c1dd9af/ChatterBot-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "0f89109f3716a1d532337de7efef3f6d", "sha256": "bf9e5c602d5c78a753e6445c103498552643f3729f7d166b4ed5def40bf9aeb6" }, "downloads": -1, "filename": "ChatterBot-0.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0f89109f3716a1d532337de7efef3f6d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9259, "upload_time": "2014-10-16T00:18:19", "url": "https://files.pythonhosted.org/packages/61/59/702bf96373e955c68ed58f7fef2c1feea27b3f882756f40fe578006ed60f/ChatterBot-0.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4fc90d67a65509431937a6ab17a71330", "sha256": "984656bc81cde5b9f5ae33b60c2c223e8fd6c157816267213ff6a7150a95c00e" }, "downloads": -1, "filename": "ChatterBot-0.0.2.tar.gz", "has_sig": false, "md5_digest": "4fc90d67a65509431937a6ab17a71330", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9811, "upload_time": "2014-10-16T00:18:05", "url": "https://files.pythonhosted.org/packages/56/d1/a87491d7345562e4e15df03c3cb3aaa01ef6d4ce1cd36f7bc3fbfe5995e3/ChatterBot-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "e9d1ecb3b67af881d570429f678694ac", "sha256": "acdbd0b7caf17bdc64fd251e33fd1dec09106261ce405fc04c5da8ccafb34601" }, "downloads": -1, "filename": "ChatterBot-0.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e9d1ecb3b67af881d570429f678694ac", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15153, "upload_time": "2014-12-26T14:36:44", "url": "https://files.pythonhosted.org/packages/85/8a/162bf82c14695b231b1297128076372284b36fc9e69d68fbc2c865b481c3/ChatterBot-0.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac02801d07767c5da3a75d0de9fe95a2", "sha256": "f03e04775f0b6e299cd4029528c3f0b35c4f8147fb0e5f37c5f444cdbb28b483" }, "downloads": -1, "filename": "ChatterBot-0.0.3.tar.gz", "has_sig": false, "md5_digest": "ac02801d07767c5da3a75d0de9fe95a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20242, "upload_time": "2014-12-26T14:36:34", "url": "https://files.pythonhosted.org/packages/d8/75/a3235a70b9dde027e3843849f41cb559f936712c82ab71df41285718359f/ChatterBot-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "813fe27e75e06e0302c3bd9349f69885", "sha256": "21d27d57679d30b48e2a8ab72c0fac2722eb63d37c0711fae4f5868500d7537a" }, "downloads": -1, "filename": "ChatterBot-0.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "813fe27e75e06e0302c3bd9349f69885", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15290, "upload_time": "2015-01-24T21:28:08", "url": "https://files.pythonhosted.org/packages/71/a5/82d3cb745ae01f1600c93d7379cff1630a1b22500e35a04b8bd7ccba6a70/ChatterBot-0.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d977a41cb994ed32344777624fd871ad", "sha256": "a0dd6d2f9bb0915c4a4e5c452a31fb6bd15a57bfe772aa315e49f44efe315555" }, "downloads": -1, "filename": "ChatterBot-0.0.4.tar.gz", "has_sig": false, "md5_digest": "d977a41cb994ed32344777624fd871ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20771, "upload_time": "2015-01-24T21:27:46", "url": "https://files.pythonhosted.org/packages/e6/5a/84db8952b4208500b7760d23e60471447c1f0e9e568989750d571c494326/ChatterBot-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "9471060c51bd32ef6b235fa3e7b3ac6c", "sha256": "a3e4fa6428026a1f90d4e0ac6878ac280626a7bb0229dfbd8a8e641f1ff81d7e" }, "downloads": -1, "filename": "ChatterBot-0.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9471060c51bd32ef6b235fa3e7b3ac6c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16049, "upload_time": "2015-02-01T01:44:29", "url": "https://files.pythonhosted.org/packages/7d/c6/c0c58d607c1a583ecfcb4a257bdd9be744b1fd40a0117063840632cd24e2/ChatterBot-0.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c4233a9d1f0cdbdfacb8350885e2ae6", "sha256": "ba047f036b095ca624d38ecfd10afcfc69feaab5d8d618e1f85322e34aa21195" }, "downloads": -1, "filename": "ChatterBot-0.0.5.tar.gz", "has_sig": false, "md5_digest": "9c4233a9d1f0cdbdfacb8350885e2ae6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21225, "upload_time": "2015-02-01T01:44:23", "url": "https://files.pythonhosted.org/packages/fc/73/e7d695e6edf9c52c763507044e7fcbfcd3186afa1987627f5fee561e2ead/ChatterBot-0.0.5.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "095cd2999ecc6e058b4996a218271162", "sha256": "793d30f10860dd362fa9c202b6fce7d643a97c72e62d018ee34f22b03ae79884" }, "downloads": -1, "filename": "ChatterBot-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "095cd2999ecc6e058b4996a218271162", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15537, "upload_time": "2015-02-03T11:54:41", "url": "https://files.pythonhosted.org/packages/82/31/29331dcc41ca0cda20c4f479bf4c90bf3b3fd4eda53c7bf7e5bce75a59ab/ChatterBot-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d11b9c6f2087a71a4466a8833c18280a", "sha256": "c4a5d9a963de84b04ae5524735736944d017780a071706ab11f6bdf278d045ce" }, "downloads": -1, "filename": "ChatterBot-0.1.0.tar.gz", "has_sig": false, "md5_digest": "d11b9c6f2087a71a4466a8833c18280a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19590, "upload_time": "2015-02-03T11:54:32", "url": "https://files.pythonhosted.org/packages/81/bb/37b685e2bd1048f93181edb1b92adaf1cc5cccfc618570650af2719ea88e/ChatterBot-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "built for Linux-3.16.0-30-generic-x86_64-with-glibc2.4", "digests": { "md5": "f95db934ec97012efb5838b8e590403b", "sha256": "ee803edbab1b85800ea0bcf29746dd5af9c9032adc1189185888014de5417501" }, "downloads": -1, "filename": "ChatterBot-0.1.1.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "f95db934ec97012efb5838b8e590403b", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 24908, "upload_time": "2015-02-14T16:08:56", "url": "https://files.pythonhosted.org/packages/21/dd/2ee601e963501bdadb48932d39ebb11cc4eb955b31ee54c9798daab2b556/ChatterBot-0.1.1.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "93c113864d50a0df544bd8a28760093d", "sha256": "1c7556d420753a3c391cf370f211f82c6a4cc333653dcd3b8f9a540ec979b7d2" }, "downloads": -1, "filename": "ChatterBot-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "93c113864d50a0df544bd8a28760093d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29063, "upload_time": "2015-02-14T16:09:03", "url": "https://files.pythonhosted.org/packages/54/72/f93ebb8f14b204d2c9870b8495ed41862e81315086500a60d6486f66ed37/ChatterBot-0.1.1-py2.py3-none-any.whl" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "f51d92fbe0941602cbec2ec4ed806878", "sha256": "f1bc3e1389a02ab70d04f6db1a84c3de60ff145d930959345813ac6d24ef46a7" }, "downloads": -1, "filename": "ChatterBot-0.1.2.tar.gz", "has_sig": false, "md5_digest": "f51d92fbe0941602cbec2ec4ed806878", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22185, "upload_time": "2015-05-22T22:05:58", "url": "https://files.pythonhosted.org/packages/27/dc/59c769ffc5155fc084a6c243d1fa7a772c4163110826fbc77d86358800bb/ChatterBot-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "f550e239fbab0fe8f2dcb50ad700f7b6", "sha256": "cb943bd90ac18ce0fd349b4b4c0bbe2f9cb63624f35b4dc3f25a6a8169d1aeb3" }, "downloads": -1, "filename": "ChatterBot-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f550e239fbab0fe8f2dcb50ad700f7b6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 45286, "upload_time": "2015-05-24T19:45:30", "url": "https://files.pythonhosted.org/packages/6c/e9/dab8217c31b22887c4bcf592e17ddb97558cef023e359534808e3449be61/ChatterBot-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7fd4a901653136d6dd70ef50e2f8df97", "sha256": "90efd3929cfb5314ed94438b315402159b1155c3b0a919534f1f732581665462" }, "downloads": -1, "filename": "ChatterBot-0.2.0.tar.gz", "has_sig": false, "md5_digest": "7fd4a901653136d6dd70ef50e2f8df97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23671, "upload_time": "2015-05-24T19:45:07", "url": "https://files.pythonhosted.org/packages/b5/66/a5dfe386fe0ed4e950abdd3a8afe88a6178ad48a7f664c8532b5be9b5ff6/ChatterBot-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "674dab4670fea110b239f198662502d7", "sha256": "6530ea6f8199cd146cdf6f70a2a19423620514fc2964f03f4b5265ce77a14be2" }, "downloads": -1, "filename": "ChatterBot-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "674dab4670fea110b239f198662502d7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 50365, "upload_time": "2015-07-15T12:26:09", "url": "https://files.pythonhosted.org/packages/9c/4b/a15a559dcce94ca2f4ba1ddd1dd4e60f0efc7b40d7f2be4a87b50b29dcd8/ChatterBot-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8c7575217559a13ccb1818d2d34db9fc", "sha256": "0844954933141cb16cdd47d7e95d02c7f33f81c6f1fe54589178ac3ef410ec8f" }, "downloads": -1, "filename": "ChatterBot-0.2.1.tar.gz", "has_sig": false, "md5_digest": "8c7575217559a13ccb1818d2d34db9fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21265, "upload_time": "2015-07-15T12:12:59", "url": "https://files.pythonhosted.org/packages/a5/d8/0e76f1f9cafa00651154d159bc3b36e6a2a983c6e8ef8c79a3224ba5e45e/ChatterBot-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "5679a2d38e6ae3b82f3944b001ff5b92", "sha256": "0ad9543947df47284d1c3c37bb0705723973f7396f669b0d4155a1b86f213fdc" }, "downloads": -1, "filename": "ChatterBot-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5679a2d38e6ae3b82f3944b001ff5b92", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 54986, "upload_time": "2015-07-25T10:59:50", "url": "https://files.pythonhosted.org/packages/73/be/1e55785eb1b2941ffcc1edd228749aec857aac07d6762618a01a7c88a0b7/ChatterBot-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "92bf7bc14c77d9115887d07f496c62d1", "sha256": "8675c0d96af49e90af128396fb4f32addb60c30d8c519bfdaa779461c2249ab9" }, "downloads": -1, "filename": "ChatterBot-0.2.2.tar.gz", "has_sig": false, "md5_digest": "92bf7bc14c77d9115887d07f496c62d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18014, "upload_time": "2015-07-25T10:59:37", "url": "https://files.pythonhosted.org/packages/fa/c3/1f730353fd1c3525896eb47f13ec27339042be11861c0e52e8add74e682c/ChatterBot-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "14af50420dc8a66ed923afcaf02c6190", "sha256": "0484fce95ebf3c3cc5c915c442414c771b8d2a1ef9edc50e4b493ba2988a08f9" }, "downloads": -1, "filename": "ChatterBot-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "14af50420dc8a66ed923afcaf02c6190", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 61732, "upload_time": "2015-09-03T00:28:45", "url": "https://files.pythonhosted.org/packages/cd/f5/a37fa11d16c7ffd054226c086a33446aa13fcef262eacc536bab6d7f3abb/ChatterBot-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "65b7b5e8689c4ae05881cbc1a6f529eb", "sha256": "bc62df1031dd0cf117bbcb8bfdb98d47d2f0f375e97a040357a6ec765ab455e9" }, "downloads": -1, "filename": "ChatterBot-0.2.3.tar.gz", "has_sig": false, "md5_digest": "65b7b5e8689c4ae05881cbc1a6f529eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19545, "upload_time": "2015-09-03T00:28:34", "url": "https://files.pythonhosted.org/packages/84/60/c05c8c74a697cb04ed6b450b57f602ae2972c409c3e8701893dd717909cf/ChatterBot-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "0d831e1c34adecec4ded4698e9b7b2be", "sha256": "072e4125a0a81eab5cf2b923bbf736f585581f19eb90dab34850b2479514a88b" }, "downloads": -1, "filename": "ChatterBot-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0d831e1c34adecec4ded4698e9b7b2be", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 64294, "upload_time": "2015-09-07T16:40:52", "url": "https://files.pythonhosted.org/packages/f3/a1/6d4a8c828c581320b54f631f5a82d67be8883ec013450e1f45ed4c4931be/ChatterBot-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b6a25ad832417de7072da50a9ec0d46", "sha256": "f31df6ca7d14b7c7a98ea55f206d2fe059a694642977f74ebe34052a628d5e94" }, "downloads": -1, "filename": "ChatterBot-0.2.4.tar.gz", "has_sig": false, "md5_digest": "3b6a25ad832417de7072da50a9ec0d46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19308, "upload_time": "2015-09-07T16:40:38", "url": "https://files.pythonhosted.org/packages/51/f9/a89f15c49cac700374901e6a3aae17975c1014d2281fe6850b06c76582b1/ChatterBot-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "8ca1b83c950018a26ccac003592d7daa", "sha256": "cbf564328694d11efef12d2a3d6d60bd7ae90c60ccd72eb2055c8084791795ee" }, "downloads": -1, "filename": "ChatterBot-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8ca1b83c950018a26ccac003592d7daa", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 67048, "upload_time": "2015-09-16T23:32:31", "url": "https://files.pythonhosted.org/packages/b1/bd/0a1cbc2c7235e9a7b49aad7c7ec0df1a627c48d86422974500fb7950d86c/ChatterBot-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b35fedc2c67d3db92939b56047b8a10", "sha256": "1c71d6b8e7894bb0812d4975ced36ced3a98c85de2943719181e9010ce12d772" }, "downloads": -1, "filename": "ChatterBot-0.2.5.tar.gz", "has_sig": false, "md5_digest": "8b35fedc2c67d3db92939b56047b8a10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21973, "upload_time": "2015-09-16T23:32:22", "url": "https://files.pythonhosted.org/packages/2e/ee/230b53a89bebf9a933e55a438fabe964ecf9565752b1774b2df003ebde99/ChatterBot-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "292554d512b72d3df8c547b54e6d0efe", "sha256": "57709e13410119ff2a86db90bd848983a2b5caa3b0a60953e771e7ae2acc6dc6" }, "downloads": -1, "filename": "ChatterBot-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "292554d512b72d3df8c547b54e6d0efe", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 70117, "upload_time": "2015-10-10T17:34:48", "url": "https://files.pythonhosted.org/packages/65/03/4787d2094dc3d19eeeaa3f7a38aa983988c9bd645e87094437db0f4d46ec/ChatterBot-0.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc524e747db1ce8649c9c127727b709b", "sha256": "f9d9f932ed2055ffe01c05a8b0faac68eadeb16cf78e334b8f47ccf1ad5b6b73" }, "downloads": -1, "filename": "ChatterBot-0.2.6.tar.gz", "has_sig": false, "md5_digest": "cc524e747db1ce8649c9c127727b709b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22037, "upload_time": "2015-10-10T17:34:39", "url": "https://files.pythonhosted.org/packages/bb/a5/ff0c6cf40d83e08fcf6cb88ec24b35eb0fa0ef40779e742148e887f9263e/ChatterBot-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "25bab28d9241e6433262cc3990e715dd", "sha256": "51386048c30f8a5ee9030372c6c9c7de8d7c7df24449459e189a2a03f20d3a56" }, "downloads": -1, "filename": "ChatterBot-0.2.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25bab28d9241e6433262cc3990e715dd", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 72457, "upload_time": "2015-10-17T19:52:35", "url": "https://files.pythonhosted.org/packages/7e/ef/2c4fb810a87c116e3771926cdbceaa992b1b735cb4f306f92748938650d3/ChatterBot-0.2.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b2d09ac7a617080f08d274a5d944a309", "sha256": "89e4564a7d50a76cfa5e62743a052592c98da49955e6fe5e65a513c805b7381f" }, "downloads": -1, "filename": "ChatterBot-0.2.7.tar.gz", "has_sig": false, "md5_digest": "b2d09ac7a617080f08d274a5d944a309", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23299, "upload_time": "2015-10-17T19:52:25", "url": "https://files.pythonhosted.org/packages/03/83/fa5728c58679bf6267a1c34d4a023c570c27d0021bf7203f8574a659a38d/ChatterBot-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "c179e7e0192672379d67db2d93a2b184", "sha256": "507780aa7f84e85849627e9194bfe25f5f1352e6b339740347e683d5e24945c3" }, "downloads": -1, "filename": "ChatterBot-0.2.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c179e7e0192672379d67db2d93a2b184", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 74127, "upload_time": "2015-10-28T00:52:30", "url": "https://files.pythonhosted.org/packages/81/fc/d698cd64c6a437be72af2ede47e618cab6e32457cb121ca204137d082b20/ChatterBot-0.2.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "669076f03a18f041155c1d7b53c9a817", "sha256": "dd020776bbe9ea6cf1653417f67c149c5e9b642633bc9986c94c155878e1e728" }, "downloads": -1, "filename": "ChatterBot-0.2.8.tar.gz", "has_sig": false, "md5_digest": "669076f03a18f041155c1d7b53c9a817", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23224, "upload_time": "2015-10-28T00:52:21", "url": "https://files.pythonhosted.org/packages/1c/48/e5ed43c2d5aa2dd88a5483cb89baf5845ee55d9bb6b0b01ab798310b72c3/ChatterBot-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "3aeb24ddc70c4a52a2b14118e5f64901", "sha256": "4e33049b9cea9f600366064838c0773ae03d21668097b597330b3d1b84f4a852" }, "downloads": -1, "filename": "ChatterBot-0.2.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3aeb24ddc70c4a52a2b14118e5f64901", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 96618, "upload_time": "2015-10-31T21:02:27", "url": "https://files.pythonhosted.org/packages/f4/a3/7460b0c651590386148515838bfe94373364dcbd2c80e3bff8b779e87e53/ChatterBot-0.2.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e2e0853fd5fa154a44074be45bc90aef", "sha256": "13cb63a33e3b5511343465119a62a936f35bc00af0588f81baadab6f3084a0fe" }, "downloads": -1, "filename": "ChatterBot-0.2.9.tar.gz", "has_sig": false, "md5_digest": "e2e0853fd5fa154a44074be45bc90aef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25144, "upload_time": "2015-10-31T21:01:57", "url": "https://files.pythonhosted.org/packages/87/ec/39988382ad21d7feb0384f79b92541d949594542c124e6b59a9ab0cab745/ChatterBot-0.2.9.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "d72fc6b2c1ce5e16bc1a1a153d8abb68", "sha256": "7d305bc9abb28849e24e8f50cd626a54c41bc52a12e09c76e57d35e44fc723a9" }, "downloads": -1, "filename": "ChatterBot-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d72fc6b2c1ce5e16bc1a1a153d8abb68", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 41331, "upload_time": "2015-11-28T16:12:36", "url": "https://files.pythonhosted.org/packages/18/a9/bbd2a268118be08993d2fbf3a4f411c1ab309f415d235ce82bb2f1d24d93/ChatterBot-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28fbf9d2d892cd80d24c3bc0fddfa79a", "sha256": "7e7849f8613c1882d790cf74f114b83bc4c5378836508a4334ddffc99b7845f6" }, "downloads": -1, "filename": "ChatterBot-0.3.0.tar.gz", "has_sig": false, "md5_digest": "28fbf9d2d892cd80d24c3bc0fddfa79a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26267, "upload_time": "2015-11-28T16:12:26", "url": "https://files.pythonhosted.org/packages/b6/61/c8178a930b0885534cc0ffde78c303912cd900c0032548001707d936d507/ChatterBot-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "6544cc673aeb9c20a8c6d99a34017580", "sha256": "1930e89bd8a63f334d61995f0e85232a0c9e6ea7de7fa243cfd7e4c1f6927af4" }, "downloads": -1, "filename": "ChatterBot-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6544cc673aeb9c20a8c6d99a34017580", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 41397, "upload_time": "2015-11-29T23:35:49", "url": "https://files.pythonhosted.org/packages/ec/92/7ba8c2ed1ad9802ccbba620905478eec6779a6d5c0e3c97cab1ebb0d820b/ChatterBot-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "44c1a33bc41dee1a85ae96282b4c19e9", "sha256": "03b8de53323f6cd1d9fa91e3faca68025164cb3a70b742cde08bf87c2fa2cc3c" }, "downloads": -1, "filename": "ChatterBot-0.3.1.tar.gz", "has_sig": false, "md5_digest": "44c1a33bc41dee1a85ae96282b4c19e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24546, "upload_time": "2015-11-29T23:31:17", "url": "https://files.pythonhosted.org/packages/76/00/04f0571005eab1cd6a61fc8994f767b99b2df9336d83523d30466d1a23e5/ChatterBot-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "2181bb2f96a2bc7f9a79da35899ece39", "sha256": "9234e326d8747baeccce0dd1c625ed8a51ae0abf2de3ddfc7931c60fc9ba6d8c" }, "downloads": -1, "filename": "ChatterBot-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2181bb2f96a2bc7f9a79da35899ece39", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 43994, "upload_time": "2015-12-13T21:47:27", "url": "https://files.pythonhosted.org/packages/02/27/b9e429a7eac84a088f4b12690dff21ed14817dbbfb9bf2f4c1952d020f4d/ChatterBot-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bbeac265732b0432f48b637e4c8bafb3", "sha256": "c16dbc27a339a833c0394255474b19a4bdb8a00a17248ef516021bbad6d936f9" }, "downloads": -1, "filename": "ChatterBot-0.3.2.tar.gz", "has_sig": false, "md5_digest": "bbeac265732b0432f48b637e4c8bafb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27614, "upload_time": "2015-12-13T21:47:18", "url": "https://files.pythonhosted.org/packages/06/6c/542e141f2775f9048905d5be8f320d3548cec218fc6052561ce8f1e56944/ChatterBot-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "65a20191151b9a09a711a74d95faadb0", "sha256": "aa975771d640cb2b5d40e4b1b0f292c704de107ba150cfc67673aee78c4c9d7b" }, "downloads": -1, "filename": "ChatterBot-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "65a20191151b9a09a711a74d95faadb0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 54735, "upload_time": "2016-01-04T11:29:31", "url": "https://files.pythonhosted.org/packages/e7/f3/8183e5755577c770178bc9dcb8f245c57b72513f642335a796ee7ed80656/ChatterBot-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "17c52bb274ea6e36d4d49c9aec006cf6", "sha256": "55da9c79bb21e8f83d17cbd7ee5471f01d28bdb6f4fc5f72ba8b0fd3c6a3390e" }, "downloads": -1, "filename": "ChatterBot-0.3.3.tar.gz", "has_sig": false, "md5_digest": "17c52bb274ea6e36d4d49c9aec006cf6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32481, "upload_time": "2016-01-04T11:29:17", "url": "https://files.pythonhosted.org/packages/de/e8/5cee5effad1a8227f47b70096ecb8961470e9da1a3b3362cba771c3e6d08/ChatterBot-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "c195545c6f3703402b74f49a1478e59f", "sha256": "3dc03c7c127f9b246b0e259b7cad358c2f07745049691692d7e4d60d8049d32f" }, "downloads": -1, "filename": "ChatterBot-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c195545c6f3703402b74f49a1478e59f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 58737, "upload_time": "2016-01-17T12:49:13", "url": "https://files.pythonhosted.org/packages/68/72/5245c5f1410b5050ab22a6ab1e3f5f246df445664f45cb3928ab18c1cc90/ChatterBot-0.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "91580f70c50a86263ee68c7ea6dbea42", "sha256": "7b87e76ad318b265780e902da4c5ad162d8e64589726379948d3f3e692194af3" }, "downloads": -1, "filename": "ChatterBot-0.3.4.tar.gz", "has_sig": false, "md5_digest": "91580f70c50a86263ee68c7ea6dbea42", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33006, "upload_time": "2016-01-17T12:48:56", "url": "https://files.pythonhosted.org/packages/2a/70/e31dd906a0b5ba37d61adc347a13076b6e2bd31371f0f96be2f348135113/ChatterBot-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "77c8bab315727fe63cdfeaee733e4cdf", "sha256": "aa0e238f26488b472feec3fd7b823a30be91b68750cf6c53230abcee3ec5e4bd" }, "downloads": -1, "filename": "ChatterBot-0.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "77c8bab315727fe63cdfeaee733e4cdf", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 65194, "upload_time": "2016-01-30T17:34:21", "url": "https://files.pythonhosted.org/packages/42/97/3438f9bf037379e453d562305805d9226dc193503b28d9f171bdb37e3734/ChatterBot-0.3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25bb9cf973911c692d75d3f259a4a848", "sha256": "7518240b721fd37fbceefd70661371437a3f42870dc55e41024604f8a056d0d2" }, "downloads": -1, "filename": "ChatterBot-0.3.5.tar.gz", "has_sig": false, "md5_digest": "25bb9cf973911c692d75d3f259a4a848", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35086, "upload_time": "2016-01-30T17:34:13", "url": "https://files.pythonhosted.org/packages/3c/c4/029e63e58a7f35988353958f1ce34c0b9ed37027fec025d71912f395c568/ChatterBot-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "43a6aa0ca3efd74252c13c69c0fa93aa", "sha256": "c5e807fa699239baebb38bf318c127f2c9223c55733903a8fbad26445d87e74e" }, "downloads": -1, "filename": "ChatterBot-0.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "43a6aa0ca3efd74252c13c69c0fa93aa", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 70894, "upload_time": "2016-04-01T09:04:26", "url": "https://files.pythonhosted.org/packages/d6/c2/ebf6002b315861ab9edc709712dfd057afad3ff4265e3ad006dca4daa993/ChatterBot-0.3.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7ef111ac05115d51cbe4a123e564e12f", "sha256": "5e3e5c8f072b7d3a0a87d59c2e4c8b9bfc68d44d7406647f71e7e30c78999da3" }, "downloads": -1, "filename": "ChatterBot-0.3.6.tar.gz", "has_sig": false, "md5_digest": "7ef111ac05115d51cbe4a123e564e12f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38555, "upload_time": "2016-04-01T09:03:44", "url": "https://files.pythonhosted.org/packages/cd/0f/55dbbb00a8b913a6c3f35e2185ca3fde368fc01a67a93c78fe3866f59ecb/ChatterBot-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "00f17bbd8f808a9024b07505e555e62b", "sha256": "80aff0af7927ba8e1b1dad02398cd5045aee1c411b2b5184f2cb8ae281425457" }, "downloads": -1, "filename": "ChatterBot-0.3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "00f17bbd8f808a9024b07505e555e62b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 79067, "upload_time": "2016-05-10T12:26:55", "url": "https://files.pythonhosted.org/packages/7c/fe/1dc5b0c5bafd458be536f627ae2228ed9f7fef4207cb33cdfa82bf3104ff/ChatterBot-0.3.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cfd31a97c034ae9d597ee825f7600682", "sha256": "6d7868102ae82fb04b5597ed135738ce6558a137c5a77c569220035f21f1b3e6" }, "downloads": -1, "filename": "ChatterBot-0.3.7.tar.gz", "has_sig": false, "md5_digest": "cfd31a97c034ae9d597ee825f7600682", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44762, "upload_time": "2016-05-10T12:26:22", "url": "https://files.pythonhosted.org/packages/c5/74/bfbfb15fd9d281569352842f522ae6d7872954588d2012b9ae5ca599b356/ChatterBot-0.3.7.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "8417839172bd906792cc714d57c8311a", "sha256": "81ded4c98a0477016c86fd127063d49cd962c0d2ba6f601c89b9996a1b0e2f52" }, "downloads": -1, "filename": "ChatterBot-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8417839172bd906792cc714d57c8311a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 88399, "upload_time": "2016-05-14T10:04:01", "url": "https://files.pythonhosted.org/packages/66/be/12196d85c0d9413e662252094645418908b45cf374c7b14dd41172f5157e/ChatterBot-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fff1a78d75fadf2117c9674b9c581d0f", "sha256": "2f3b1f431d1f13d00c381c063ad9ac3343c1d05d7e8285b5fd0364f251230218" }, "downloads": -1, "filename": "ChatterBot-0.4.0.tar.gz", "has_sig": false, "md5_digest": "fff1a78d75fadf2117c9674b9c581d0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44994, "upload_time": "2016-05-14T10:03:49", "url": "https://files.pythonhosted.org/packages/78/de/46e11fa8e1eb9b4c13d01dbcf32cea5ce819c1bbce550b6a1ad010bb6af8/ChatterBot-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "6b477e8e585341afabde9446a7355f26", "sha256": "80f638036d94c5baa015c63d5a7d5dbb1a9708728569fa6c18721d956ea09caa" }, "downloads": -1, "filename": "ChatterBot-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6b477e8e585341afabde9446a7355f26", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 89872, "upload_time": "2016-05-24T12:10:50", "url": "https://files.pythonhosted.org/packages/60/89/4f6d8fcbf682a455b5c75a881f7a99e3948d03345c3138a10076f17cd0c8/ChatterBot-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "abd328b02be3296b96c8b1e760b1a06f", "sha256": "70e088c10c7070c86d7acf8d38988496e9a0706003bd606435280a72034447aa" }, "downloads": -1, "filename": "ChatterBot-0.4.1.tar.gz", "has_sig": false, "md5_digest": "abd328b02be3296b96c8b1e760b1a06f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43423, "upload_time": "2016-05-24T12:10:19", "url": "https://files.pythonhosted.org/packages/35/c7/ff8f9ec3188328b4762eb5d29c06f4dcf1c512e870218b9d3ccd85c6ac99/ChatterBot-0.4.1.tar.gz" } ], "0.4.10": [ { "comment_text": "", "digests": { "md5": "4726388ce1e94f98c7d4edd891b5bd9f", "sha256": "63f93286aa403ea663df4af0dbfeab108dfe6bba3e5e08e89ec37ef8f35f085f" }, "downloads": -1, "filename": "ChatterBot-0.4.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4726388ce1e94f98c7d4edd891b5bd9f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 77268, "upload_time": "2016-09-19T12:00:14", "url": "https://files.pythonhosted.org/packages/fb/9b/32f14109f8f51b4c7f561fd25d24a699d296382780933fb21dd156e763d2/ChatterBot-0.4.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4c7b6fd6d23a51352fbba2c559b3c7d", "sha256": "f28c7f834b75c023a44d98b896aa54c437f9031f748a36a3069868f868badb9e" }, "downloads": -1, "filename": "ChatterBot-0.4.10.tar.gz", "has_sig": false, "md5_digest": "d4c7b6fd6d23a51352fbba2c559b3c7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50493, "upload_time": "2016-09-19T12:00:10", "url": "https://files.pythonhosted.org/packages/79/68/3ee8bb319600e5a466a0ee46665c23b307db60262595115d3e50c765a91c/ChatterBot-0.4.10.tar.gz" } ], "0.4.11": [ { "comment_text": "", "digests": { "md5": "149e92b021167aa46cc1618b9d1b25cb", "sha256": "ac191dc8493c39a8798133fb0c77cfeed932bce5bbe2f6ecaa0ab42b24b9db25" }, "downloads": -1, "filename": "ChatterBot-0.4.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "149e92b021167aa46cc1618b9d1b25cb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 93090, "upload_time": "2016-10-26T19:46:52", "url": "https://files.pythonhosted.org/packages/f2/ab/1411f34029f44b0a7c95594f1f19ed8f9ace026d5e1c3d8000708e9bea4f/ChatterBot-0.4.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1525769f649274459ee3225503372477", "sha256": "81823de685cea10ba614163587e053d70ea2a4aa9f17bf6a594bc1d40e49b1f6" }, "downloads": -1, "filename": "ChatterBot-0.4.11.tar.gz", "has_sig": false, "md5_digest": "1525769f649274459ee3225503372477", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62000, "upload_time": "2016-10-26T19:46:48", "url": "https://files.pythonhosted.org/packages/ee/0c/f49a5b91bc040e1023e84e1745661423b575784f4e171bc600d9444cb153/ChatterBot-0.4.11.tar.gz" } ], "0.4.12": [ { "comment_text": "", "digests": { "md5": "0a2c602e43ba51614d8c798563be4fac", "sha256": "eb858d5018cedf50ef4307288f90e3a4395c29e8e1303d4bd7d009a9bde2ac84" }, "downloads": -1, "filename": "ChatterBot-0.4.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0a2c602e43ba51614d8c798563be4fac", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 100199, "upload_time": "2016-11-09T02:22:14", "url": "https://files.pythonhosted.org/packages/56/b0/3d25e2657af506e722ae01013ecec69e123ba7b0c100859a85b49e36ab3c/ChatterBot-0.4.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ad49563e3c27db89b17648d7d7f5280", "sha256": "079a4811ec58462bb1dc3057321485b962ed7c64135d1f72a68b9c1ba7ef01d2" }, "downloads": -1, "filename": "ChatterBot-0.4.12.zip", "has_sig": false, "md5_digest": "2ad49563e3c27db89b17648d7d7f5280", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104462, "upload_time": "2016-11-09T02:22:11", "url": "https://files.pythonhosted.org/packages/ff/3d/3acd9a3faef04ec69dab4de35ef0238688680e1d9a9436eb50b6d266689b/ChatterBot-0.4.12.zip" } ], "0.4.13": [ { "comment_text": "", "digests": { "md5": "83c6710ae5cd2ba5a1afcd52719350e3", "sha256": "66f21dc14e77ccb50ff7e1272a2cc7ddb21d7076b7e0c0b86d25d4680c083597" }, "downloads": -1, "filename": "ChatterBot-0.4.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "83c6710ae5cd2ba5a1afcd52719350e3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 104702, "upload_time": "2016-11-19T13:38:29", "url": "https://files.pythonhosted.org/packages/8b/49/203f0c27fa9cdd7082569ce7b54b78bd42342baf8bd0c2757eaf0e762ac9/ChatterBot-0.4.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a2bcab3dfb59441113973a97ba420f01", "sha256": "d9ffffd75d1ee837bcd0e53d6e15dcfabbd6e03a86cf8eb73e22daf0af139873" }, "downloads": -1, "filename": "ChatterBot-0.4.13.tar.gz", "has_sig": false, "md5_digest": "a2bcab3dfb59441113973a97ba420f01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68836, "upload_time": "2016-11-19T13:38:26", "url": "https://files.pythonhosted.org/packages/37/91/f3f6b38a47cc441b253c23233ddbf444fed51083eb1eaecb2535b115025b/ChatterBot-0.4.13.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "f6c22d2406fc8c292a81d72afccc3306", "sha256": "d4e71a77714a85ce6af22340acde04bce47aee6a6d3ab616e72232f6aa831668" }, "downloads": -1, "filename": "ChatterBot-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f6c22d2406fc8c292a81d72afccc3306", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 91039, "upload_time": "2016-06-05T11:37:47", "url": "https://files.pythonhosted.org/packages/e5/f7/cf618a6034ffae8a02fdce459a5078b72a339140a3cda42d7abb79c99c79/ChatterBot-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "420ab1be4f0eff83cd1eaab1d2db8aff", "sha256": "07079dfc2770c0556579a9ac8c635aeada6d63cfa54f8a8f1d58e40c630d6e8f" }, "downloads": -1, "filename": "ChatterBot-0.4.2.tar.gz", "has_sig": false, "md5_digest": "420ab1be4f0eff83cd1eaab1d2db8aff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44309, "upload_time": "2016-06-05T11:37:42", "url": "https://files.pythonhosted.org/packages/5f/a3/bcf8231d500343341a4b4a543ccab5426fb6ec2beebbc175af84bcf4946f/ChatterBot-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "9102d9e1da58c2b85d736db5459b4ca3", "sha256": "4ef6d08a2f699b2a6739ad1ea7ceae57465a0fbbbe322df709803ca5c55a2682" }, "downloads": -1, "filename": "ChatterBot-0.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9102d9e1da58c2b85d736db5459b4ca3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 91053, "upload_time": "2016-06-17T00:17:41", "url": "https://files.pythonhosted.org/packages/39/6a/724362944f6542db3d85be372e4dd31e231de144bed51164722af3a4576a/ChatterBot-0.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2648c6e8d583531f0226f0ced69c6b06", "sha256": "d010e328a078a43c9966d947594287f90df9bb13691cf64f0ead3fe16b4d9dd1" }, "downloads": -1, "filename": "ChatterBot-0.4.3.tar.gz", "has_sig": false, "md5_digest": "2648c6e8d583531f0226f0ced69c6b06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44353, "upload_time": "2016-06-17T00:17:36", "url": "https://files.pythonhosted.org/packages/bd/d5/d58df795eb6ef271d29900fc44c0914114cb4cb24a55c08a6b73826ecd4b/ChatterBot-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "f360877a38b3a94e74c05f39565611ca", "sha256": "cab36b7ee0a1de82f2879985170188b9925dd1945ec289f98e6afb078b892d42" }, "downloads": -1, "filename": "ChatterBot-0.4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f360877a38b3a94e74c05f39565611ca", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 96846, "upload_time": "2016-07-09T13:09:13", "url": "https://files.pythonhosted.org/packages/a0/c0/194ae1ccf0828d7f046d41adda03f7a667997e96f80d78722cebf9034d7f/ChatterBot-0.4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06bd6eb313665dd04b31d213bd814ccf", "sha256": "bb2e9d82d7b494b0073839e888d09af0db2694394fb9cc5035d16e0a3b54d6d1" }, "downloads": -1, "filename": "ChatterBot-0.4.4.tar.gz", "has_sig": false, "md5_digest": "06bd6eb313665dd04b31d213bd814ccf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47835, "upload_time": "2016-07-09T13:09:09", "url": "https://files.pythonhosted.org/packages/9c/28/0d0235278cca1dd9420db60eda01b2e984baa8a15173df1dd28c3c583634/ChatterBot-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "afe221a1121ec1a5bd79f0559d49bdb3", "sha256": "f0c49480201d1e67b07a48566152b6e5712676d2599b657876da5fc88ea8fc77" }, "downloads": -1, "filename": "ChatterBot-0.4.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "afe221a1121ec1a5bd79f0559d49bdb3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 99999, "upload_time": "2016-07-23T12:34:40", "url": "https://files.pythonhosted.org/packages/f2/ca/0e7e070e0a0cdc6fc847c4beb93eb20bc0ca1d132241c9fcf21a440c99ab/ChatterBot-0.4.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "19e03395abd371f3449a5a234b30f644", "sha256": "0c338f3161e905fd0c1428ae5e5917aa6f2e0c6f87fe19b19c6a6d0ac9bfdf70" }, "downloads": -1, "filename": "ChatterBot-0.4.5.tar.gz", "has_sig": false, "md5_digest": "19e03395abd371f3449a5a234b30f644", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50443, "upload_time": "2016-07-23T12:34:37", "url": "https://files.pythonhosted.org/packages/8d/7a/2d9866c6ce338927547ed32216cd8d7da83cc3fdbf88afb62af41a91e988/ChatterBot-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "b0677c57226a3b7fbb2e30aff81be8a9", "sha256": "32be3c0dd4a5014c6cefac9f659f2481e4f7c86125b4d4ed2c145481ec356332" }, "downloads": -1, "filename": "ChatterBot-0.4.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b0677c57226a3b7fbb2e30aff81be8a9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 116700, "upload_time": "2016-08-14T02:46:32", "url": "https://files.pythonhosted.org/packages/5e/d1/137ee07c55c3f259df4555e71e8a8d74961147f61fd74662ddc6bd7cef98/ChatterBot-0.4.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4922e14e2b815f886a4bff54da612fda", "sha256": "e54ae16c1fa600891c2fe2976bfbee57c3abb8300ba54e693f4603fef336fa1c" }, "downloads": -1, "filename": "ChatterBot-0.4.6.tar.gz", "has_sig": false, "md5_digest": "4922e14e2b815f886a4bff54da612fda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55467, "upload_time": "2016-08-14T02:46:28", "url": "https://files.pythonhosted.org/packages/9b/3e/037907cea4ef9b64d9ffededee84eccfe7da803af4a0c64ce5857376d758/ChatterBot-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "33c9a00da1fa6221a4385d0e60fd0e08", "sha256": "a085dbc208f06e33f354f2517ec5c3df40e8a2d34f628f87379bf2c4e7940749" }, "downloads": -1, "filename": "ChatterBot-0.4.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "33c9a00da1fa6221a4385d0e60fd0e08", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 119568, "upload_time": "2016-08-31T17:04:04", "url": "https://files.pythonhosted.org/packages/bd/3d/53ea0ce2afec7ff5c77a0257cd49f56b8f45a849878eedcfdfa1bb466a58/ChatterBot-0.4.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "592ed270a8efb51f95ccaa966b1f61ae", "sha256": "ac64a62f297f9cdb14220d342668da30e3b93cf826caf25c72dc9df7164330cf" }, "downloads": -1, "filename": "ChatterBot-0.4.7.tar.gz", "has_sig": false, "md5_digest": "592ed270a8efb51f95ccaa966b1f61ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56443, "upload_time": "2016-08-31T17:04:01", "url": "https://files.pythonhosted.org/packages/a7/78/c542c52977a60b7a367ad81a78db6545f76b609190d9be993da64294a8aa/ChatterBot-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "0fa60f7fddf5dbceb28d21a56bdfca9b", "sha256": "6e7abded91b930704e3ceb23390e5b69a7dd5106933791c938352ab7dc2effce" }, "downloads": -1, "filename": "ChatterBot-0.4.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0fa60f7fddf5dbceb28d21a56bdfca9b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 127130, "upload_time": "2016-09-04T00:46:31", "url": "https://files.pythonhosted.org/packages/1c/bf/67d98e8bb97bd7a074286e0a42fa5a505b999c27c388ce45b9e7350e81e0/ChatterBot-0.4.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5e449ab52d8e1af15ca6e4dc07c6c120", "sha256": "8efe9774ec27130312bd63b3087b4ffb570a92e343b8755c14f755c93e3e48ed" }, "downloads": -1, "filename": "ChatterBot-0.4.8.tar.gz", "has_sig": false, "md5_digest": "5e449ab52d8e1af15ca6e4dc07c6c120", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49502, "upload_time": "2016-09-04T00:46:26", "url": "https://files.pythonhosted.org/packages/dc/e3/abe4628fe6df05ca40c491a7ae0a6e9b452297ecbdda8869d5ab8e82ae50/ChatterBot-0.4.8.tar.gz" } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "d83134ff3ffd9d27320eadbbb67cbf8a", "sha256": "5c16d34a3140a9855d641513add4bfa71207735c7200579bc35f2f836ba5588f" }, "downloads": -1, "filename": "ChatterBot-0.4.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d83134ff3ffd9d27320eadbbb67cbf8a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 76614, "upload_time": "2016-09-09T00:49:04", "url": "https://files.pythonhosted.org/packages/09/16/968d6241b2cf6530524cc3ae4fc65b7e40a7c063256ef4d21ebbca61272e/ChatterBot-0.4.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "679d42e8bfe14dcb3e59a75d3c513526", "sha256": "b5df6e40384a4d12454b88d4e83040ae3c0e1c3248f601afee14fb97f51b65f4" }, "downloads": -1, "filename": "ChatterBot-0.4.9.tar.gz", "has_sig": false, "md5_digest": "679d42e8bfe14dcb3e59a75d3c513526", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50347, "upload_time": "2016-09-09T00:49:00", "url": "https://files.pythonhosted.org/packages/46/3a/6a8875abc106514e36c8732cb8b7cb93cca905932517b5d08735dc23ffa3/ChatterBot-0.4.9.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "a24c3e1fe61049980676833cbf94e6de", "sha256": "664a7634afbc43981d76f2e8c264f252f8d6cd868710219cb138f890ceb8513c" }, "downloads": -1, "filename": "ChatterBot-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a24c3e1fe61049980676833cbf94e6de", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 142441, "upload_time": "2016-11-30T19:48:40", "url": "https://files.pythonhosted.org/packages/dc/5d/632053773fc687cdb36893593b78d3d1902e15cc8642b6f98990b9888f2b/ChatterBot-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "38a9a202ef2eab4c2f449de827c61d2a", "sha256": "b4aee778d0db938c5c1b8daf165d662d6777f55a9b18607f981d08b2536abc1a" }, "downloads": -1, "filename": "ChatterBot-0.5.0.zip", "has_sig": false, "md5_digest": "38a9a202ef2eab4c2f449de827c61d2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110219, "upload_time": "2016-11-30T19:48:38", "url": "https://files.pythonhosted.org/packages/15/99/7bce08127b50aa94c21835d4535b10d53d10e8a380ed0a137338e15021c3/ChatterBot-0.5.0.zip" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "e70b336171331d6c063769dae48a6aa1", "sha256": "f6427d08493d58c9c7767bd37df22065d4ca17f7ffbe419429bb321180c755cb" }, "downloads": -1, "filename": "ChatterBot-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e70b336171331d6c063769dae48a6aa1", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 107417, "upload_time": "2016-12-03T15:26:47", "url": "https://files.pythonhosted.org/packages/4f/58/992a463cfc80f9aba4bac96836967f924d2e2a53c3842bf6030350189b1b/ChatterBot-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ff3595092ad39de4052e48a663dc079", "sha256": "904c95e89e9b551a2d36336f1fad831fe3c96b81cbf92b7e179a33710232e60b" }, "downloads": -1, "filename": "ChatterBot-0.5.1.zip", "has_sig": false, "md5_digest": "4ff3595092ad39de4052e48a663dc079", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111590, "upload_time": "2016-12-03T15:26:45", "url": "https://files.pythonhosted.org/packages/4e/42/cd64892dcc1ee9afd8a16b88eb0ad256ae5df19e1106148ea5b62bcff75b/ChatterBot-0.5.1.zip" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "c7b794fc3fb175cc4dd1bc130547aab5", "sha256": "5fbdb7ba5af2ce57087d973103f85af3c9e5c26f03075555d8b57bfeccbdfa45" }, "downloads": -1, "filename": "ChatterBot-0.5.2.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "c7b794fc3fb175cc4dd1bc130547aab5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124996, "upload_time": "2016-12-17T11:52:02", "url": "https://files.pythonhosted.org/packages/64/15/29466ef79b20fcfc6e38aa1c267ae2bc098ecff398af967c9d02f4095e21/ChatterBot-0.5.2.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "96caf8f1bf0c91614093c57d1e0b2176", "sha256": "db68e2ef6715f82900c1bf92294815fd7fc42b0d3d8946ddc49c6a924159f8b1" }, "downloads": -1, "filename": "ChatterBot-0.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "96caf8f1bf0c91614093c57d1e0b2176", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 108866, "upload_time": "2016-12-10T21:15:31", "url": "https://files.pythonhosted.org/packages/de/c4/b7d2001a4ca7bd4b6267656f008987972ddd09332c74c8da9fcef7b5aff4/ChatterBot-0.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "237844018d880303a314fb236fa7ddb7", "sha256": "4d59573d857fdc40057e12b4625c595a3af704484f11ff95dd14c2d62f1465c0" }, "downloads": -1, "filename": "ChatterBot-0.5.2.tar.gz", "has_sig": false, "md5_digest": "237844018d880303a314fb236fa7ddb7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73595, "upload_time": "2016-12-17T11:52:03", "url": "https://files.pythonhosted.org/packages/d5/cd/bcbe76f201d937e3e20497c76e376a4f073c6b26eec338343809193d708e/ChatterBot-0.5.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "ea2a337c3f1af7885d86ad2ba9c18289", "sha256": "d6c2052e5c4f9c43871aacf438228a9d9944a78f020eac1ab3b50950f6da76c9" }, "downloads": -1, "filename": "ChatterBot-0.5.2.zip", "has_sig": false, "md5_digest": "ea2a337c3f1af7885d86ad2ba9c18289", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113068, "upload_time": "2016-12-10T21:15:28", "url": "https://files.pythonhosted.org/packages/6f/45/0c3a6abf6270a21168ee0c86195c93380c56a3e54e126d49774dec2da139/ChatterBot-0.5.2.zip" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "7327fc8297804e1a4621f339288f2cfd", "sha256": "8f5f777c61d0f4fe97e7856b2d75703668e45c4d3ff2cc4a1797d1a804eac795" }, "downloads": -1, "filename": "ChatterBot-0.5.3.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "7327fc8297804e1a4621f339288f2cfd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124991, "upload_time": "2016-12-17T11:54:42", "url": "https://files.pythonhosted.org/packages/02/9e/849702b4edec3309c19644a5bce286d695d14455cc9f9c9cc99e9a109d17/ChatterBot-0.5.3.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "d9b57a76df979f77bfff3fb35a352fb6", "sha256": "fe6fb6f4c58d42eeb253eb1e528b3864cc3de65762c12b8f83c251077c1491e3" }, "downloads": -1, "filename": "ChatterBot-0.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d9b57a76df979f77bfff3fb35a352fb6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 108431, "upload_time": "2016-12-17T11:54:40", "url": "https://files.pythonhosted.org/packages/3f/51/ff970e9d0590fbc569f1bbfdc3f2374a46b30d032bba1be302bcb2519833/ChatterBot-0.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "78fc355dd5702c911aff12909e3efd77", "sha256": "a72bee2a39b6973448f259de19e93f89fda58d8d811ab072ba90f8d71368ac48" }, "downloads": -1, "filename": "ChatterBot-0.5.3.tar.gz", "has_sig": false, "md5_digest": "78fc355dd5702c911aff12909e3efd77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73587, "upload_time": "2016-12-17T11:54:43", "url": "https://files.pythonhosted.org/packages/b9/e0/490743d19b890879bc26d71c5759fc6765a7908649409067c8562c1a57a4/ChatterBot-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "3a1be6994677436e51a3f70c162c2c97", "sha256": "9c8fa380e6ddcff1ad93fef4ccf9f957ebf99ae9241ced01dc087ac7231a8454" }, "downloads": -1, "filename": "ChatterBot-0.5.4.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "3a1be6994677436e51a3f70c162c2c97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127940, "upload_time": "2016-12-29T23:12:38", "url": "https://files.pythonhosted.org/packages/98/fe/a02afee15a1c788939224e9b8fedfe4cf7a3114a9b78ffe83bafefd47f98/ChatterBot-0.5.4.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "0888f7587be1d0f6b25f10c3738702c9", "sha256": "ca3cc5aa15b3c07d17d7d9bdaf24d02eebc4715657bb2894f2434ec85921b968" }, "downloads": -1, "filename": "ChatterBot-0.5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0888f7587be1d0f6b25f10c3738702c9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 110790, "upload_time": "2016-12-29T23:12:37", "url": "https://files.pythonhosted.org/packages/fd/e0/f2eb915f7c114c0f984a00ff7af20b2b10e8d5ccd202b4476de4e42990e4/ChatterBot-0.5.4-py2.py3-none-any.whl" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "027ee655d960014f3a52fc4f97a15184", "sha256": "5bfe30d53f3278fec3581e431452fe3331fa9ed8ac6869dc5fed0534db7fbc3e" }, "downloads": -1, "filename": "ChatterBot-0.5.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "027ee655d960014f3a52fc4f97a15184", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 109140, "upload_time": "2017-01-15T20:14:11", "url": "https://files.pythonhosted.org/packages/91/5a/38155403ecc5cc77d2949ecb3d507ae9dee75aa31b5529686604a1c8d417/ChatterBot-0.5.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b8a373103cc3e24189a41e7451081a0", "sha256": "a11483691bd3e577a58c021a875664d69120c7a7b7a4d3bf7f2e7faa539cd3ca" }, "downloads": -1, "filename": "ChatterBot-0.5.5.tar.gz", "has_sig": false, "md5_digest": "5b8a373103cc3e24189a41e7451081a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74602, "upload_time": "2017-01-15T20:14:12", "url": "https://files.pythonhosted.org/packages/ea/35/5f440140f9ebd2d6a978a38288d7cde0d62c11ef10cfd1098a9e0489dac9/ChatterBot-0.5.5.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "35279ab359a06a9714aac48edd6a1879", "sha256": "e8d8b388ffba0887f63c7cc573f17bd4741f9903a7cf64f6ef3db13b425bfbb9" }, "downloads": -1, "filename": "ChatterBot-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "35279ab359a06a9714aac48edd6a1879", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 110380, "upload_time": "2017-03-21T19:33:31", "url": "https://files.pythonhosted.org/packages/95/53/aeed6adae4fdf20e1a6535096f2b23d17ce1103ab5222c09d099ab572bc5/ChatterBot-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd4eeac039275af9511ad8f97c27b153", "sha256": "424e04bca85341c448376f2f0a2889f6ef7247a36acb4cfe66bcae4f7657b1b3" }, "downloads": -1, "filename": "ChatterBot-0.6.0.tar.gz", "has_sig": false, "md5_digest": "bd4eeac039275af9511ad8f97c27b153", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43040, "upload_time": "2017-03-21T19:33:33", "url": "https://files.pythonhosted.org/packages/44/f6/d83c5687a34618118bb2c14484f7de83dae818743e380df187b5cb366f76/ChatterBot-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "506c01d3df6c552b0db08f92763d9ad1", "sha256": "63a1c06f6ecd691088840cd87a114c92478e0cfc63225ece4cf4e5e2501ab2fb" }, "downloads": -1, "filename": "ChatterBot-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "506c01d3df6c552b0db08f92763d9ad1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 71163, "upload_time": "2017-06-01T23:35:36", "url": "https://files.pythonhosted.org/packages/bb/ea/feca75e32d4d1e4df7d735db1b20855609931ced1d190631205190a55cae/ChatterBot-0.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2cab8b7b8ba9bf5528ad44428fc56faa", "sha256": "b445a9a0893ce2b512c5a01e4ee967de415c7c8afad6457ce253cb67f5f57c22" }, "downloads": -1, "filename": "ChatterBot-0.6.1.tar.gz", "has_sig": false, "md5_digest": "2cab8b7b8ba9bf5528ad44428fc56faa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45255, "upload_time": "2017-06-01T23:35:38", "url": "https://files.pythonhosted.org/packages/70/dd/0d0bc59d72aa87196558d389f4c01518171bae5660f2b2262f4c8165a91b/ChatterBot-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "974d68523dd69ac600464c84cb4dbb46", "sha256": "16af190f415f8f371cf98156ccbfde068a79facdaa4f680b0a24ec9b85fc91e0" }, "downloads": -1, "filename": "ChatterBot-0.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "974d68523dd69ac600464c84cb4dbb46", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72412, "upload_time": "2017-06-10T11:44:44", "url": "https://files.pythonhosted.org/packages/47/26/97052837e7e496b42e65f5323a2b361d274e157ae503ede7eb99de8ea4fd/ChatterBot-0.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd9383fd29869e415f85a385c7395423", "sha256": "de8da889fd143ff55f2cf7edf1a1c7e08304c5bf017227956a3ae2bb37dec65d" }, "downloads": -1, "filename": "ChatterBot-0.6.2.tar.gz", "has_sig": false, "md5_digest": "bd9383fd29869e415f85a385c7395423", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46374, "upload_time": "2017-06-10T11:44:45", "url": "https://files.pythonhosted.org/packages/32/65/4e77d5b2c5bf9b6e093faf10c0bee93ad882a3bebbdb03ddec9d1fe2dd02/ChatterBot-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "6c90807c7c42ca919088e061548218f4", "sha256": "280a1bbc5abb6f162aabff364dfa1639005066ddb638bbcae3ddf4e0f649a7e8" }, "downloads": -1, "filename": "ChatterBot-0.6.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6c90807c7c42ca919088e061548218f4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72409, "upload_time": "2017-06-24T18:49:21", "url": "https://files.pythonhosted.org/packages/72/42/015884187452c828d8c98ccab6f1a8887d6f39ecf6a9a5f3fadc6aa6a5f8/ChatterBot-0.6.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "593d3dc0c474eb96087448dcdf3ae77e", "sha256": "c201702bbb347cddee81f4cc89981de928a675c3566f41ad49bb7eec2c9aeb33" }, "downloads": -1, "filename": "ChatterBot-0.6.3.tar.gz", "has_sig": false, "md5_digest": "593d3dc0c474eb96087448dcdf3ae77e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46263, "upload_time": "2017-06-24T18:49:23", "url": "https://files.pythonhosted.org/packages/14/9d/4fb8981936eb2a129977a388d23d3462dc41c29ad687bc75703fc27a576b/ChatterBot-0.6.3.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "f80c8c9db9d0d309449763763f340130", "sha256": "434a56bcdb470f94605f46e4f6802cbb47b46d7f4de706bb9c633117292e2898" }, "downloads": -1, "filename": "ChatterBot-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f80c8c9db9d0d309449763763f340130", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72612, "upload_time": "2017-07-04T13:56:26", "url": "https://files.pythonhosted.org/packages/46/01/3e909ac24724f82d669c419fff7ad6e64ba9513a831cfd8d191f4ac207f0/ChatterBot-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d78809d8600437655e345a01f4708134", "sha256": "0bc2af4f5ffa4f156e2305ba05cb5e2ad0531cd6afcb482e0256d55b9fd15182" }, "downloads": -1, "filename": "ChatterBot-0.7.0.tar.gz", "has_sig": false, "md5_digest": "d78809d8600437655e345a01f4708134", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46540, "upload_time": "2017-07-04T13:56:27", "url": "https://files.pythonhosted.org/packages/c1/eb/8063fb88a4117699ac425da00ded1e918cd02698524e069ac8f5917dcc30/ChatterBot-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "5d9defa2199b37836bc1dc75b08a7096", "sha256": "a8b9babbf1e1036e56e09749fb4a5bd6d8162e4ce2aeafadbcdeb6b401318a0f" }, "downloads": -1, "filename": "ChatterBot-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5d9defa2199b37836bc1dc75b08a7096", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 73215, "upload_time": "2017-07-16T20:38:55", "url": "https://files.pythonhosted.org/packages/9e/96/2013c227d1a98bb501f8fdca217e464f52896dd25fabdebfb30a25b41752/ChatterBot-0.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f7101b48a408c2d9ea79a94f56296837", "sha256": "0e543d860643806e67547196dfcd57e4fa740355485c1f0607d7b9981ef25290" }, "downloads": -1, "filename": "ChatterBot-0.7.1.tar.gz", "has_sig": false, "md5_digest": "f7101b48a408c2d9ea79a94f56296837", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47079, "upload_time": "2017-07-16T20:38:56", "url": "https://files.pythonhosted.org/packages/ce/fc/cb800ba1e33baee9e15ce8d665ab680be5481007ac11f2b1d8574bebdc38/ChatterBot-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "2cd0f89416bf6bc9f73cb755b685f419", "sha256": "5eeac19ee0204c6c2a6ea75573370cd50caca87843f81cbd996d29ef75748783" }, "downloads": -1, "filename": "ChatterBot-0.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2cd0f89416bf6bc9f73cb755b685f419", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 71033, "upload_time": "2017-07-18T11:09:22", "url": "https://files.pythonhosted.org/packages/e9/97/fbaf093d3c8a169d0b0cc0af6006acf92f1dc895ee3a49499bd54d86c92c/ChatterBot-0.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a174ea7050c258922368d02cb74b8616", "sha256": "a9f1de5cf7260c8f0b43d7b817d9e4ec85fcc4ad9e10fccf60fb14ee921a4d08" }, "downloads": -1, "filename": "ChatterBot-0.7.2.tar.gz", "has_sig": false, "md5_digest": "a174ea7050c258922368d02cb74b8616", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46129, "upload_time": "2017-07-18T11:09:23", "url": "https://files.pythonhosted.org/packages/62/7a/17a231a9a71b43f18d55c8a7831f976662c7ffeff2f93542590a80b12150/ChatterBot-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "c1b1edf4ad2c1a3aa2c39ee35e292dac", "sha256": "bff514c3cac7d8eacfe0908d250729ce28f4e5c31356df53aec8a9f19ab2e954" }, "downloads": -1, "filename": "ChatterBot-0.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c1b1edf4ad2c1a3aa2c39ee35e292dac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 73613, "upload_time": "2017-07-19T02:32:57", "url": "https://files.pythonhosted.org/packages/49/9e/5b8ccd8544606e4042c092840dfffa5d9c29f15c2a1d12b1b63eed335561/ChatterBot-0.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "17c042436a43791d01829670b03f340c", "sha256": "e6aaffe5401404f52705bc5d69a38c6646ce165d5f9e34b0e3c0287a075b92e1" }, "downloads": -1, "filename": "ChatterBot-0.7.3.tar.gz", "has_sig": false, "md5_digest": "17c042436a43791d01829670b03f340c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46334, "upload_time": "2017-07-19T02:32:59", "url": "https://files.pythonhosted.org/packages/9c/93/65ec76b7ef34d80d7cc8a5b81028a2260ffd5eebdd1478f4571c4d442f3c/ChatterBot-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "8697faf43e5f104d13fc4dde50208641", "sha256": "721ab3d69f304314b6f18c92dfbbeff932ec5a3247360b91127d74dc7551cf29" }, "downloads": -1, "filename": "ChatterBot-0.7.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8697faf43e5f104d13fc4dde50208641", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 71586, "upload_time": "2017-07-23T20:18:14", "url": "https://files.pythonhosted.org/packages/2f/9c/7bb4735a0b17696a34d3aac5378e80aec19ffd99bdcc0bfa1b187d1b50e6/ChatterBot-0.7.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a515c03e670d04eba48cfe6e99b65a4b", "sha256": "9534072491713c5e2cb8d9c3a25c0878dd347f6d213327a844394b595a150f09" }, "downloads": -1, "filename": "ChatterBot-0.7.4.tar.gz", "has_sig": false, "md5_digest": "a515c03e670d04eba48cfe6e99b65a4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45225, "upload_time": "2017-07-23T20:18:16", "url": "https://files.pythonhosted.org/packages/e6/85/f252dc5a21a4d3ed2f60a994927c956b521a13ab2c6643eb92fddfdc80f4/ChatterBot-0.7.4.tar.gz" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "e644b40be704a13390b39ea6aa4c8094", "sha256": "411c07c21885d13975dac7491bfa4fb0108c6b8f1aaa964b03798e57c7cabbcd" }, "downloads": -1, "filename": "ChatterBot-0.7.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e644b40be704a13390b39ea6aa4c8094", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 71618, "upload_time": "2017-07-29T15:43:11", "url": "https://files.pythonhosted.org/packages/f9/66/6860ebaeb426cdc79d96191007241eca466af39bb5c73851c78a09574b38/ChatterBot-0.7.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cd510410c9b3288c097b8ec1217603f0", "sha256": "69fcb4e91b397206aa7b614590252401b401fa6c2a068cbfac84fd3973e38f2d" }, "downloads": -1, "filename": "ChatterBot-0.7.5.tar.gz", "has_sig": false, "md5_digest": "cd510410c9b3288c097b8ec1217603f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45257, "upload_time": "2017-07-29T15:43:13", "url": "https://files.pythonhosted.org/packages/87/a8/1a640bfce8789c7ff0a8c5ca378ff17bcb7a2f2e98febfd0fcbdbfd8a52c/ChatterBot-0.7.5.tar.gz" } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "6bfeb9996853656bf86c8bd8c74211d2", "sha256": "d6067069da23f10c98276741803536c9278a5c59610bb49cfb21d033994bd4dc" }, "downloads": -1, "filename": "ChatterBot-0.7.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6bfeb9996853656bf86c8bd8c74211d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72105, "upload_time": "2017-08-08T01:44:24", "url": "https://files.pythonhosted.org/packages/0f/f9/b83f12a375abad45a92b217be933fe054d114c0eda6e6ed9dfc1d6adc5d8/ChatterBot-0.7.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b9a7140e342e6550b1dcea97754662ba", "sha256": "9252412de6661b82e8bd2fb980e6d3c82d0aac70a678e202eaba1169fea2f12b" }, "downloads": -1, "filename": "ChatterBot-0.7.6.tar.gz", "has_sig": false, "md5_digest": "b9a7140e342e6550b1dcea97754662ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45775, "upload_time": "2017-08-08T01:44:25", "url": "https://files.pythonhosted.org/packages/f1/ea/e3bbcd25e44f292815b5ca49fa8fdc4e0ca4b5b94033b627bc16addebeca/ChatterBot-0.7.6.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "c28d0811dda62b47c29b786b776f3c6e", "sha256": "624fbb97491b52ac9bac53b342e02a33e837cfcdda33d75895f120f6f8528002" }, "downloads": -1, "filename": "ChatterBot-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c28d0811dda62b47c29b786b776f3c6e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72896, "upload_time": "2017-12-02T15:20:58", "url": "https://files.pythonhosted.org/packages/04/d3/3b291559604f532cd02e296054f792b62a092700d4ef780bccb90fa69433/ChatterBot-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e9410232065649ed1d8c77cb9e8382aa", "sha256": "45652159adca40db5d6aba8ce4b7a0e72d6a79ba525bd97ea53f551ec22bafdd" }, "downloads": -1, "filename": "ChatterBot-0.8.0.tar.gz", "has_sig": false, "md5_digest": "e9410232065649ed1d8c77cb9e8382aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46858, "upload_time": "2017-12-02T15:20:59", "url": "https://files.pythonhosted.org/packages/c5/a9/372426b1e37d74b5eeef56e8b9ffe75292a4ef946c5d4cd842d32f821032/ChatterBot-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "22c0cb60eec3412e5e3306102e8f8ab1", "sha256": "efc21543d09e342ce857afab4d553fde1900c8f4e411757f3426aba8234815c8" }, "downloads": -1, "filename": "ChatterBot-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "22c0cb60eec3412e5e3306102e8f8ab1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 73464, "upload_time": "2017-12-04T12:32:27", "url": "https://files.pythonhosted.org/packages/db/5c/6762f69604ef625abd7eaab8bfc7a52110c1c87e4cee8f4c941022ed7c90/ChatterBot-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac3a09b8a36485a5d8a942ced8fd6006", "sha256": "731f8bdc4374f9ec08bf278e884775aab2da49ef07e15ce2e3100a6b0015e26d" }, "downloads": -1, "filename": "ChatterBot-0.8.1.tar.gz", "has_sig": false, "md5_digest": "ac3a09b8a36485a5d8a942ced8fd6006", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47096, "upload_time": "2017-12-04T12:32:29", "url": "https://files.pythonhosted.org/packages/b3/7a/cf741aaa38a3d2552747788cfed7b8385846b877cf481164f60bd08cc325/ChatterBot-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "45ebee043b265890353cc155056010d1", "sha256": "839c03ac38580b7bcc2a0d983ac9d3e351361919fbe8779f83e101719b8de54b" }, "downloads": -1, "filename": "ChatterBot-0.8.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "45ebee043b265890353cc155056010d1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72508, "upload_time": "2018-01-21T13:49:54", "url": "https://files.pythonhosted.org/packages/f7/b5/b7315c796208ad380fae45b7e6e9deb5b3a4c6ca573cbe45b124399b0d52/ChatterBot-0.8.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cbe2e1f8300af2bf1751ec56d81dcc54", "sha256": "4747aa033af89ecaad4fb863ff7b1f60c43535c1f4fb6c394e69d25d40a0407d" }, "downloads": -1, "filename": "ChatterBot-0.8.2.tar.gz", "has_sig": false, "md5_digest": "cbe2e1f8300af2bf1751ec56d81dcc54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46817, "upload_time": "2018-01-21T13:49:55", "url": "https://files.pythonhosted.org/packages/0e/dc/fcb2af9eb66546afa44a15e5bf5a752c3013048d456120c6c07afc2fead3/ChatterBot-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "200ed2210c6dea182a8033ad549e8182", "sha256": "2c4b1718766f0d9c8baaebfe39744c87b3b0b8037cc99c6335b72b9a21f84915" }, "downloads": -1, "filename": "ChatterBot-0.8.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "200ed2210c6dea182a8033ad549e8182", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72165, "upload_time": "2018-01-26T12:21:43", "url": "https://files.pythonhosted.org/packages/f8/3b/f7c881e52b1fd5d1befbaae7fc1291b57defa4db5429fc185d2a1a9a78d2/ChatterBot-0.8.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5daf7b89a1bbc221835016b9b12ebb4c", "sha256": "1fca58c3248945921640c6302c7b14dcbf2fc320c0ed788db510986ab26817a9" }, "downloads": -1, "filename": "ChatterBot-0.8.3.tar.gz", "has_sig": false, "md5_digest": "5daf7b89a1bbc221835016b9b12ebb4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46549, "upload_time": "2018-01-26T12:21:45", "url": "https://files.pythonhosted.org/packages/e8/80/748772ed093dae0810c6964633731fe608fe310410ed50b8282a3212b6f6/ChatterBot-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "a5f7a294871bd0a2311e5075034ef667", "sha256": "c102c5ae094aa7a6bd8002d55b46a882fb3d1cb58ca4b4c7ab5afbf05ecc5b8b" }, "downloads": -1, "filename": "ChatterBot-0.8.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a5f7a294871bd0a2311e5075034ef667", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72510, "upload_time": "2018-01-27T21:15:38", "url": "https://files.pythonhosted.org/packages/b6/8d/472f3e9e9f969fbbe455910148739d5fdad86e212573274ab0611d3272f2/ChatterBot-0.8.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b7b537b77a0403000f498919bda453d", "sha256": "870bca31c57c85b38f4d432a7f997395d8a198665253e6647fd283b53006ccb6" }, "downloads": -1, "filename": "ChatterBot-0.8.4.tar.gz", "has_sig": false, "md5_digest": "8b7b537b77a0403000f498919bda453d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46854, "upload_time": "2018-01-27T21:15:40", "url": "https://files.pythonhosted.org/packages/d4/0f/6992d26864b505c4f5f5e5807d8d0cde0c25a994b87e66519411ac791e49/ChatterBot-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "8a2665bb443ad24adbd91debdc0bae5e", "sha256": "94eda6ccd79b47ce6d309b5bb1d6757faa95e04a470d9adfcdb70ee2ef665395" }, "downloads": -1, "filename": "ChatterBot-0.8.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8a2665bb443ad24adbd91debdc0bae5e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72498, "upload_time": "2018-03-30T11:04:44", "url": "https://files.pythonhosted.org/packages/8a/0e/7f6b78f9581fafc78c19a53bfc359c7edca5feae127c33528f772bbe433a/ChatterBot-0.8.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "70b1de655e0a06dabb69271ba13e05f2", "sha256": "c068c878ffc8fa65d90c8282e0af1b4bfb1725ae01ff756e108ddea1a2e83584" }, "downloads": -1, "filename": "ChatterBot-0.8.5.tar.gz", "has_sig": false, "md5_digest": "70b1de655e0a06dabb69271ba13e05f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46871, "upload_time": "2018-03-30T11:04:47", "url": "https://files.pythonhosted.org/packages/03/45/3124a12c0cde26ed22f190f88bc2e78795a7305a9baf302aed0325feb802/ChatterBot-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "dca744b20e19657c692ba604cf9cadbd", "sha256": "f6c3cfae93aff5441b8ba36ca61239f5dcc050930af81c63cdf34d43330cae86" }, "downloads": -1, "filename": "ChatterBot-0.8.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dca744b20e19657c692ba604cf9cadbd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72669, "upload_time": "2018-05-08T22:03:53", "url": "https://files.pythonhosted.org/packages/c2/f0/6221938235838f3b78d99470d73015d2bb797f1b1adfb86070d99a34789b/ChatterBot-0.8.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8610cdfa445a635b35f74d0ad8d28011", "sha256": "6e6f363b14a8f71be5f08bf4d3c87f488c0cc2db2df4fdb7f5490cd2952793ce" }, "downloads": -1, "filename": "ChatterBot-0.8.6.tar.gz", "has_sig": false, "md5_digest": "8610cdfa445a635b35f74d0ad8d28011", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47025, "upload_time": "2018-05-08T22:03:56", "url": "https://files.pythonhosted.org/packages/19/27/e639ffa3da917f223a8e7db6bfd8a6f022b3f842e1b9826daf166a09b54b/ChatterBot-0.8.6.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "5c70e357756508a4b80d7efdf9fcde4f", "sha256": "c070704f41893224bfdc35168b98ef9a30f5b2ff303d76d477b73761a68eb974" }, "downloads": -1, "filename": "ChatterBot-0.8.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5c70e357756508a4b80d7efdf9fcde4f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 74555, "upload_time": "2018-05-12T13:48:31", "url": "https://files.pythonhosted.org/packages/60/8e/cdcc5c8c97dc4d591dc96b6f452f31393fc1393bd1f37d2819bcce9d0d57/ChatterBot-0.8.7-py2.py3-none-any.whl" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "6c10bb07ec48ab9b90d7d2738577ff08", "sha256": "84f47abf87971099be6b240c8e9555a1b0043b2c23e52960cdfa09434aab6c8a" }, "downloads": -1, "filename": "ChatterBot-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6c10bb07ec48ab9b90d7d2738577ff08", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65809, "upload_time": "2019-01-15T11:28:31", "url": "https://files.pythonhosted.org/packages/69/c3/061bdea00e34691bd7395122960b685b75b7ef9cb6f52a0bc8639be08dca/ChatterBot-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c492b9af62da8de269aa57eaf3fdd458", "sha256": "5ca11ad227781abfe594ec27728895511d6a789ae589993daef07b4aa260e0c1" }, "downloads": -1, "filename": "ChatterBot-1.0.0.tar.gz", "has_sig": false, "md5_digest": "c492b9af62da8de269aa57eaf3fdd458", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45011, "upload_time": "2019-01-15T11:28:33", "url": "https://files.pythonhosted.org/packages/cb/7f/7003e47213d733525d32d58dbaea1bb5e1d236adc3abf738cfabbe06ed80/ChatterBot-1.0.0.tar.gz" } ], "1.0.0a1": [ { "comment_text": "", "digests": { "md5": "a2ef6cb9fd484e9521a337be65e85780", "sha256": "869052192ebe680786c6099bd8562a1207be26704e8907fad90e96c9db63a085" }, "downloads": -1, "filename": "ChatterBot-1.0.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a2ef6cb9fd484e9521a337be65e85780", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 67325, "upload_time": "2018-09-22T12:23:05", "url": "https://files.pythonhosted.org/packages/51/b4/6108de5fe7655c4d0e5088d354890be456714438ab26929ac5e5d582a7cb/ChatterBot-1.0.0a1-py2.py3-none-any.whl" } ], "1.0.0a2": [ { "comment_text": "", "digests": { "md5": "7979c6d6d0e03df8b96a606a6d6e15f8", "sha256": "cc9d068a4ffc7fffac6609adade15c3fab07f918ca757765ed684cb581a4964f" }, "downloads": -1, "filename": "ChatterBot-1.0.0a2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7979c6d6d0e03df8b96a606a6d6e15f8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65631, "upload_time": "2018-10-03T11:12:11", "url": "https://files.pythonhosted.org/packages/3c/70/90419d7ad623c32f62aa20dcc684e7858c498ccddd107a04851f12dcc42b/ChatterBot-1.0.0a2-py2.py3-none-any.whl" } ], "1.0.0a3": [ { "comment_text": "", "digests": { "md5": "7689e8c17488d513e3ca0bb4b9b29f04", "sha256": "3adb982724d1bf51dfef3a4f692a9e2fb589f224117cc80b34328bdf29373a1c" }, "downloads": -1, "filename": "ChatterBot-1.0.0a3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7689e8c17488d513e3ca0bb4b9b29f04", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 70129, "upload_time": "2018-12-15T18:07:07", "url": "https://files.pythonhosted.org/packages/a0/01/6f65209535610af72f773f87b977f982e5a2c641f1528cbc74a4ee0131ed/ChatterBot-1.0.0a3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5483d2b742c15d8506acbc188a6e9fb", "sha256": "99cd4e843eb75823843c1a32d35766374d0563f9949f4cdea18600ddd6f3ab7c" }, "downloads": -1, "filename": "ChatterBot-1.0.0a3.tar.gz", "has_sig": false, "md5_digest": "e5483d2b742c15d8506acbc188a6e9fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44665, "upload_time": "2018-12-15T18:07:09", "url": "https://files.pythonhosted.org/packages/9b/79/8ac8e3198d366cadbe320f48586b0650c96aaf08dc4926a5b33447b34946/ChatterBot-1.0.0a3.tar.gz" } ], "1.0.0a4": [ { "comment_text": "", "digests": { "md5": "6b70d4ef9ee771dcd5f0ffe5b1c32605", "sha256": "e22fb1f7459ee7ec60a19772a8029a65124930c304a60dcfb49e3b7661b9c46e" }, "downloads": -1, "filename": "ChatterBot-1.0.0a4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6b70d4ef9ee771dcd5f0ffe5b1c32605", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65841, "upload_time": "2019-01-15T11:20:17", "url": "https://files.pythonhosted.org/packages/0c/3a/62ac3377610f0a270a452955cf1c98898a8df128e7d096c9075ed1eb6896/ChatterBot-1.0.0a4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2aafcf9ad71b583e5a34357b4276de5e", "sha256": "486b25740b82e8a507c7a36a8a7b0154702d2af6d29b23b9bc224c8ceb13feab" }, "downloads": -1, "filename": "ChatterBot-1.0.0a4.tar.gz", "has_sig": false, "md5_digest": "2aafcf9ad71b583e5a34357b4276de5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45005, "upload_time": "2019-01-15T11:20:20", "url": "https://files.pythonhosted.org/packages/97/24/ff5aae55ab8cb81f4e7a01a0f9ee18d8f94085f296a71680df7f10f06f3f/ChatterBot-1.0.0a4.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "38b209d0a06dce6ee8c9ca675a022cfa", "sha256": "13f77f8e9cd305432ff20da0a21a4437a0d7b40030750282b3b1e48e80cd14ea" }, "downloads": -1, "filename": "ChatterBot-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "38b209d0a06dce6ee8c9ca675a022cfa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65901, "upload_time": "2019-01-25T15:09:30", "url": "https://files.pythonhosted.org/packages/ba/5f/e5cfc987626932ecca88de8f1e618ef96e4bda02fded54fa2debe6ca5cd6/ChatterBot-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3c14486f37c23fd594995324925cd366", "sha256": "36b47070995554ea3ee7f39f23814b3b5b1caf49c33890d17c9cae19b32573c7" }, "downloads": -1, "filename": "ChatterBot-1.0.1.tar.gz", "has_sig": false, "md5_digest": "3c14486f37c23fd594995324925cd366", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44688, "upload_time": "2019-01-25T15:09:32", "url": "https://files.pythonhosted.org/packages/c0/03/dcd83f842f95c1bf0f7530fd3ada599f9daed653c052d3c258e2be64e61e/ChatterBot-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "76a64563447d1d6cf70f57a2b7c9d87d", "sha256": "f6d804e1e01da023e01f6080298ec2850e3982476e9981652735d68f351201a6" }, "downloads": -1, "filename": "ChatterBot-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "76a64563447d1d6cf70f57a2b7c9d87d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65793, "upload_time": "2019-02-01T00:15:35", "url": "https://files.pythonhosted.org/packages/43/eb/ae2466f9873ee9266a613c8650dd843b31d6c8af0143946125e94f7a8f81/ChatterBot-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7b42bddfff151159b17865c1b555910e", "sha256": "139f960654d1dedc3e23d619d92ba10351bc61191c6d555c8ceb859a5f44b56a" }, "downloads": -1, "filename": "ChatterBot-1.0.2.tar.gz", "has_sig": false, "md5_digest": "7b42bddfff151159b17865c1b555910e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44761, "upload_time": "2019-02-01T00:15:38", "url": "https://files.pythonhosted.org/packages/4b/2d/38441bf6b6e11d6149c8b2e0b5ee9d9ee4fd159bd771b9b0378d010743c9/ChatterBot-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "3d616126e229463b87f31cacd6a411d2", "sha256": "9bf3023d2789c26d8279807156af06aeeee57946cfccf55dbfac40a6372dffe0" }, "downloads": -1, "filename": "ChatterBot-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d616126e229463b87f31cacd6a411d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 66319, "upload_time": "2019-02-23T15:20:07", "url": "https://files.pythonhosted.org/packages/06/e4/12bf369a1ff1f175e8bfdbca8aff9bc8f7b2b31fc6ca883e46793911c7e6/ChatterBot-1.0.3-py2.py3-none-any.whl" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "dd6f1039aa8804e24fa4f25d7ef8f9c8", "sha256": "ef4ce8fc39cc8f9b54f506be24b8828a5dfc2f27ac506eaaa32c3c66ef8385dd" }, "downloads": -1, "filename": "ChatterBot-1.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dd6f1039aa8804e24fa4f25d7ef8f9c8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 66347, "upload_time": "2019-02-24T17:34:03", "url": "https://files.pythonhosted.org/packages/af/76/6a5f62b13d857248910583ad75fd2884a2639b3cf165eae508e91b45df1b/ChatterBot-1.0.4-py2.py3-none-any.whl" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "3f4ec7ecc87e192a4c6281b2d28bfb4f", "sha256": "88d2b58438a8b0289c17c3d4a62eab4da574cc153ccf3213a225bc651e8918a6" }, "downloads": -1, "filename": "ChatterBot-1.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f4ec7ecc87e192a4c6281b2d28bfb4f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 67817, "upload_time": "2019-03-24T14:49:34", "url": "https://files.pythonhosted.org/packages/6c/0e/dac0d82f34f86bf509cf5ef3e2dfc5aa7d444bd843a2330ceb7d854f84f2/ChatterBot-1.0.5-py2.py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3f4ec7ecc87e192a4c6281b2d28bfb4f", "sha256": "88d2b58438a8b0289c17c3d4a62eab4da574cc153ccf3213a225bc651e8918a6" }, "downloads": -1, "filename": "ChatterBot-1.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f4ec7ecc87e192a4c6281b2d28bfb4f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 67817, "upload_time": "2019-03-24T14:49:34", "url": "https://files.pythonhosted.org/packages/6c/0e/dac0d82f34f86bf509cf5ef3e2dfc5aa7d444bd843a2330ceb7d854f84f2/ChatterBot-1.0.5-py2.py3-none-any.whl" } ] }