gurwindersingh commited on
Commit
8fd7e01
·
1 Parent(s): 084650c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -73,7 +73,11 @@ if img_file_buffer is not None:
73
  ##############
74
  url = "https://kiwi-whispering-plier.glitch.me/update"
75
  data1 = {'name':name }
76
- response = requests.post(url, data=data1)
 
 
 
 
77
 
78
  if response.status_code == 200 :
79
  st.write(" data updated on : " + url)
 
73
  ##############
74
  url = "https://kiwi-whispering-plier.glitch.me/update"
75
  data1 = {'name':name }
76
+ data = {
77
+ 'name': name,
78
+ }
79
+
80
+ response = requests.get(url, params=data)
81
 
82
  if response.status_code == 200 :
83
  st.write(" data updated on : " + url)