Python
LALAAYANG
这个作者很懒,什么都没留下…
展开
-
两个python的git库
由于需要爬取git repo 中的内容,此处记录两个需要的库:gitpython & Repopip install gitpython -i http://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.compip install Repo -i http://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com...原创 2021-03-23 12:24:50 · 183 阅读 · 0 评论 -
A Record |爬取论文链接
import requestsimport urllib.requestfrom bs4 import BeautifulSoupfrom lxml import etreeimport jsondef get_links(html): global links_list links_list=[] soup = BeautifulSoup(html, "lxml") for target in soup.find_all('a'): # 通过find定位标签.原创 2021-02-01 15:19:47 · 173 阅读 · 0 评论 -
A record | 爬取论文名
import requestsimport urllib.requestfrom bs4 import BeautifulSoupimport jsondef bs_parse_names(html): global tname_list tname_list = [] soup = BeautifulSoup(html, "lxml") # 查找所有class属性为list-group-item的div标签 div_list = soup.find_al原创 2021-02-01 15:16:30 · 149 阅读 · 0 评论 -
python字符串函数记录
python字符串函数记录修改字符串大小写删除空白修改字符串大小写将每个单词的首字母改为大写:title()将字符串转变为大写:upper()将字符串转变为小写:lower()删除空白此处,空白包括任何非打印字符,如:空格、制表符、换行符删除字符串尾空白:rstrip()删除字符串首空白:lstrip()同时剔除字符串两边空白:strip()...原创 2021-01-26 23:35:13 · 142 阅读 · 0 评论 -
爬虫第三方库安装问题解决(待补充)
爬虫第三方库安装问题解决问题描述解决方法问题描述在安装python第三方库时,无论是使用pip安装还是whl安装,总会出现系列问题,描述如下:其中whl下载来自官网(1)访问网站超时,并且无匹配版本:ERROR: Could not find a version that satisfies the requirement requestsERROR: No matching distribution found for requests(2)证书问题ERROR: Could not f原创 2021-01-26 14:23:02 · 2202 阅读 · 0 评论 -
selenium 运行 chromedriver 报错
selenium 运行 chromedriver 报错问题描述问题原因解决方法问题描述Selenium: WebDriverException:Chrome failed to start: crashed as google-chrome is no longer running so ChromeDriver is assuming that Chrome has crashed问题原因执行代码:from selenium import webdriverbrowser= webdriver原创 2021-01-25 18:13:06 · 4191 阅读 · 0 评论