Created
November 6, 2015 13:40
-
-
Save mgmarino/9a0b2393f097cb422ff9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pynedm | |
# Authentication | |
po = pynedm.ProcessObject(uri="http://raid.nedm1", username="un", password="pw") | |
acct = po.acct | |
# Grab the correct database | |
db = acct["nedm%2Ffluxgate"] | |
# Reads all data from a certain time | |
des = db.design("convert") | |
query_dic = dict(descending=True, | |
endkey=['Bx', 2014, 3, 31, 21, 0, 0], | |
startkey=['Bx', 2014, 4, 1, 0, 0, 0], | |
group_level=6, | |
) | |
res = db.design('slow_control_time').view('slow_control_time').get( | |
params=query_dic) | |
print res.json() | |
# Can read all data with a certain key from a certain time | |
query_dic["format"] = "csv" | |
res = db.design("convert").list("convert", "slow_control_time/slow_control_time", | |
params=query_dic) | |
print res.text |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment