housekeeping/documentation
This commit is contained in:
parent
fc59dcc813
commit
0c6d6956aa
|
@ -6,7 +6,7 @@ This module is designed to serve as a wrapper to a set of supported data stores
|
|||
- couchdb
|
||||
- mongodb
|
||||
- Files (character delimited)
|
||||
- Queues (RabbmitMq)
|
||||
- Queues (Rabbmitmq)
|
||||
- Session (Flask)
|
||||
- s3
|
||||
The supported operations are read/write and providing meta data to the calling code
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
"""
|
||||
Data Transport - 1.0
|
||||
Steve L. Nyemba, The Phi Technology LLC
|
||||
|
||||
This file is a wrapper around mongodb for reading/writing content against a mongodb server and executing views (mapreduce)
|
||||
"""
|
||||
from pymongo import MongoClient
|
||||
# from transport import Reader,Writer
|
||||
from common import Reader, Writer
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
"""
|
||||
Data Transport - 1.0
|
||||
Steve L. Nyemba, The Phi Technology LLC
|
||||
|
||||
This file is a wrapper around rabbitmq server for reading and writing content to a queue (exchange)
|
||||
|
||||
"""
|
||||
import pika
|
||||
from datetime import datetime
|
||||
import re
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
"""
|
||||
Data Transport - 1.0
|
||||
Steve L. Nyemba, The Phi Technology LLC
|
||||
|
||||
This file is a wrapper around s3 bucket provided by AWS for reading and writing content
|
||||
"""
|
||||
from datetime import datetime
|
||||
import boto
|
||||
import botocore
|
||||
|
|
Loading…
Reference in New Issue