juliomalegria / python-craigslist

Simple Craigslist wrapper
MIT No Attribution
387 stars 117 forks source link

API Broken #32

Closed gregv21v closed 7 years ago

gregv21v commented 7 years ago

Is there something broken with the API? Whenever I "get_results", it returns nothing.

juliomalegria commented 7 years ago

Hi Gregory, Seems like Craigslist recently changed its HTML format and the library stopped working (see #31). I've already fixed it and released a new version to PyPI. Please update your library, make sure your version is 1.0.3 (or higher). Feel free to reopen this issue if this doesn't fix your problem.

gregv21v commented 7 years ago

I've updated to 1.0.3, and I'm still having the issue.

Here is what I'm trying to run:

from craigslist import CraigslistHousing
cl_e = CraigslistHousing(site='boston')

for result in cl_e.get_results(limit=5):
    print(result)
gregv21v commented 7 years ago

Something happened. It works now. I'm not sure what it was. Maybe the update did work afterall.