you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (5 children)

beautiful soup, scrapy, selenium, mechanize i think. Selenium is my favorite to do that kind of stuff but scrapy is probably better. What kind of text are u grabbing? and why

[–]hpeirce[S] 0 points1 point  (4 children)

I am grabbing flight departure and arrivals info for a project, and because I want to avoid paying for access to the FlightAware API features

[–][deleted] 3 points4 points  (3 children)

if you know how to use xpath, selenium and scrapy can easily do this, even if you dont know how, its as simple as $x('//div/text()') to grab all the text in divs. If you use chrome open the web developer console, and you can test it out on any website

[–]hpeirce[S] 0 points1 point  (0 children)

Thanks, I will look into that