We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b03c231 + 8e24cce commit 7b872c4Copy full SHA for 7b872c4
1-Data-Cleaning.ipynb
@@ -80,7 +80,9 @@
80
" '''Returns transcript data specifically from scrapsfromtheloft.com.'''\n",
81
" page = requests.get(url).text\n",
82
" soup = BeautifulSoup(page, \"lxml\")\n",
83
- " text = [p.text for p in soup.find(class_=\"ast-container\").find_all('p')]\n",
+ " #text = [p.text for p in soup.find(class_=\"ast-container\").find_all('p')]\n",
84
+ " # page html code was modified this line of code can be formated like this\n",
85
+ " text = [p.text for p in soup.find_all('p')]\n",
86
" print(url)\n",
87
" return text\n",
88
"\n",
0 commit comments