自用函数备忘录
无法提供摘要。这是一篇受保护的文章。
https://blog.csdn.net/qq_40907977/articl… Continue Reading →
https://h5player.bytedance.com/generate/
https://cloud.tencent.com/developer/arti… Continue Reading →
原文:https://blog.csdn.net/wuShiJingZuo/ar… Continue Reading →
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
#它会取class含有有test1和test2的元素 xpath('//div[contains(@class,"test1") and contains(@class,"test2")]') #它会取class 含有 test1 或者test2满足时,或者同时满足时的元素 xpath('//div[contains(@class,"test1") or contains(@class,"test2")]') 查找name属性中包含zhangsan关键字的页面元素 //divt[contains(@name,'zhangsan')] xpath写法为 //a[text()='百度搜索'] 或者 //a[contains(text(),"百度搜索")] <a href="http://www.baidu.com">百度搜索</a> #开闭标签之间的文本内容 //a[contains(@class,"news-item-title")]/text() #选中标签节点中获取指定属性的值 //a[contains(@class,"news-item-title")]/@href # 选取class属性包含ing的href链接地址 html.xpath("//div/p[2][contains(@class,'ing')]/a/@href") # 选取价格大于20元书的价格值 html.xpath("//book[price>20.00]/price/text()") # 选取前2本书 html.xpath("//book[position()<3]/title/text()") #取div位置大于2的 并且类包含three的 html.xpath("//div[position()>2 and contains(@class,'three')]/@class") # 豆瓣电影评分大于8的电影 //span[@class="rating_nums"][text()>8] #xpath定位标签中最后一个元素 last() //span[@class="comment-info"]//span[last()] #xpath定位标签中倒数第二个元素 last() //span[@class="comment-info"]//span[last()-1] #列表下一页 text() //div[@class="m-page"]/a[contains(text(),'下一页')] #在路径表达式中使用"|"运算符,您可以选取若干个路径。 #选取 book 元素的所有 title 和 price 元素。 //book/title | //book/price #选取文档中的所有 title 和 price 元素。 //title | //price #选取属于 bookstore 元素的 book 元素的所有 title 元素,以及文档中所有的 price 元素。 //bookstore/book/title | //price |
紅牛資源 https://www.hongniuzy2.com/api.php/… Continue Reading →
1.requests 库简介 Requests 是一个为人类设计的简单而优雅的 … Continue Reading →
© 2024 九天博客 — Powered by WordPress
Theme by Anders Noren — Up ↑