Metadata-Version: 2.1
Name: suitcase-mongo
Version: 0.3.1
Summary: UNKNOWN
Home-page: UNKNOWN
License: BSD (3-clause)
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# suitcase.mongo

[![Build Status](https://img.shields.io/github/workflow/status/bluesky/suitcase-mongo/Unit%20Tests)](https://github.com/bluesky/suitcase-mongo/actions?query=workflow%3A%22Unit+Tests%22+branch%3Amaster)

This is a suitcase subpackage for inserting bluesky documents into MongoDB. It
contains two packages:

* `suitcase.mongo_normalized` --- This creates a Mongo Collection for each
  bluesky document type and has 1:1 correspondence between bluesky documents and
  Mongo documents. This is the layout that has been used in production at
  NSLS-II for several years.
* `suitcase.mongo_embedded` -- This is an experimental new layout under active
  development and benchmarking. It is not recommended for use in production yet.

## Installation

```
pip install suitcase-mongo
```


