File size: 214 Bytes
d1a66a2
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import requests

data = {
    "access_token": "Working whohoo",
    "brand_name": "Test"
}


response = requests.post("https://omkar008-receipt-radar-test.hf.space/getReceiptData",json=data)

print(response.json())