dvaz commited on
Commit
23f9dd1
1 Parent(s): 26396c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -1 +1,10 @@
1
- print('ggjhgjhgjgjh')
 
 
 
 
 
 
 
 
 
 
1
+ import requests
2
+
3
+ # import json
4
+
5
+
6
+ url = requests.get('https://www.cheapshark.com/api/1.0/stores')
7
+ x = url.json()
8
+
9
+ for i in x:
10
+ print(i['storeName'] + ' ' + i['storeID'])