Skip to content Skip to sidebar Skip to footer

Not Able To Scrape Location Using Python

i am newbie to python data scraping and trying to scrape data from kickstarter. i am using the following code to scrape location data from link i am using the following code test_p

Solution 1:

The location elements can be selected using the location-name class like so:

...
test_loc = test_pagetree.find_class('location-name')[0].text

Post a Comment for "Not Able To Scrape Location Using Python"