美团人气榜

news/2025/1/14 2:08:49/

# -*- coding:utf-8 -*-
# 仅需修改这个地方https://jn.lianjia.com/ershoufang/pg{}rs/ 将jn换成你所在城市的拼写首字母小写
import requests
from lxml import etree
import time
import random
import csv
import requests
import json


class LianjiaSpider(object):
def __init__(self):
self.url = "https://mobilenext-web.meituan.com/api/rankingList/getSaleBoardList?cityId={}&boardType={}&cateId=10000&limit=10"

self.headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.163 Safari/535.1"}

def get_page(self, url, i, j):
print(url)
res = requests.get(url=url, headers=self.headers)
res.encoding = "utf-8"
html = res.text
print(html)
# if(html == '{"totalSize":0,"saleBoardPoiList":[],"boardDigest":null}'):
# html ={"totalSize":50,"saleBoardPoiList":[{"id":0,"name":"","weekSaleCount":"周销量 0","score":0,"avgPrice":0,"cateName":"","areaName":"","distance":"","rank":0,"frontImg":"https://img.meituan.net/msmerchant/","oneSentence":"","saleBoardPoiGroup":null,"saleBoardPoiCoupon":{"icon":"https://p0.meituan.net/travelcube/","content":""},"saleBoardPoiPay":null,"branchList":null}],"boardDigest":null}

# print(i)
# print(html)

# results_temp = html.replace('{"totalSize":50,"saleBoardDealList":', "").replace("}}]}", "")
# results = results_temp + "}}]"
# print(results)

self.parse_page(html, i, j)

# print(html)
# print(i)
def parse_page(self, html, i, j):
print(i)

results = html[71:-43]
# print(len(results))
print(results)
# print(results.find("["))
if (results.find("[") != 0):
prefix = "["
results = prefix + results
print(results)
print(len(results))

for list in json.loads(results):
# print(list)
id = list["id"]
# print(id)
name = list["name"]
# print(name)
weekSaleCount = list["weekSaleCount"]
#score = list["score"]
avgPrice = list["avgPrice"]
#cateName = list["cateName"]
#areaName = list["areaName"]
#distance = list["distance"]
#rank = list["rank"]
#frontImg = list["frontImg"]
#oneSentence = list["oneSentence"]

if (i == 20): cityId = "广州"
if (i == 57): cityId = "武汉"
if (i == 105): cityId = "哈尔滨"
if (i == 66): cityId = "沈阳"
if (i == 59): cityId = "成都"
if (i == 55): cityId = "南京"
if (i == 42): cityId = "西安"
if (i == 116): cityId = "长春"
if (i == 96): cityId = "济南"
if (i == 50): cityId = "杭州"

if (j == 1):
catId = "火锅"
elif (j == 2):
catId = "自助餐"
elif (j == 3):
catId = "烧烤龙虾"
elif (j == 4):
catId = "地方菜"
elif (j == 5):
catId = "异国料理"
elif (j == 6):
catId = "小吃快餐"
elif (j == 7):
catId = "甜点饮品"
elif (j == 8):
catId = "蛋糕"

with open('meituan.csv', 'a', newline='', encoding='utf-8') as f:
write = csv.writer(f)
write.writerow(
[cityId, catId, id, name, weekSaleCount, avgPrice])
#[cityId, catId, id, name, weekSaleCount, score, avgPrice, cateName, areaName, distance, rank,
#frontImg,
#oneSentence])

def main(self):
# 20广州、香港118,165白山,170鹤岗
#cityId_lists = [20, 57, 105, 66, 59, 55, 42, 116, 96, 50]
cityId_lists = [20, 50]
for i in cityId_lists: # 第二个实例

# print(i)
for j in range(1, 9):
# print(j)
time.sleep(random.randint(3, 5))
url = self.url.format(i, j)
# print(url)
self.get_page(url, i, j)
# print(j)


if __name__ == '__main__':
start = time.time()
spider = LianjiaSpider()
spider.main()
end = time.time()
print("执行时间:%.2f" % (end - start))
 


http://www.ppmy.cn/news/49763.html

相关文章

Python 简介

Python 是一个高层次的结合了解释性、编译性、互动性和面向对象的脚本语言。 Python 的设计具有很强的可读性,相比其他语言经常使用英文关键字,其他语言的一些标点符号,它具有比其他语言更有特色语法结构。 Python 是一种解释型语言&#xf…

现在有t1,t2,t3三个线程,实现t1,t2线程同步执行,然后再执行t3线程,使用Java实现该程序

目录 1、利用CountDownLatch 2、利用Future 最近在面试的时候,经常遇到这个题目,首先从题目上看,就知道考察的是多线程方面知识,我第一次看到这个题目的时候,就想到了使用CountDownLatch这个计数器来实现&#xff0c…

vue-qrcode生成二维码

1、安装 npm install --save qrcodejs2 2、代码 import QRCode from qrcodejs2 <div class"qrcode" ref"qrCodeUrl"></div> <script> import QRCode from qrcodejs2 export default { data() { return { }, methods: { …

设计模式:UML中的类图(6种关系)

一.UML图介绍 统一建模语言是用来设计软件的可视化建模语言。它的特点是简单、统一、图形化、能表达软件设计中的动态与静态信息。 UML 从目标系统的不同角度出发&#xff0c;定义了用例图、类图、对象图、状态图、活动图、时序图、协作图、构件图、部署图等 9 种图。 二.类图…

前端实现单元测试(代码版)

Jest使用 下载 npm install --save-dev jest ts-jest ts-node jest/globals types/jest 在nodejs中支持ts ts执行报错 npx ts-jest config:init jest 会自动运行 sum.test.js 文件&#xff0c;其默认匹配规则 匹配 test 文件夹下的 .js 文件&#xff08;.jsx .ts .tsx 也可以…

拉格朗日粒子扩散模式FLEXPART

为了高效、精准地治理区域大气污染&#xff0c;需要弄清污染物的来源。拉格朗日粒子扩散模式FLEXPART通过计算点、线、面或体积源释放的大量粒子的轨迹&#xff0c;来描述示踪物在大气中长距离、中尺度的传输、扩散、干湿沉降和辐射衰减等过程。该模式既可以通过时间的前向运算…

https相关的C API

OpenSSL是一个流行的开源加密库&#xff0c;提供了一套C API来支持HTTPS协议的实现。以下是一些常用的OpenSSL C API&#xff1a; SSL_CTX_new&#xff1a;创建SSL上下文对象SSL_new&#xff1a;创建SSL对象SSL_set_fd&#xff1a;将SSL对象与文件描述符关联SSL_connect&#…

扫描电镜学习手册

SEM测试&#xff0c;在通俗意义上来讲&#xff0c;可以看成是一个放大倍数超级大的“放大镜”。 作为当今十分有用的科学研究仪器&#xff0c;扫描电子显微镜是介于透射电镜和光学显微镜之间的一种微观性貌观察手段&#xff0c;可直接利用样品表面材料的物质性能进行微观成像。…