Skip to content

Instantly share code, notes, and snippets.

@mgmarino
Created November 10, 2015 15:57
Show Gist options
  • Save mgmarino/04d92217d227dc99520d to your computer and use it in GitHub Desktop.
Save mgmarino/04d92217d227dc99520d to your computer and use it in GitHub Desktop.
"""
Script to upload documents t the measurements DB.
Usage: python {} doc_id file_one [file_two] ... [file_n]
"""
import pynedm
from clint.textui.progress import Bar as ProgressBar
import json
import sys
from glob import iglob
import os
if len(sys.argv) < 3:
print(sys.modules[__name__].__doc__)
sys.exit(1)
o = pynedm.ProcessObject(uri="http://raid.nedm1",
username="admin",
password="pw")
bar = None
def callback(read, total):
global bar
if bar is None:
bar = ProgressBar(expected_size=total, filled_char='=')
bar.show(read)
_doc = sys.argv[1]
_db = "nedm%2Fmeasurements"
for _fn in iglob(sys.argv[2]):
uploading = o.upload_file(_fn, _doc, db=_db, callback=callback)
if "ok" in uploading:
print("Done: {}".format(_fn))
os.unlink(_fn)
else:
print("Error: {}\n, exiting".format(uploading))
sys.exit(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment