prodia / transform.py
pikto's picture
Create transform.py
533999b
raw
history blame contribute delete
278 Bytes
import requests
url = "https://api.prodia.com/v1/transform"
headers = {
"accept": "application/json",
"content-type": "application/json",
"X-Prodia-Key": "69e66898-010d-4cd1-9e22-090f73ad007b"
}
response = requests.post(url, headers=headers)
print(response.text)