w3resource

Python Web Scraping: Get the number of Pinterest accounts maintained by US state department embassies and missions

Python Web Scraping: Exercise-15 with Solution

Write a Python program to get the number of Pinterest accounts maintained by U.S. State Department embassies and missions.

Source: https://www.state.gov/r/pa/ode/socialmedia/

Sample Solution:

Python Code:

#https://bit.ly/2lVhlLX
import requests
from lxml import html
url = 'http://www.state.gov/r/pa/ode/socialmedia/'
doc = html.fromstring(requests.get(url).text)
pinlinks = [a for a in doc.cssselect('a') if 'pinterest.com' in str(a.attrib.get('href'))]
print("The number of Pinterest accounts maintained by U.S. State Department embassies and missions:")
print(len(pinlinks))
  
 

Sample Output:

The number of Pinterest accounts maintained by U.S. State Department embassies and missions:
3

Flowchart:

Python Web Scraping Flowchart: Get the number of Pinterest accounts maintained by U.S. State Department embassies and missions.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program get the number of security alerts issued by US-CERT in the current year.
Next: Write a Python program to get the number of followers of a given twitter account.

What is the difficulty level of this exercise?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/web-scraping/web-scraping-exercise-15.php