mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
10 lines
247 B
Python
Executable File
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 |