Sep-05-2018, 11:49 PM
module that I made:
web scraping script:
error:
Why I can't import ht_doc module?
1 2 3 4 5 6 7 8 9 10 11 12 |
<!DOCTYPE html> <html><head><title>The Dormouse's story< / title>< / head> <body> <p class = "title" ><b>The Dormouse's story< / b>< / p> <p class = "story" >Once upon a time there were three little sisters; and their names were and they lived at the bottom of a well.< / p> <p class = "story" >...< / p> |
1 2 3 4 |
import ht_doc from bs4 import BeautifulSoup soup = BeautifulSoup(ht_doc.html, 'html.parser' ) print (soup.prettify()) |
Error:C:\Python36\kodovi>busoup.py
Traceback (most recent call last):
File "C:\Python36\kodovi\busoup.py", line 1, in <module>
import ht_doc
ModuleNotFoundError: No module named 'ht_doc'
Decided to practise Beautiful Soup module and hit a snag at the beginning. 