Is it possible to add links into the Python script and print it out to the terminal/console? Like in HTML; once it was clicked, we will be redirected to the URL. (I\'m on Li
Yes it is possible here is a simple python cgi script that does what you describe.
print "Content-type: text/html" print print """ Sample google """
you can learn more about cgi here http://en.wikipedia.org/wiki/Common_Gateway_Interface