I am currently writing my master thesis and want to use this unofficial google api to automatically download some search queries.
https://github.com/elibus/j-google-trends-client/blob/master/README.md
I am very new to this stuff, so I would need some help to specify some inputs to get the data I need.
I have a list of queries in the same folder as the .jar which I want to use as imput for the API. But I fail to tell the program to use this folder as I do not know the proper command.
The creator of this API told me that the following would work on Linux (I use windows 8.1 (unfortunately)) but I could not transfer it to comands appropriate for my system.
for i in cat query_list.txt
;do java -jar
java -jar j-google-trends-client.jar -u user -p pass -q "$i";done
More specifaclly, i got the msg that "i was unexpeted in that place". Does someone know that have to do?
Help would be much appreciated!
Thanks a lot and best regards Micha