Update app.py
Browse files
app.py
CHANGED
|
@@ -2,11 +2,10 @@ import os
|
|
| 2 |
import urllib.request
|
| 3 |
|
| 4 |
if not os.path.exists("biden.jpg"):
|
| 5 |
-
urllib.request.urlretrieve("https://github.com/ageitgey/face_recognition/blob/master/examples/biden.jpg?raw=true")
|
| 6 |
-
urllib.request.urlretrieve("https://github.com/ageitgey/face_recognition/blob/master/examples/obama.jpg?raw=true")
|
| 7 |
-
urllib.request.urlretrieve("https://github.com/ageitgey/face_recognition/blob/master/examples/obama2.jpg?raw=true")
|
| 8 |
|
| 9 |
-
print(os.listdir())
|
| 10 |
|
| 11 |
import face_recognition
|
| 12 |
|
|
|
|
| 2 |
import urllib.request
|
| 3 |
|
| 4 |
if not os.path.exists("biden.jpg"):
|
| 5 |
+
urllib.request.urlretrieve("https://github.com/ageitgey/face_recognition/blob/master/examples/biden.jpg?raw=true", "biden.jpg")
|
| 6 |
+
urllib.request.urlretrieve("https://github.com/ageitgey/face_recognition/blob/master/examples/obama.jpg?raw=true", "obama.jpg")
|
| 7 |
+
urllib.request.urlretrieve("https://github.com/ageitgey/face_recognition/blob/master/examples/obama2.jpg?raw=true", "obama2.jpg")
|
| 8 |
|
|
|
|
| 9 |
|
| 10 |
import face_recognition
|
| 11 |
|