ソースを参照

housekeeping/documentation

Steve Nyemba 5 年 前
コミット
0c6d6956aa
4 ファイル変更20 行追加1 行削除
  1. 1 1
      transport/common.py
  2. 6 0
      transport/mongo.py
  3. 7 0
      transport/queue.py
  4. 6 0
      transport/s3.py

+ 1 - 1
transport/common.py

@@ -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

+ 6 - 0
transport/mongo.py

@@ -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

+ 7 - 0
transport/queue.py

@@ -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

+ 6 - 0
transport/s3.py

@@ -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