In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/01 Report--
This article shows you how to extract data through BeautifulSoup in Python. The content is concise and easy to understand. It will definitely brighten your eyes. I hope you can get something through the detailed introduction of this article.
Steps:
1. Use pycharm to create a new project. Check "Inherit global site-packages" when creating a new project, otherwise the requests class library may not be found.
2. Write the code, and we see that the amount of data on the web page is 101 lines, as follows:
The code is as follows:
Project structure (not important):
Program code:
BeautifulSoup can transform HTML documents into Tag trees. If the BeautifulSoup object is soup, we can get the first td element in the page through soup.td and all td elements through soup.find_all ('td'). That is, what find_all () returns is an array element, so we can get the corresponding content by subscript, as follows:
We can see that the subscript of the name of the first patent is 7, the second is 13, the third is 19, and so on, so we can achieve the effect by getting it at intervals.
The code is as follows, and remember to get the text attribute at last, otherwise you will get the content of XXX:
Running effect:
The above is how to extract data through BeautifulSoup in Python. Have you learned any knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.