I'm not able to access my python server outside of local system but static ip is configured and it works fine with virtual servers like python3 -m http.server
but when I create flask app it doesn't work.
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return "Accessible"
if __name__ == '__main__':
app.run(port=5000)
Here is the code