resp = http_get("https://api.github.com")
# Access response fields with dot notation
print("Status: " + resp.status)
print("Response type: " + type_of(resp))
print("Response has " + len(keys(resp)) + " fields")
print("")
# Show field names
print("Fields in response:")
print(keys(resp))