摘要:
使用urllib的urljoin()拼接两个地址 urlljoin的第一个参数是基础母站的url,第二个是需要拼接成绝对路径的url。 1 2 3 4 5 from urllib import parse url1 = "http://www.youtube.com/user/khanacademy 阅读全文
摘要:
1、将.idea目录加入ignore清单.gitignore内容: /.idea/2、从git中删除idea git rm --cached -r .idea 3、将.gitignore文件加入gitgit add .gitignore 4、提交gitiginore文件,将.idea从源代码仓库中删 阅读全文
摘要:
import requests url = "http://www.renren.com/967272361/profile" headers = {"User-Agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTM 阅读全文
摘要:
解决方案 pip install incremental 阅读全文