参考の記事
http://kuc-arc-f.com/agri/?blog=blog-4
========================================================
pythonサービスで、クラウド側から
マスタ情報の取得、センサ供給判定値。流量(バルブ開閉時間)
各バルブの開閉判定など
code:
https://github.com/kuc-arc-f/python-blog4-parse
# 取得の処理、
parse - REST-APIで取得,
マイコンIDをキーに、取得できた場合、給水開始。
class:
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
def get_master(self, sId ): | |
ret={} | |
clsConst = com_appConst.appConstClass() | |
headers = { | |
"X-Parse-Application-Id": clsConst.mParse_APP_ID , | |
"X-Parse-REST-API-Key": clsConst.mParse_REST_ID , | |
"Content-Type": "application/json" | |
} | |
dtParam = {'mc_id': int(sId) }; | |
params = urllib.urlencode({"where":json.dumps(dtParam)}) | |
try: | |
r = requests.get('https://api.parse.com/1/classes/MsObject?' +params, headers=headers , timeout=30) | |
print r.status_code | |
dRest = r.json() | |
nCt= len(dRest["results"]) | |
print nCt | |
if(nCt > 0): | |
print dRest["results"][0] | |
ret=dRest["results"][0] | |
0 件のコメント:
コメントを投稿