django2/pyapp/pyapp_api/api-client.py
Peter Kotyczka 5fe40e0304 api added
2024-04-08 20:55:26 +02:00

10 lines
247 B
Python
Executable File

import requests
endpoint = "https://httpbin.org/status/200"
endpoint = "https://httpbin.org/anything"
endpoint = "http://localhost:8000/api"
get_response = requests.get(endpoint) # HTTP get request
print(get_response.text)
# REST API -> Web API