Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove pymongo from main dependency list #1728

Merged
merged 1 commit into from
May 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
coveralls
flake8
nose
pymongo>=3.3,<4.0
twine
twython
sphinx>=1.8,<1.9
Expand Down
8 changes: 8 additions & 0 deletions docs/storage/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@ SQL Storage Adapter
MongoDB Storage Adapter
=======================

.. note::

Before you can use this storage adapter you will need to install
`pymongo`_. Consider adding ``pymongo`` to your project's
``requirements.txt`` file so you can keep track of your dependencies
and their versions.

.. autoclass:: chatterbot.storage.MongoDatabaseAdapter
:members:

Expand All @@ -64,3 +71,4 @@ each of the databases that ChatterBot comes with support for.
* MongoDB: No migrations are provided.

.. _Alembic: https://alembic.sqlalchemy.org
.. _pymongo: https://pypi.org/project/pymongo/
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ git+git://github.com/gunthercox/chatterbot-corpus@master#egg=chatterbot_corpus
mathparse>=0.1,<0.2
nltk>=3.2,<4.0
pint>=0.8.1
pymongo>=3.3,<4.0
python-dateutil>=2.7,<2.8
pyyaml>=5.1,<5.2
spacy>=2.1,<2.2
Expand Down