My flask application currently consists of a single test.py
file with multiple routes and the main()
route defined. Is there some way I could create a test2.py
file that contains routes that were not handled in test.py
?
@app.route('/somepath')
def somehandler():
# Handler code here
I am concerned that there are too many routes in test.py
and would like to make it such that I can run python test.py
, which will also pick up the routes on test.py
as if it were part of the same file. What changes to I have to make in test.py
and/or include in test2.py
to get this to work?