Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-20 Thread Tamas Sohamar
Using another search engine is not an option? On Thu, 21 Sept 2023, 05:55 The Wanderer, wrote: > On 2023-09-20 at 16:50, Tom Browder wrote: > > > On Wed, Sep 20, 2023 at 13:36 Nicolas George > > wrote: > > > >> Tom Browder (12023-09-20): > >> > >>> What if you used an equilavent script but incr

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-20 Thread The Wanderer
On 2023-09-20 at 16:50, Tom Browder wrote: > On Wed, Sep 20, 2023 at 13:36 Nicolas George > wrote: > >> Tom Browder (12023-09-20): >> >>> What if you used an equilavent script but increased and >>> randomized time > > ... > >> We can try to exercise some common sense, in particular by >> comp

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-20 Thread Tom Browder
On Wed, Sep 20, 2023 at 13:36 Nicolas George wrote: > Tom Browder (12023-09-20): > > What if you used an equilavent script but increased and randomized time ... We can try to exercise some common sense, in particular by comparing to > similar situations. For example, if you take something that

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-20 Thread tomas
On Wed, Sep 20, 2023 at 08:35:54PM +0200, Nicolas George wrote: > Tom Browder (12023-09-20): > > What if you used an equilavent script but increased and randomized time > > between each search string? Or do you think just the single search is > > enough to trigger them? > > We can try to exercise

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-20 Thread Nicolas George
Tom Browder (12023-09-20): > What if you used an equilavent script but increased and randomized time > between each search string? Or do you think just the single search is > enough to trigger them? We can try to exercise some common sense, in particular by comparing to similar situations. For ex

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-20 Thread Tom Browder
On Wed, Sep 20, 2023 at 09:35 Andy Smith wrote: > Hello, > > On Wed, Sep 20, 2023 at 08:13:43AM +0200, steve wrote: > > Le 19-09-2023, à 16:52:24 +0200, Nicolas George a écrit : > > > what you intend is completely forbidden by Google's terms and > > > service. And they have detection: please only

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-20 Thread steve
Le 20-09-2023, à 08:46:06 +, Andy Smith a écrit : Hello, On Wed, Sep 20, 2023 at 08:13:43AM +0200, steve wrote: Le 19-09-2023, à 16:52:24 +0200, Nicolas George a écrit : > what you intend is completely forbidden by Google's terms and > service. And they have detection: please only do this

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-20 Thread Andy Smith
Hello, On Wed, Sep 20, 2023 at 08:13:43AM +0200, steve wrote: > Le 19-09-2023, à 16:52:24 +0200, Nicolas George a écrit : > > what you intend is completely forbidden by Google's terms and > > service. And they have detection: please only do this on a > > computer and network access when you will b

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-19 Thread steve
Dear all, Thank you for your answers, unfortunately they don't help me much (provided code is too complicated for me). Le 19-09-2023, à 16:52:24 +0200, Nicolas George a écrit : steve (12023-09-19): I have a list of 200 keywords and would like for every one to launch a search on a specific we

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-19 Thread Greg Wooledge
On Tue, Sep 19, 2023 at 09:53:25PM -0400, Karl Vogel wrote: > On Tue, Sep 19, 2023 at 10:42:14AM -0400, steve wrote: > > I have a list of 200 keywords and would like for every one to launch a > > search on a specific website and put the result(s) in a file [...] > > Take a list of words and turn i

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-19 Thread Karl Vogel
On Tue, Sep 19, 2023 at 10:42:14AM -0400, steve wrote: > I have a list of 200 keywords and would like for every one to launch a > search on a specific website and put the result(s) in a file [...] Take a list of words and turn it into a single Google query matching any of them: me% cat keywor

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-19 Thread Jason
On 19.09.23 16:52, Nicolas George wrote: If not, then what you intend is completely forbidden by Google's terms and service. And they have detection: please only do this on a computer and network access when you will be the only one inconvenienced when they block your access. It happened on a com

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-19 Thread DdB
Am 19.09.2023 um 16:41 schrieb steve: > I guess I could code a Python script to do that but if something already > exists I'd rather use it. Really, your wording is very vague and thus, i donno, if i even understand, what your trying to accomplish. But from what my phantasies entice, i would maybe

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-19 Thread Nicolas George
steve (12023-09-19): > I have a list of 200 keywords and would like for every one to launch a > search on a specific website and put the result(s) in a file, something > like: > > search keyword website: example.com >> file.csv > > I guess I could code a Python script to do that but if something

Re: [a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-19 Thread Michael Kjörling
On 19 Sep 2023 16:41 +0200, from dl...@bluewin.ch (steve): > I have a list of 200 keywords and would like for every one to launch a > search on a specific website and put the result(s) in a file, something > like: > > search keyword website: example.com >> file.csv > > I guess I could code a Pyth

[a bit OT] Automate a (G o o g l e) search from a list of strings

2023-09-19 Thread steve
Hello, I'm sorry if this question is a bit OT but since the answer will be implemented from a Debian machine, it's not completely OT :) I have a list of 200 keywords and would like for every one to launch a search on a specific website and put the result(s) in a file, something like: search key