Split Python Flask app into multiple files
I'm having trouble understanding how to split a flask app into multiple files. I'm creating a web service and I want to split the api's into different files (AccountAPI.py, UploadAPI.py, ...), just so I don't have one huge python file. I've read that you can do this with Blueprints, but I'm not entirely sure that route is the right one for me. Ultimately I want to run one Main python file and include other files so that when it runs, they are considered one big file. For example if I have Main.py and AccountAPI.py I want to be able to do this: Main.py: from flask import Flask import AccountAPI