Skip to content

Instantly share code, notes, and snippets.

@anna-is-cute
Last active October 20, 2015 00:14
Show Gist options
  • Save anna-is-cute/78c20dfb2401662d44ee to your computer and use it in GitHub Desktop.
Save anna-is-cute/78c20dfb2401662d44ee to your computer and use it in GitHub Desktop.

requests

from requests import get
print(get("https://httpbin.org/get").json()["origin"])
# 46.21.154.83

khttp

import me.kyleclemens.khttp.get
println(get("https://httpbin.org/get").jsonObject.getString("origin"))
// 46.21.154.83
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment