I'm wondering whether it's possible to use an online search engine within Python to search through thousands of search items all at once.
Essentially, I have 3000+ bits of data (coordinates to be specific). There's a website online that can take these coordinates and spit out what it's closest to (in some vague sense -- the specifics aren't important).
So, I want to be able to put all 3000 into the search engine and get 3000 answers efficiently without having to submit each search query one at a time. Is there a way to use an online search engine that someone else created in this sense?