File size: 193 Bytes
79ce9cc
 
c843a3d
ae77f8e
c843a3d
 
ae77f8e
 
 
 
 
 
c843a3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import requests

# URL
url = 'http://localhost:5000/api/'

# Change the value of experience that you want to test
payload = {
	'exp':1.8
}

r = requests.post(url,json=payload)

print(r.json())