I'm trying to pull a youtube url from a Wordpress post:
import newspaper
url = 'http://felicite.ca/2014/03/31/paul-eric-kingue-par-hermann-kenfack/'
a = newspaper.Article(url)
a.download()
a.parse()
a.movies
[]
I ran the exact same code with the url from this issue (#64) and got two youtube urls, so everything seems fine on my end.Also, when I ran a.text and a.top_image ,they both retrieved content that are in the right sidebar...
I'm trying to pull a youtube url from a Wordpress post: