博客测试

Posted daleyzou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了博客测试相关的知识,希望对你有一定的参考价值。

技术分享图片
  1     def __init__(self):
  2     # 获取setting主机名 端口号和数据库名
  3     self.host = settings[‘mysql_HOST‘]
  4     self.port = settings[‘MySQL_PORT‘]
  5     self.dbname = settings[‘MySQL_DBNAME‘]
  6     self.conn = MySQLdb.connect(host=‘localhost‘, port=3306, db=‘douban‘, user=‘root‘, passwd=‘root‘,charset=‘utf8‘)
  7     self.cur = self.conn.cursor()
  8 
View Code
● 标记展开
def __init__(se
    def __init__(self):
        # 获取setting主机名 端口号和数据库名
        self.host = settings[‘MySQL_HOST‘]
        self.port = settings[‘MySQL_PORT‘]
        self.dbname = settings[‘MySQL_DBNAME‘]
        self.conn = MySQLdb.connect(host=‘localhost‘, port=3306, db=‘douban‘, user=‘root‘, passwd=‘root‘,charset=‘utf8‘)
        self.cur = self.conn.cursor() user=‘root‘, passwd=‘root‘,charset=‘utf8‘)
        self.cur = self.conn.cursor()








技术分享图片
def process_item(self, item, spider):
    try:
        sql = "INSERT INTO doubanmovies(title,bd,star,quote_mv,img_url) VALUES(\\‘%s\\‘,\\‘%s\\‘,%f,\\‘%s\\‘,\\‘%s\\‘)" %(item[‘title‘],item[‘bd‘],float(item[‘star‘]),item[‘quote‘],item[‘img_url‘])
        # sql = "INSERT INTO doubanmovies(title,bd,star,quote_mv,img_url) VALUES(‘‘,‘‘,8.8,‘‘,‘‘)"
        self.cur.execute(sql)
        self.conn.commit()
    except Exception, e:
        print "----------------------inserted faild!!!!!!!!-------------------------------"
        print e.message

    return item



● 年后展开
def close_spider(self, spider): print ‘-----------------------quit-------------------------------------------‘ self.cur.close() self.conn.close()


技术分享图片




● 年后展开
def close_spider(self, spider): print ‘-----------------------quit-------------------------------------------‘ self.cur.close() self.conn.close()



  1    def close_spider(self, spider):
  2     print ‘-----------------------quit-------------------------------------------‘
  3     self.cur.close()
  4     self.conn.close()
  5 


























以上是关于博客测试的主要内容,如果未能解决你的问题,请参考以下文章

回归 | js实用代码片段的封装与总结(持续更新中...)

CTS测试CtsWindowManagerDeviceTestCases模块的testShowWhenLockedImeActivityAndShowSoftInput测试fail项解决方法(代码片段

;~ 小部分AutoHotkey源代码片段测试模板2019年10月9日.ahk

(转)博客园登陆__JSEncrypt 分析

WordPress - 代码片段插件

超实用的php代码片段