-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathendpoint.py
51 lines (45 loc) · 1.56 KB
/
endpoint.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import requests
import json
# URL for the web service, should be similar to:
# 'http://8530a665-66f3-49c8-a953-b82a2d312917.eastus.azurecontainer.io/score'
scoring_uri = 'http://044421e5-ffb9-4640-863b-22a90de25c36.southcentralus.azurecontainer.io/score'
# If the service is authenticated, set the key or token
key = 'Jf3onIMLPJRoWOBxdTEzobIFee0HR92x'
# Two sets of data to score, so we get two results back
data = {"data":
[
{
'job': "example_value",
'marital': "example_value",
'education': "example_value",
'default': "example_value",
'housing': "example_value",
'loan': "example_value",
'contact': "example_value",
'month': "example_value",
'day_of_week': "example_value",
'duration': "0",
'campaign': "0",
'pdays': "0",
'previous': "0",
'poutcome': "example_value",
'emp.var.rate': "0",
'cons.price.idx': "0",
'cons.conf.idx': "0",
'euribor3m': "0",
'nr.employed': "0",
'y': "example_value",
},
]
}
# Convert to JSON string
input_data = json.dumps(data)
with open("data.json", "w") as _f:
_f.write(input_data)
# Set the content type
headers = {'Content-Type': 'application/json'}
# If authentication is enabled, set the authorization header
headers['Authorization'] = f'Bearer {key}'
# Make the request and display the response
resp = requests.post(scoring_uri, input_data, headers=headers)
print(resp.json())