Python Forum
google - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: google (/thread-11380.html)



google - lokchi2017 - Jul-05-2018

is there anyway to connect python to google? like so i can search google through python


RE: google - metulburr - Jul-06-2018

you can just use any method to send a request out by constructing URL's and return the results
https://stackoverflow.com/questions/3898574/google-search-using-python-script

or you can use a python lib
https://www.geeksforgeeks.org/performing-google-search-using-python-code/