溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python怎么開發(fā)個人專屬表情包網(wǎng)站

發(fā)布時間:2021-11-19 14:46:05 來源:億速云 閱讀:134 作者:iii 欄目:編程語言

這篇文章主要介紹“Python怎么開發(fā)個人專屬表情包網(wǎng)站”,在日常操作中,相信很多人在Python怎么開發(fā)個人專屬表情包網(wǎng)站問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Python怎么開發(fā)個人專屬表情包網(wǎng)站”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

環(huán)境:Windows+Python3.6

IDE:個人喜好

模塊

import requests
import re
import pymysq

完整代碼

import requests
import re
import pymysql
# 連接數(shù)據(jù)庫
db = pymysql.connect(host = '127.0.0.1',port = 3306,db = 'db',user = 'root',passwd = 'root',charset = 'utf8')
# 創(chuàng)建游標
cursor = db.cursor()
# cursor.execute('select * from images')
# print(cursor.fetchall())
# 小駝峰
# 注釋  獲取圖片列表
def getImagesList(page):
    # 獲取斗圖網(wǎng)源代碼
    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)

效果圖

Python怎么開發(fā)個人專屬表情包網(wǎng)站

網(wǎng)站開發(fā)

使用的框架是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)
    # 創(chuàng)建游標
    cursor = db.cursor()
    # 調(diào)試模式
    # port  端口號 默認5000
    app.run(debug=True,port=8000)

運行效果圖

Python怎么開發(fā)個人專屬表情包網(wǎng)站

到此,關于“Python怎么開發(fā)個人專屬表情包網(wǎng)站”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI