Metadata-Version: 2.1
Name: rasa-mongo-tracker-store
Version: 0.1.0
Summary: TrackerStore for rasa_core connecting to MongoDB
Home-page: https://github.com/m90/rasa-mongo-tracker-store
Author: Frederik Ring
Author-email: frederik.ring@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: dialogflow (==0.4)
Requires-Dist: pymongo (==3.7)

# rasa-mongo-tracker-store
[![Build Status](https://travis-ci.org/m90/rasa-mongo-tracker-store.svg?branch=master)](https://travis-ci.org/m90/rasa-mongo-tracker-store)
> `TrackerStore` for rasa_core connecting to MongoDB

## Installation

Install the package using pip:

```sh
pip install python_mongo_tracker_store
```

## Usage

`MongoTrackerStore` can be used when loading or instantiating an Agent:

```py
from rasa_mongo_tracker_store.store import MongoTrackerStore

agent = Agent.load(
    'path/to/dialogue/models',
    tracker_store=MongoTrackerStore(
        None, # rasa's internal logic will set the domain lateron
        host='localhost', port=27017, database_name='rasa',
        collection='trackers',
    ))

```

### License
MIT © [Frederik Ring](http://www.frederikring.com)



