I don't understand the documentation
gunbuster363 0 Junior Poster
Recommended Answers
Jump to PostBeautifulSoup is a third party module for Python2 that allows you to access even badly coded HTML code. What do you want to do with it?
Jump to PostIf you have very large HTML documents you have the option to parse only selected parts of the document. Here is an example (Python2 code) ...
import urllib from BeautifulSoup import BeautifulSoup, SoupStrainer html = urllib.urlopen("
Jump to PostThen you do something like this ...
# search the http://python.org html code for all the # <a tag lines that have a title with the word Python in it …
All 10 Replies
AutoPython 5 Junior Poster
vegaseat 1,735 DaniWeb's Hypocrite Team Colleague
gunbuster363 0 Junior Poster
vegaseat 1,735 DaniWeb's Hypocrite Team Colleague
ov3rcl0ck 25 Junior Poster
gunbuster363 0 Junior Poster
vegaseat 1,735 DaniWeb's Hypocrite Team Colleague
amrutraj 0 Newbie Poster
TrustyTony 888 ex-Moderator Team Colleague Featured Poster
amrutraj 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.