Update app.py
Browse files
app.py
CHANGED
@@ -213,7 +213,7 @@ with st.container():
|
|
213 |
json_data = json.dumps(data)
|
214 |
headers = {'Content-Type': 'application/json'}
|
215 |
response = requests.get(RESPONSE_TXT_API,data=json_data, headers=headers)
|
216 |
-
print(response)
|
217 |
response_data = json.loads(response.text)
|
218 |
if response_data.get('status')=='success':
|
219 |
json_str =response_data.get("json")
|
|
|
213 |
json_data = json.dumps(data)
|
214 |
headers = {'Content-Type': 'application/json'}
|
215 |
response = requests.get(RESPONSE_TXT_API,data=json_data, headers=headers)
|
216 |
+
print(response.text)
|
217 |
response_data = json.loads(response.text)
|
218 |
if response_data.get('status')=='success':
|
219 |
json_str =response_data.get("json")
|