Pamudu13 commited on
Commit
c8e9bf7
·
verified ·
1 Parent(s): abac4f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -252,9 +252,9 @@ def api_scrape_sites():
252
  'success': False,
253
  'error': str(e)
254
  }), 500
255
-
256
- if __name__ == "__main__":
257
- app.run(debug=True, port=5000)
258
 
259
 
260
 
 
252
  'success': False,
253
  'error': str(e)
254
  }), 500
255
+
256
+ if __name__ == '__main__':
257
+ app.run(host='0.0.0.0', port=5000)
258
 
259
 
260