Skip to content

Instantly share code, notes, and snippets.

@Averroes
Created April 10, 2015 17:03
Show Gist options
  • Select an option

  • Save Averroes/0e40d6a422ca01c2e938 to your computer and use it in GitHub Desktop.

Select an option

Save Averroes/0e40d6a422ca01c2e938 to your computer and use it in GitHub Desktop.
creating a simple rest based interface
from urllib.request import urlopen
u = urlopen('http://localhost:8080/hello?name=Guido')
print(u.read().decode('utf-8'))
u = urlopen('http://localhost:8080/localtime')
print(u.read().decode('utf-8'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment