Python3 using BeautifulSoup to crawl the data in a tag using a dictionary method

Source: Internet
Author: User

#-*-coding:utf-8-*-#Python 2.7#Xiaodeng#http://tieba.baidu.com/p/2460150866#Label Operations fromBs4ImportBeautifulSoupImporturllib.requestImportRe#if it is a URL, you can use this method to read the page#Html_doc = "http://tieba.baidu.com/p/2460150866"#req = urllib.request.Request (html_doc)#webpage = urllib.request.urlopen (req)#html = webpage.read ()HTML=""""""Soup= BeautifulSoup (HTML,'Html.parser')#Document Object#find a tag and find only a label#print (SOUP.A) #<a class= "sister" href= "Http://example.com/elsie" id= "Xiaodeng" ><!--Elsie--></a > forKinchSoup.find_all ('a'):    Print(k)Print(k['class'])#check the Class property of a tag    Print(k['ID'])#Check the ID value of the a tag    Print(k['href'])#Check the href value of a tag    Print(k.string)#Check the A-tag string    #tag.get (' CALSS ') can also achieve this effect        

Python3 using BeautifulSoup to crawl the data in a tag using a dictionary method

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.