Sep-05-2018, 11:49 PM
module that I made:
Why I can't import ht_doc module?
<!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 <a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>, <a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and <a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>; and they lived at the bottom of a well.</p> <p class="story">...</p>web scraping script:
import ht_doc from bs4 import BeautifulSoup soup = BeautifulSoup(ht_doc.html, 'html.parser') print(soup.prettify())error:
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. 