Skip to content

Commit c3ccfd7

Browse files
Apply suggestions from code review
Co-authored-by: Martin Breuss <[email protected]>
1 parent f22c469 commit c3ccfd7

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

python-web-scraping-practical-introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Then, navigate into the subfolder and install the requirements with `pip`:
1919

2020
## Author
2121

22-
- **Philipp Acsany**, E-mail: [[email protected]](philipp@realpython.com)
22+
- [David Amos](https://realpython.com/team/damos/)
2323

2424
## License
2525

python-web-scraping-practical-introduction/beautifulsoup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
from bs4 import BeautifulSoup
21
from urllib.request import urlopen
32

3+
from bs4 import BeautifulSoup
4+
45
url = "http://olympus.realpython.org/profiles/dionysus"
56
page = urlopen(url)
67
html = page.read().decode("utf-8")

python-web-scraping-practical-introduction/mechanicalsoup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import time
2+
23
import mechanicalsoup
34

45
browser = mechanicalsoup.Browser()

0 commit comments

Comments
 (0)