Skip to content

Commit 8fdaf20

Browse files
Update BookShelfScrape.py
1 parent b4b33aa commit 8fdaf20

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

BookShelfScrape.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
title = soupReading.find('title').text
6565
title = " ".join(re.findall("[a-zA-Z]+", title))
6666
# Grabbing all of the blue boxes which are denoted by "figure" in the HTML
67-
# Trying to also save them off as word documents, with both text and tables
67+
# Trying to also save them off as HTML documents, with text, tables, and images
6868
figures = soupReading.findAll("figure", {"class": "example"})
6969
if len(figures) >= 1:
7070
readingFile = open('%s.html' % title, 'wb')

0 commit comments

Comments
 (0)