new stuff

This commit is contained in:
Joe Steele
2024-02-13 12:49:52 -05:00
parent 9ef1133263
commit a4262ba6ae
10 changed files with 215 additions and 2 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ request_result=requests.get( url )
soup = bs4.BeautifulSoup(request_result.text,
"html.parser")
#print(soup)
heading_object=soup.find_all( 'h3' )
heading_object=soup #.find_all( 'h1' )
# Iterate through the object
# and print it as a string.