I rewrote a function from Curl to Python. Unfortunately, I get the following error message all the time:
test.py: line 3: import: command not found
test.py: line 5: headers: command not found
test.py: line 6: Content-Type:: command not found
test.py: line 7: syntax error near unexpected token `}'
test.py: line 7: `}'
I installed request via pip, and I also added Shebang. Unfortunately, I am not able to detect the issue?
Here is the code:
#!/usr/bin/env python
import requests
headers = {
    'Content-Type': 'application/json',
}
params = (
    ('api_key', 'xxx'),
    ('application_key', 'xxx'),
)
data = '{\n   "config":{\n      "assertions":[\n         {\n            "operator": "isInMoreThan",\n            "type": "certificate",\n            "target": 10\n         }\n      ],\n      "request":{\n        "host": "test.com",\n        "port": 443\n      }\n   },\n   "locations":[\n      "aws:eu-central-1" \n   ],\n   "message":" @test.test@test.com @test.test@test.com\\nSSL Certificate for test.test@test.com is going to expire in less than 10 days.",\n   "name":"SSL Test python on test.test@test.com",\n   "options":{\n    "min_failure_duration": 0,\n    "tick_every": 86400,\n    "min_location_failed": 1\n   },\n   "tags":[\n    "test",\n    "application:test"\n   ],\n   "type":"api",\n   "subtype": "ssl"\n}'
# response = requests.post('https://api.datadoghq.eu/api/v1/synthetics/tests', headers=headers, params=params, data=data)
response = requests.post('https://api.datadoghq.eu/api/v1/synthetics/tests?api_key=xxx&application_key=xxx', headers=headers, data=data)
 
    