Note 13.13.1.
If you work in a group, have only one member of the group fill in the answers on this page. You will be able to share your answers with the group at the bottom of the page.
find and find_all to get data from a soup object
class_ to find data with a particular CSS class
tag.text
tag.get(attribute)
find or find_all to find either the first of a type of a tag or a list of a type of tag.
requests library to get a response object from a URL, create a BeautifulSoup object from the HTML content in the response, use find to find the first paragraph tag, and then print the first paragraph tag.
html.parser is the HTML parser that is included in the standard Python 3 library. It is used to parse the HTML into a tree of tags. Information on other HTML parsers is available at:
find_all method on BeautifulSoup to get a list of all of the paragraphs.
tagName.text to get the text. You can also find a tag with a particular CSS class.
class_ as the keyword. This is becuase class is already a keyword that is used to define a new class in Python.
<a href="url">link text</a>. An example is <a href="https://www.w3schools.com">W3Schools</a>.

