In [1]:
import requests
from bs4 import BeautifulSoup
In [2]:
# Get this page: http://pythonforengineers.com/your-first-gui-app-with-python-and-pyqt/
In [3]:
# Create Beautiful Soup instance
In [8]:
# Find the link with the word "source code" in it.
# Note that you will not get an exact match- you will have to work around it.
In [9]:
# Count number of images on page and print
In [ ]: