mirror of
https://github.com/michivonah/python.git
synced 2025-12-22 20:46:29 +01:00
10 lines
No EOL
160 B
Python
10 lines
No EOL
160 B
Python
# API - Make a request
|
|
# Michi von Ah - Janaury 2024
|
|
|
|
import requests
|
|
|
|
endpoint = "https://example.com"
|
|
|
|
response = requests.get(endpoint)
|
|
|
|
print(response.text) |