当前位置: 首页 > news >正文

网站播放图片多大合适在线网页代理访问

网站播放图片多大合适,在线网页代理访问,网页设计网站开发教程,企业网站开发外包公司代码逻辑 初始化 (init 方法)#xff1a; 设置请求头信息。设置车站版本号。 同步车站信息 (synchronization 方法)#xff1a; 发送GET请求获取车站信息。返回服务器响应的文本。 提取信息 (extract 方法)#xff1a; 从服务器响应中提取车站信息字符串。去掉字符串末尾的…代码逻辑 初始化 (init 方法) 设置请求头信息。设置车站版本号。 同步车站信息 (synchronization 方法) 发送GET请求获取车站信息。返回服务器响应的文本。 提取信息 (extract 方法) 从服务器响应中提取车站信息字符串。去掉字符串末尾的多余字符。 处理信息 (process 方法) 提取并处理车站信息。打印车站总数。创建一个新的车站字典只包含所需的字段。调用 save_station 方法保存车站信息。 保存车站信息 (save_station 方法) 将车站信息保存到本地JSON文件。 查找含有关键词的车站 (find_keyword_station 静态方法) 从本地文件加载车站信息。根据关键词查找符合条件的车站。 查找以指定字符结尾的车站 (find_stations_with_last_char 方法) 从本地文件加载车站信息。找出以指定字符结尾的车站名称。调用 save_matching_stations 方法保存结果。 保存匹配的车站 (save_matching_stations 方法) 将匹配的车站信息保存到本地JSON文件。 查找所在城市的车站 (find_stations_in_city 方法) 从本地文件加载车站信息。找出所在城市为指定城市的车站。 主程序入口 (if name “main” 块) 实例化 Station 类。调用 process 方法处理车站信息。调用 find_stations_with_last_char 方法查找以特定字符结尾的车站。调用 find_keyword_station 方法查找含有关键词的车站。调用 find_stations_in_city 方法查找所在城市的车站。 完整代码 import json import re import requests# 定义车站信息的URL URL_STATION_NAME https://kyfw.12306.cn/otn/resources/js/framework/station_name.jsclass Station:def __init__(self):# 设置请求头self.headers {User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36}# 获取车站版本号self.version 1.9320def synchronization(self):# 发送GET请求获取车站信息response requests.get(URL_STATION_NAME, headersself.headers, params{station_version: self.version})return response.textdef extract(self):# 提取响应中的车站信息response self.synchronization()response response.replace(var station_names , ).strip()return response[:-2] # 去掉末尾的多余字符def process(self):# 处理提取的数据response self.extract()response re.findall(r(.*?)\|\|\|, response)print(f共有{len(response)}个车站)response [i.split(|) for i in response]# 创建一个新的车站字典只包含所需的字段station_dict []for item in response:station_info {车站名: item[1],车站代码: item[2],车站编号: item[5],所在城市: item[7],城市编号: item[6]}station_dict.append(station_info)self.save_station(station_dict)return station_dictdef save_station(self, station_dict):# 将车站信息保存到本地文件with open(resource/station_dict.json, w, encodingutf-8) as f:json.dump(station_dict, f, ensure_asciiFalse, indent4)staticmethoddef find_keyword_station(keyword, _typestation):# 查找含有keyword的站名with open(resource/station_dict.json, rt, encodingutf-8) as f:station_dict json.load(f)if _type station:response [item for item in station_dict if keyword.lower() in item[车站名].lower()]elif _type code:response [item for item in station_dict if keyword.lower() in item[车站代码].lower()]else:response []return responsedef find_stations_with_last_char(self, char):# 查找所有字典的key里最后一个字是指定字符的站名并保存结果到JSON文件with open(resource/station_dict.json, rt, encodingutf-8) as f:station_dict json.load(f)# 使用列表推导式来找到符合要求的站名matching_stations [item for item in station_dict if item[车站名].endswith(char)]# 保存结果到JSON文件self.save_matching_stations(matching_stations, char)return matching_stationsdef save_matching_stations(self, matching_stations, char):# 将车站信息保存到本地文件filename fresource/stations_with_last_char_{char}.jsonwith open(filename, w, encodingutf-8) as f:json.dump(matching_stations, f, ensure_asciiFalse, indent4)def find_stations_in_city(self, city_name):# 查找所在城市为指定城市的车站with open(resource/station_dict.json, rt, encodingutf-8) as f:station_dict json.load(f)# 使用列表推导式来找到符合要求的站名并排除不需要的字段matching_stations [{k: v for k, v in item.items() if k not in [所在城市, 城市编号]}for item in station_dict if city_name.lower() in item[所在城市].lower()]return matching_stations# 主程序入口 if __name__ __main__:station Station()station.process()result station.find_stations_with_last_char(东)print(f找到 {len(result)} 个以 东 结尾的站名)result station.find_stations_with_last_char(西)print(f找到 {len(result)} 个以 西 结尾的站名)result station.find_stations_with_last_char(南)print(f找到 {len(result)} 个以 南 结尾的站名)result station.find_stations_with_last_char(北)print(f找到 {len(result)} 个以 北 结尾的站名)# 查找含有湛江的站名keyword 湛江result station.find_keyword_station(keyword, _typestation)print(result)# 查找所在城市为湛江的车站city_name 湛江result station.find_stations_in_city(city_name)print(f找到 {len(result)} 个位于 {city_name} 的车站:)print(result)运行结果 本文参考了这个项目在此表示感谢但由于该项目需要配置flask笔者对此并不熟悉于是自己抽取出查询车站的代码并完善了相关功能不再需要其他配置。
http://www.w-s-a.com/news/623245/

相关文章:

  • 做网站推广引流效果好吗电商推广技巧
  • 亦庄网站建设价格广州网站推广服务
  • 十大免费ppt网站下载重庆在线高校平台登录
  • 做环保网站案例百度seo教程
  • 体育用品网站模板网站建设话术
  • 潍坊网站建设服务商做网站多久能盈利
  • 嘉定区做网站房产信息查询官网
  • 网站直播间 是怎么做的唐山论坛建站模板
  • 深圳洲聚网站建设wordpress 泛解析
  • 五金东莞网站建设技术支持wordpress 添加模板
  • 网站申请专利春节网页设计素材
  • 进网站备案md风格的wordpress主题
  • 如何建站网站十大免费建站app
  • 工作号做文案素材的网站晋城网站设计人
  • 建设部网站官网 施工许可怎样建网站 需要
  • 什么网站都能打开的浏览器同城小程序怎么推广
  • 在电脑上怎么做网站网址seo分析
  • 石家庄做网站网络公司电子商务营销推广
  • 网站开发 前端专做婚礼logo的网站
  • 同创企业网站建设拖拽建设网站源码
  • wordpress调用网站标题网站页面排版
  • 哈尔滨营销网站建设电子商城网站开发要多少钱
  • 免费织梦导航网站模板下载地址自己建站网站
  • 获取网站访客qq号码代码做抽奖网站违法吗
  • 湖南大型网站建设公司排名偷网站源码直接建站
  • 网站建设周期规划北京网站设计必看刻
  • 如何做自己的在线作品网站深圳网站设计公司的
  • 网站开发外包公司wordpress最简单模板
  • 湖南省建设人力资源网站wordpress主机pfthost
  • 淮安软件园哪家做网站各网站特点