爬虫
wwxy261
这个作者很懒,什么都没留下…
展开
-
acwing Linux基础课Git部分总结
作业包含开发常用的git操作,其中git add,git commit,git push通常不需要使用命令行,可以用IDE完成。 创建分支和合并分支要熟练。 远程仓库的ssh配置以及用户名和邮箱的配置要熟练。原创 2021-09-22 00:16:05 · 300 阅读 · 0 评论 -
Leetcode 最小未被占据椅子的编号 (轮询模拟)
模拟维护离开椅子时间,采用轮训的方法或者用小根堆优化即可。 class Solution { public: int smallestChair(vector<vector<int>>& times, int targetFriend) { int arrival = times[targetFriend][0], leavingi = times[targetFriend][1]; sort(times.begin(), ...原创 2021-07-25 00:17:48 · 120 阅读 · 0 评论 -
Python bs4抓取新浪新闻简单版
import requests from bs4 import BeautifulSoup import time import pandas res = requests.get("http://news.sina.com.cn/china/") res.encoding = "utf-8" soup = BeautifulSoup(res.text, 'html.parser') newsa...原创 2018-07-05 23:44:11 · 344 阅读 · 0 评论 -
python bs4爬取腾讯新闻简单练习版
import requests from bs4 import BeautifulSoup import pandas res = requests.get("http://news.qq.com/") soup = BeautifulSoup(res.text, 'html.parser') newsary = [] for news in soup.select('.Q-tpWrap .te...原创 2018-07-04 20:42:38 · 619 阅读 · 0 评论 -
python批量下载音乐
import requests import time import re import os class MUSIC: def __init__(self): self.header = {"User-Agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleW" ...原创 2018-03-29 22:03:52 · 4551 阅读 · 1 评论