Final Exam Flashcards
What does IP do?
It packages the data?
What does stream=True do in requests.get?
What is included as the second argument in beautiful soup?
“html.parser”
When is .content typically used with beautiful soup?
For binary data (like images)
What is .text used for in beautiful soup?
Text based content…like
How do you find all tags with a particular attribute with beautiful soup?
Soup.find_all(”tag_name”, attribute_name<optionally = text>)
How can you use regular expressions to find tags with a certain ending?
Tags = beautiful soup.find_all(’tag_name’, attribute_name=re.compile(r’.jpg$’))
What does status code 404 mean?
Not found
What does status code 500 do?
Internal server error
Can you use find_all on specific tags?
Yes
What are the five types of plots for matplotlib?
- Plot
- Scatter
- Bar
- Hist
- Pie
How do you save a figure with matplotlib?
plt.savefig(”file_name”)
Ow do you add a title in matplot lib?
plt.title(string)
How do you add labels in matplotlib?
plt.xlabel(label_name), plt.ylabel(label_name)
How do you add a legend in matplotlib?
ply.plot(x, y,label=”label_name”)