File size: 243 Bytes
a28f0e9
 
 
 
 
 
082f61a
a28f0e9
 
 
1
2
3
4
5
6
7
8
9
10
import requests
payload = {
  "title": "This is my great blog title",
   "content": "This is the body of my article",
   "Author": "Jaskier"
}
r = requests.post("http://localhost:7860/predict", json={
  "YearsExperience": 0
})
print(r.content)