juliomalegria / python-craigslist

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

Max get_results #66

Closed irahorecka closed 4 years ago

irahorecka commented 4 years ago

I did some testing, and it seems like the maximum get_results per site, area, and category is 3000.

e.g. ` from craigslist import CraigslistHousing x = CraigslistHousing(site='sfbay',category='apa',area='eby') y = [i for i in x.get_results(sort_by='newest')]

print(len(y)) #3000 `

Would you say Craigslist has an upper limit on posts per area in a certain category?

irahorecka commented 4 years ago

Hello, just a follow up....
alt text

A heads up for future users... Craigslist caps max search per region at 3000.
I will close this issue.

juliomalegria commented 4 years ago

Thanks Ira. I hadn't notice that. I'll add it to the documentation.