240_sakuravps2_[174-175]温湿度センサの移行

もともと「20170206_sndsak2.py」は、
RaspberryPiのMySQLのDBデータをsendだけしている
Pythonを作ってあったので。
hostのアドレスを変えただけ!!で行けました!!!
以下、ブログメモ。。。。
RaspberryPi20170205(1号機)
pi@raspberrypi20170205:
/home/pi
20170428_sndsak_new2.py
=============================
hostのアドレスを変えただけ!!
=============================
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# import module
import os
import random # モジュールのインポート
# ドライバをimport
import mysql.connector
if __name__ == ‘__main__’:
# データベースに接続
# localhost access ok!!!!!
connect = mysql.connector.connect(user=’root’, password=’root’, host=’localhost’, database=’20170205_sensor’, charset=’utf8′)cursor = connect.cursor()

# select
cursor.execute(‘select * from t_sensor order by Num DESC limit 1’)
rows = cursor.fetchall()
# 出力
for i in rows:
print(“—send below data to sakravps success !!—-“)
print(i[0])
print(i[1])
print(i[2])
print(i[3])
print(i[4])
print(i[5])
# sakuravps access
connect = mysql.connector.connect(user=’raspai’, password=’Aa123456′, host=‘153.126.154.106’, database=’20161129_sensor’, charset=’utf8′)
cursor = connect.cursor()
# insert
cursor.execute(‘insert into t_sensor (time_stamp,temp,humid,water_need,memo) values (%s, %s, %s, %s, %s)’, (i[1],i[2],i[3],i[4],i[5]))
# Delete
cursor.execute(‘DELETE FROM t_sensor ORDER BY Num ASC LIMIT 1’)
# autocommitではないので、明示的にコミットする
connect.commit()
# データベースから切断
cursor.close()
connect.close()
=============================
crontab -e
51 * * * * sudo python 20170428_sndsak_new2.py
31 * * * * sudo python 20170428_sndsak_new2.py
=============================