root@cacti:~/box# cat convert.py #!/usr/bin/env python import sqlite3,time,rrdtool,os def boxstatus(): ''' check the status of the box, and set it to 1 if it is online, set it to 0 if it is offline ''' if "status.db": os.system('rm status.db') d…
官方文档:https://docs.python.org/2/library/sqlite3.html sqlite教程:http://www.runoob.com/sqlite/sqlite-delete.html 安装: linux系统一般自带sqlite不需安装.在终端输入sqlite3,出现如下提示则表示已经安装了sqlite SQLite version 3.6.20 Enter ".help" for instructions Enter SQL statements te…