oceandb-mongodb-driver
🐳 Mongo DB driver for OceanDB (Python).
oceanprotocol.com
Table of Contents
Features
MongoDB driver to connect implementing OceanDB.
Prerequisites
You should have running a mongo instance.
Quickstart
First of all we have to specify where is allocated our config.
To do that we have to pass the following argument:
--config=/path/of/my/config
If you do not provide a configuration path, by default the config is expected in the config folder.
In the configuration we are going to specify the following parameters to
[oceandb]
module=mongodb
module.path=
db.hostname=localhost
db.port=27017
db.ssl=True
db.verify_certs=False
db.ca_cert_path=
db.client_key=
db.client_cert_path=
db.username=user
db.password=password
db.name=test
db.collection=col
Once you have defined this the only thing that you have to do it is use it:
oceandb = OceanDb(conf)
oceandb.write({"value": "test"}, id)
Environment variables
When you want to instantiate an Oceandb plugin you can provide the next environment variables:
- $CONFIG_PATH
- $MODULE
- $DB_HOSTNAME
- $DB_PORT
- $DB_NAME
- $DB_COLLECTION
- $DB_USERNAME
- $DB_PASSWORD
Queries
Currently we are supporting a list of queries predefined in order to improve the search:
All this queries present a common format:
query:{"name":[args]}
This queries are the following:
-
cost
Could receive one or two parameters. If you only pass one assumes that your query is going to start from 0 to your value.
Next query:
query:{"cost":[0,10]}
It is transformed to:
{"service.attributes.main.cost":{"$gt": 0, "$lt": 10}}
-
license
It is going to retrieve all the documents with license that you are passing in the parameters,
if you do not pass any value retrieve all.
{"license":["Public domain", "CC-YB"]}
-
type
It is going to check that the following service types are included in the ddo.
{"type":["Access", "Metadata"]}
-
sample
Check that the metadata include a sample that contains a link of type sample. Do not take parameters.
{"sample":[]}
-
categories
Retrieve all the values that contain one of the specifies categories.
{"categories":["weather", "meteorology"]}
-
created
Retrieve all the values that has been created after a specified date.
The parameters available are 'today', 'lastWeek', 'lastMonth', 'lastYear'. If you pass more than one take the bigger interval.
If you do not pass any parameter retrieve everything.
{"created":["today"]}
-
updatedFrequency
Retrieve all the values that contain one of the specifies updated frecuencies.
{"updatedFrequency":["monthly"]}
-
text
Retrieve all the values that match with the text sent.
{"text":["weather"]}
Code style
The information about code style in python is documented in this two links python-developer-guide
and python-style-guide.
Testing
Automatic tests are setup via Travis, executing tox
.
Our test use pytest framework.
New Version
The bumpversion.sh
script helps to bump the project version. You can execute the script using as first argument {major|minor|patch} to bump accordingly the version.
License
Copyright 2018 Ocean Protocol Foundation Ltd.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.