Romain Bruyère

Results 3 comments of Romain Bruyère

If this can help anyone, I've managed to make it work using docker-compose with this configuration : ``` version: '3.7' services: oracle-service: container_name: oracle-service image: wnameless/oracle-xe-11g-r2 volumes: - type: volume...

Here is the code: ``` import yagooglesearch client = yagooglesearch.SearchClient( "Paris", tld="com", lang_html_ui="fr", lang_result="lang_fr", tbs="li:1", max_search_result_urls_to_return=20, http_429_cool_off_time_in_minutes=45, http_429_cool_off_factor=1.5, verbosity=5, verbose_output=True, ) client.assign_random_user_agent() results = [] for result in client.search(): print(result)...

Thanks, I already tried several options: 1. It doesn't work, and give me the same empty result list. 2. Tried with my US VPN, and it does work 3. Haven't...