I'm trying to find Countries/Cities on the webpage. So I used Geograpy. but it is Not working properly. Note: given website contains All the States in United States Website = http://state.1keydata.com/
import geograpy
url='http://state.1keydata.com/'
place=geograpy.get_place_context(url=url)
print place.countries #[]
print place.cities #[]
I have installed all the required packages like georapy,nltk(all) I am using Anaconda.
Please guide if I'm wrong.
Thank you in advance :)