I am not building an application that depends on constantly querying Google. I constructed a simple function, based off of this, to return the first result of a Google search for a given query. I only want to use it in isolated instances with dataframes of 100-200 lines.
According to this I can do 40 queries per hour for free, so I'm okay spreading my requests across several hours. I'm also not opposed to authenticating beforehand, but I couldn't find what seemed to be the right solution. The closest I found was googleAuthR, but it doesn't seem to have an option for the Google search engine.
I've never tried to do anything like this before, so this is still pretty new to me. All help is appreciated!