Tagged Questions
2
votes
1answer
436 views
How to use python urlopen scraping after a page finish loading all searching result?
I am trying to scrape air ticket info(including plane info and price info, etc.) from http://flight.qunar.com/ using python3 and BeautifulSoup. Below is the python code I am using. In this code I ...
0
votes
2answers
103 views
urlopen always retrieves the same webpage
I am trying to parse webpages using urllib2, BeautifulSoup and Python 2.7.
The problem lies upstream: each time I try to retrieve a new webpage, I get the one I already retrieved. However, pages are ...
1
vote
1answer
170 views
Cannot create Soup from Guardian article fetched with urllib2.urlopen
I somehow cannot create a soup from a Guardian article I am fetching with urllib2.urlopen() when the same code works with another url.
Here is my code:
import urllib2
from bs4 import BeautifulSoup
...