2013-06-10 04:10:47 +02:00
|
|
|
"""
|
|
|
|
|
The MongoDB processor
|
2013-06-18 00:10:14 +02:00
|
|
|
"""
|
|
|
|
|
|
2013-06-19 23:09:57 +02:00
|
|
|
from lib.processors.processor import Processor
|
2013-06-18 00:10:14 +02:00
|
|
|
|
2013-06-18 02:58:40 +02:00
|
|
|
|
2013-06-19 04:45:23 +02:00
|
|
|
class MongodbProcessor(Processor):
|
2013-06-19 23:35:30 +02:00
|
|
|
def __init__(self, **kwargs):
|
2013-06-19 01:29:11 +02:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def create(kwargs):
|
2013-06-19 04:45:23 +02:00
|
|
|
return MongodbProcessor(**kwargs)
|