from urllib.request import urlopen
from bs4 import BeautifulSoup
url = "http://alura-site-scraping.herokuapp.com/hello-world.php"
response = urlopen(url)
TypeError Traceback (most recent call last) in 1 url = "http://alura-site-scraping.herokuapp.com/hello-world.php" ----> 2 response = urlopen(url)
TypeError: 'module' object is not callable