Alex

Results 6 comments of Alex

> Seems like there is an error on line 172 of videos.py: **script_data = self._scrapScriptInfo(soup_data.find("script", type="application/ld+json").text)** > > the return of soup_data.find("script", type="application/ld+json").text is an empty string > > Furthermore,...

> This issue could be solved by replacing the code on line 172 **_soup_data.find("script", type="application/ld+json").text_** with the following: **_re.findall('([\s\S]+?)', str(soup_data))[0]_** > > I am not sure why the original bs4...

Hmm, as far as I remember, I changed it in pull request #13 I think I'm starting to figure out where these errors come from. Did you install the package...

> > Hmm, as far as I remember, I changed it in pull request #13 I think I'm starting to figure out where these errors come from. Did you install...

> Okay, there is a 404 request error in line 66 of _loadPage(), that is probably the cause of trouble > > And the reason why such trouble occurs is...

> > > > Cool, I also found a way to correct the infinite loop error caused by not finding the wanted "sectionWrapper" I rewrite and change the method _scrapLiVideos()...