Update app.py
Browse files
app.py
CHANGED
|
@@ -61,6 +61,5 @@ def download_video():
|
|
| 61 |
if file_path and os.path.exists(file_path):
|
| 62 |
os.remove(file_path)
|
| 63 |
|
| 64 |
-
|
| 65 |
if __name__ == '__main__':
|
| 66 |
-
app.run(
|
|
|
|
| 61 |
if file_path and os.path.exists(file_path):
|
| 62 |
os.remove(file_path)
|
| 63 |
|
|
|
|
| 64 |
if __name__ == '__main__':
|
| 65 |
+
app.run(host='0.0.0.0', port=7860, debug=True)
|