您好,登錄后才能下訂單哦!
這篇文章主要介紹“Python怎么開發個人專屬表情包網站”,在日常操作中,相信很多人在Python怎么開發個人專屬表情包網站問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Python怎么開發個人專屬表情包網站”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
環境:Windows+Python3.6
IDE:個人喜好
模塊
import requests import re import pymysq
完整代碼
import requests import re import pymysql # 連接數據庫 db = pymysql.connect(host = '127.0.0.1',port = 3306,db = 'db',user = 'root',passwd = 'root',charset = 'utf8') # 創建游標 cursor = db.cursor() # cursor.execute('select * from images') # print(cursor.fetchall()) # 小駝峰 # 注釋 獲取圖片列表 def getImagesList(page): # 獲取斗圖網源代碼 html = requests.get('http://www.doutula.com/photo/list/?page={}'.format(page)).text # 正則表達式 通配符 .*? 匹配所有 分組匹配 reg = r'data-original="(.*?)".*?alt="(.*?)"' # 增加匹配效率的 S 多行匹配 reg = re.compile(reg,re.S) imagesList = re.findall(reg,html) for i in imagesList: image_url = i[0] image_title = i[1] # format 字符串格式化 %s cursor.execute("insert into images(`name`,`imageUrl`) values('{}','{}') ".format(image_title,image_url)) print('正在保存 %s'%image_title) db.commit() # range 范圍 1<=X<1000 for i in range(1,1001): print('第{}頁'.format(i)) getImagesList(i)
效果圖
網站開發
使用的框架是Flask
from flask import Flask from flask import render_template from flask import request import pymysql # 404 頁面未找到 app = Flask(__name__) # 裝飾器 @app.route('/') # route 路由 def index(): # return "hello world" return render_template('index.html') @app.route('/search') def search(): # 接收用戶關鍵字 keyword = request.args.get('kw') count = request.args.get('count') cursor.execute("select * from images where name like '%{}%'".format(keyword)) data = cursor.fetchmany(int(count)) return render_template('index.html',images = data) # 程序的入口 if __name__ == '__main__': db = pymysql.connect(host='127.0.0.1', port=3306, db='db', user='root', passwd='root', charset='utf8',cursorclass = pymysql.cursors.DictCursor) # 創建游標 cursor = db.cursor() # 調試模式 # port 端口號 默認5000 app.run(debug=True,port=8000)
運行效果圖
到此,關于“Python怎么開發個人專屬表情包網站”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。