ChrisMuir / Zillow

Zillow Scraper for Python using Selenium
162 stars 75 forks source link

keyerror on pandas import #4

Closed modelB closed 7 years ago

modelB commented 7 years ago

I assume the error is mine rather than the code but when I step through I am getting a keyerror on import of pandas. I am a novice programmer but spent several hours on stackoverflow and google looking for an answer with no luck. Any help is appreciated.

image

ChrisMuir commented 7 years ago

Hi @modelB , sorry you're running into issues.

To be honest, I've never seen a KeyError exception upon library import, but it indeed sounds like a local configuration issue (I'm NOT a Python expert though). Doing some quick googling, this post and this post are the closest things I could find to what you describe.

If worst comes to worst, I'm only using Pandas to house the output data frame, you could eliminate Pandas and use a different data structure to house the data (maybe a dictionary with the url strings as the keys).

modelB commented 7 years ago

Thanks, I am sure I'm doing something wrong. Will figure it out.