ghosthamlet commited on
Commit
54b504b
1 Parent(s): 2d33d64

Rename raft.py to app.py

Browse files
Files changed (2) hide show
  1. app.py +5 -0
  2. raft.py +0 -3
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import requests
2
+
3
+ res = requests.get('https://www.dropbox.com/s/4j4z58wuv8o0mfz/models.zip')
4
+ with open('tmp.zip', 'wb') as f:
5
+ f.write(res.content)
raft.py DELETED
@@ -1,3 +0,0 @@
1
- import requests
2
-
3
- m = requests.get('https://www.dropbox.com/s/4j4z58wuv8o0mfz/models.zip')