您现在的位置是:网站首页> 编程资料编程资料
利用Python实时获取steam特惠游戏数据_python_
2023-05-26
442人已围观
简介 利用Python实时获取steam特惠游戏数据_python_
前言
Steam是由美国电子游戏商Valve于2003年9月12日推出的数字发行平台,被认为是计算机游戏界最大的数码发行平台之一,Steam平台是全球最大的综合性数字发行平台之一。玩家可以在该平台购买、下载、讨论、上传和分享游戏和软件。

而每周的steam会开启了一轮特惠,可以让游戏打折,而玩家就会购买心仪的游戏

传说每次有大折扣,无数的玩家会去购买游戏,可以让G胖亏死

不过,由于种种原因,我总会错过一些想玩的游戏的特惠价!!!
所以,我就在想,可不可以用Python收集steam所有每周特惠游戏的数据
代码部分
开发环境
Python 3.8
Pycharm
先导入本次所需的模块
import random import time import requests import parsel import csv
模块可以pycharm里直接安装,输入pip install XXX(模块名)就行

请求数据
url = f'https://store.steampowered.com/contenthub/querypaginated/specials/TopSellers/render/?query=&start=1&count=15&cc=TW&l=schinese&v=4&tag=' headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36' } response = requests.get(url=url, headers=headers) 获取请求的数据
html_data = response.json()['results_html'] print(html_data)
这样网页源代码就获取到了

解析数据
selector = parsel.Selector(html_data) lis = selector.css('a.tab_item') for li in lis: href = li.css('::attr(href)').get() title = li.css('.tab_item_name::text').get() tag_list = li.css('.tab_item_top_tags .top_tag::text').getall() tag = ''.join(tag_list) price = li.css('.discount_original_price::text').get() price_1 = li.css('.tab_item_discount .discount_final_price::text').get() discount = li.css('.tab_item_discount .discount_pct::text').get() print(title, tag, price, price_1, discount, href) 
保存数据
先把数据保存进字典里面
dit = { '游戏': title, '标签': tag, '原价': price, '售价': price_1, '折扣': discount, '详情页': href, } csv_writer.writerow(dit) 最后保存到csv里
f = open('游戏_1.csv', mode='a', encoding='utf-8', newline='') csv_writer = csv.DictWriter(f, fieldnames=[ '游戏', '标签', '原价', '售价', '折扣', '详情页', ]) csv_writer.writeheader() 最后结果

到此这篇关于利用Python实时获取steam特惠游戏数据的文章就介绍到这了,更多相关Python获取steam游戏数据内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
您可能感兴趣的文章:
相关内容
- Python first-order-model实现让照片动起来_python_
- python热力图实现的完整实例_python_
- 彻底弄懂Python中的回调函数(callback)_python_
- 一文教会你用python裁剪图片_python_
- windows server 2008 r2 标准版安装python环境_python_
- Python实现GUI学生管理系统的示例代码_python_
- python+pytest接口自动化之session会话保持的实现_python_
- Python pandas.replace的用法详解_python_
- python图形用户界面tkinter之按钮Button的使用说明_python_
- python程序的打包分发示例详解_python_
