Source code for rewrite.runWriterToMongoDB

from lib.utils.WriterToMongoDB import WriterToMongoDB


[docs]def run(): w = WriterToMongoDB() print("Starting writer to DB. When done quit with CTRL-C") w.runDaemon()
if __name__ == "__main__": run()