so mini rant turned into a mini build. was on the ratings page trying to filter users by city AND organization at the same time, wanted something specific like "rated users from Surat who are at NIT Patna." turns out you literally can't do that on the site, it only lets you pick one at a time, city or org, never both. found out there's an old feature request for this too that just never went anywhere.
so instead of waiting around I just built it myself. it's a small CLI tool that pulls the full rated user list from the official CF API and filters it locally by both fields at once, plus you can add a min/max rating if you want. no dependencies, nothing fancy, just run it.
repo: https://github.com/Rogue-strider/cf-city-org-filter
usage is basically:
python cf_filter.py --city Surat --org "NIT Patna"
can export to csv/json too if you want to save the results instead of just reading them off the terminal.
not a big project or anything, just something that was annoying me so I fixed it. if you've run into the same thing feel free to use it, and open to PRs if anyone wants to improve it.




