资源简介
物联网Python开发实战书的源代码
代码片段和文件信息
#!/usr/bin/env python
import pymysql #Python3
db = pymysql.connect(“localhost““sips““root““zaijian“ )
cursor = db.cursor()
cursor.execute(“SELECT VERSION()“)
data = cursor.fetchone()
print (“Database version : %s “ % data)
db.close()
def create_table():
db = pymysql.connect(“localhost““sips““root““zaijian“ )
cursor = db.cursor()
cursor.execute(“DROP TABLE IF EXISTS EMPLOYEE“)
sql = “““CREATE TABLE EMPLOYEE (
FIRST_NAME CHAR(20) NOT NULL
LAST_NAME CHAR(20)
AGE INT
SEX CHAR(1)
INCOME FLOAT )“““
cursor.execute(sql)
db.close()
def db_insert():
db = pymysql.connect(“localhost““sips““root““zaijian“ )
cursor = db.cursor()
sql = “““INSERT INTO EMPLOYEE(FIRST_NAME
LAST_NAME AGE SEX INCOME)
VALUES (‘Mac‘ ‘Mohan‘ 20 ‘M‘ 2000)“““
try:
cursor.execute(sql)
db.commit()
except:
db.rollback()
db.close()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-03-21 01:14 Smart-IoT-Planting-System-master\
文件 1157 2018-03-21 01:14 Smart-IoT-Planting-System-master\.gitignore
文件 1063 2018-03-21 01:14 Smart-IoT-Planting-System-master\LICENSE
文件 1890 2018-03-21 01:14 Smart-IoT-Planting-System-master\README.md
目录 0 2018-03-21 01:14 Smart-IoT-Planting-System-master\arch\
文件 150608 2018-03-21 01:14 Smart-IoT-Planting-System-master\arch\Hardware-kit-1.jpg
文件 135863 2018-03-21 01:14 Smart-IoT-Planting-System-master\arch\Hardware-kit-2.jpg
文件 32 2018-03-21 01:14 Smart-IoT-Planting-System-master\arch\README.md
文件 33075 2018-03-21 01:14 Smart-IoT-Planting-System-master\arch\arch-diagram.png
文件 80509 2018-03-21 01:14 Smart-IoT-Planting-System-master\arch\environment.png
目录 0 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\
文件 1688 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\README.md
文件 932 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\databa
目录 0 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\db\
文件 932 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\db\db.py
文件 59 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\db\db_init.sh
目录 0 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\deploy\
文件 222 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\deploy\README.md
文件 610 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\deploy\cloud_deploy.sh
文件 44 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\echarts-python.py
目录 0 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\mqtt_server\
文件 192 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\mqtt_server\REAMDE.md
文件 55 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\mqtt_server\hbmqtt_server.sh
文件 726 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\mqtt_server\pub.py
文件 835 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\mqtt_server\sub.py
目录 0 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\platform\
文件 393 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\platform\README.md
目录 0 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\platform\sips\
文件 86 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\platform\sips\db_init.sh
文件 48 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\platform\sips\deploy.sh
文件 802 2018-03-21 01:14 Smart-IoT-Planting-System-master\cloud\platform\sips\manage.py
............此处省略88个文件信息
相关资源
- python programming on win32
- Python通讯录程序代码
- Python - 弹弹堂小游戏
- Python编程从入门到实践(图灵程序设
- python-pygame-消消乐
- An Introduction to Statistics with Python.pdf
- 李飞飞深度学习全部作业python源代码
- Python编程:从入门到实践(高清完整
- Python飞机大战代码括音效,图片,字
- python3+实现视频转图片和图片转视频
- Python语言程序设计基础(第2版)-嵩天
- “笨办法”学python(第3版).pdf
- Python飞机大战 图片+音乐
- 廖雪峰python3 高清完整
- 基于Python的图像分类
- Djangopython实现数据挖掘和分析.doc
- 使用python实现人工智能算法
- GBDT单机版Python实现源代码
- Python实现跟踪、光流、前景检测
- 多元线性回归python实现
- seleniumwebdriverpython第三版.pdf
- IEDriverServer_64位操作系统,支持selen
- 编写高质量代码:改善Python程序的91个
- 基于python的新冠疫情数据分析.zip
- python 机器学习 scikit-learn 手册 高清完
- 深度学习入门:基于 Python 的理论与实
- python数学实验与建模程序及数据.zip
- python 金融大数据分析代码与数据
- Python编程入门经典源代码
- python自动登陆该网站并网站内容
评论
共有 条评论