https://github.com/intake/intake-mongo
MongoDB Plugin
https://github.com/intake/intake-mongo
Last synced: 9 months ago
JSON representation
MongoDB Plugin
- Host: GitHub
- URL: https://github.com/intake/intake-mongo
- Owner: intake
- License: bsd-2-clause
- Created: 2018-01-29T20:48:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-02-18T21:31:11.000Z (about 6 years ago)
- Last Synced: 2024-05-08T20:04:07.161Z (about 2 years ago)
- Language: Python
- Size: 65.4 KB
- Stars: 4
- Watchers: 4
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# intake-mongo
Intake-Mongo: Mongodb Plugin for Intake
## User Installation
*Note: the following command does not work yet, and the developer installation is recommended.*
```
conda install -c intake intake-mongo
```
## Developer Installation
1. Create a development environment with `conda create`. Then install the dependencies:
```
conda install -c intake intake
conda install -n root conda-build
git clone https://github.com/ContinuumIO/MongoAdapter.git
conda build MongoAdapter/buildscripts/condarecipe
conda install --use-local mongoadapter
```
1. Development installation:
```
python setup.py develop --no-deps
```
1. Running tests requires pytest, run them using pytest from the base directory:
```
conda install pytest
```