Skip to content

Instantly share code, notes, and snippets.

@kerimkaan
Created July 14, 2019 12:45
Show Gist options
  • Save kerimkaan/820ce70607cdff0ec002c7630a2d7fe3 to your computer and use it in GitHub Desktop.
Save kerimkaan/820ce70607cdff0ec002c7630a2d7fe3 to your computer and use it in GitHub Desktop.
İsmet Özel API: GET Request on Python
import http.client
conn = http.client.HTTPSConnection("ismetozel.herokuapp.com")
payload = ""
conn.request("GET", "/rastgele/json", payload)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment