2018-07-23T17:01:26Z
- Which Pycharm Should I Download
- Pycharm Community Flask Tutorial
- Pycharm Community Flask Debug
- Community Vs Professional Pycharm
- Pycharm Install Flask
In this short article and video I want to give you a few tips on setting up a PyCharm project for your Flask application. The idea is to set up a Flask application so that it can be executed, debugged, and tested from inside PyCharm Community Edition, which is fantastic IDE for Python that is completely free to download and use. If you want to see me go through the exercise, watch the video below. Then you can come to the article if you want a quick reference and summary of the steps required.
The idea is to set up a Flask application so that it can be executed, debugged, and tested from inside PyCharm Community Edition, which is fantastic IDE for Python that is completely free to download and use. If you want to see me go through the exercise, watch the video below. There is a free community version but it doesn't have any tooling or workflows for Flask. It only handles simple Python files and projects. If you don't have access to PyCharm professional you can still use any text editor and you can borrow the project file from the exercise files for this video.
Creating a Flask Project in PyCharm
This part is very simple. All you need to do to create your Flask project is to start PyCharm, select Open, and then choose the top-level directory of your application. PyCharm will create a new project and open it. The left sidebar will now show you a tree structure with all the files in your project.
Adding a Run and Debug Configuration
One of the first things you'll probably want to do is run your project. PyCharm works with the concept of 'configurations', which are sets of parameters that define a run or debug task. To create or edit configurations you have to select Run|Edit Configurations... from the menu. If this option appears disabled, you just need to wait a little bit and let PyCharm complete its initial background parsing of the project.
To create a new configuration, click the + sign, and then select Python. For the Name field, enter a description of this configuration, such as 'webapp'. I like to check the Single Instance Only option, because for a web application it isn't very useful to run multiple instances.
Under Script path you need to select the flask tool, which is located in the bin directory of your virtual environment. Here you can use the little ... button to the right to browse and select this script. If you store your virtual environments outside of your project, or if you use a virtual environment wrapper such as pipenv which has its own location for virtualenvs, you will need to find out where the virtualenv is located and browse to that directory and then down into bin to find the flask command. If your virtualenv is in the same directory as your project this is much easier to do. I should note that if you are doing this on Windows, your virtualenv is not going to have a 'bin' subdirectory. On Windows look for a Scripts subdirectory, and inside it look for a flask.exe file to select.
In the Parameters field you are going to enter run. This combined with the previous option configure PyCharm to run the familiar flask run command.
As I'm sure you also remember, the flask command requires a FLASK_APP
environment variable to point to your Flask application. This variable needs to be defined in the Environment variables section. The value of the variable will be the same value you use when you run your application from the command line. If you are using a .flaskenv file in your project and you have the python-dotenv package installed, then you are all set, the environment variable will be imported from there.
The final change you need to make is to set the Working directory to point to the top-level directory of your project instead of to the location of the flask command.
You can now close the configuration window. The dropdown on the top-right of your main PyCharm window should now be set to the configuration you just added. If you now click the green 'play' button your project should start, and if instead you click the green 'bug' button the project will start under the debugger. Running with the debugger is very useful, because you can set breakpoints to stop the program execution and inspect variables or run a part of your application step by step.
Running Unit Tests
Which Pycharm Should I Download
In addition to being able to run and debug your application, it is useful to have PyCharm run your unit tests. This requires a second configuration to be added to the project. So go back to the Run|Edit Configurations... menu option, and then click the + button once again, to create a new configuration. This time select the Python tests configuration type, and then pick the test runner that you would like to use. In the video demonstration above I picked Unittests, which is the runner based on the Python's unittest package.
Set the name of the configuration to tests of something similar. In the Target field make sure Script path is selected, and then choose the directory where your tests are located by clicking on the ... button to the right. In the Pattern field, enter a file pattern that applies to all the modules that contain tests. A few common patterns are test_*.py, *_test.py or *test*.py. To complete the test configuration, set the Working directory field to the top-level directory of your project.
After you close the configurations window, the dropdown in the top right of the PyCharm window will have tests selected. You can use this dropdown to go back to the webapp configuration when you need to. With tests selected, you can click the green run button to run your unit tests. PyCharm detects you are running tests, so it uses a dedicated panel in the bottom portion of the window to show you how the tests are doing. Any tests that fail will be displayed, and if you click on each one you can see the output it produced. You can also opt to run the tests under the debugger by clicking the green bug button, and that gives you the power to set breakpoints and run a specific part of a test step by step.
PyCharm also adds a little run button on the sidebar, next to each unit test function or method, and this is extremely convenient, as it allows you to run or debug a single test just by clicking its button.
Pycharm Community Flask Tutorial
Improved Debug Configuration
If you've got to this point, your project is nicely configured to run under PyCharm, but there is one detail that is missing. When your Flask application crashes, you know that there are two possible outcomes. If debug mode is not enabled, the client receives a 500 status code, and if debug mode is enabled, you are thrown into the browser-based debugger. When you run your application under the PyCharm debugger, it would be nice if crashes would stop the application at the crash point so that you can inspect variables and figure out what went wrong. Unfortunately due to a bug that has existed in Flask for a long time, this does not work if you configure your PyCharm project as I shown you above. More specifically, this is a bug that affects Flask applications that are started with the flask run
command, but works well with the old app.run()
method of running the application.
If you want to take advantage of the PyCharm debugger when your application crashes, you have to switch to app.run()
. First, make sure your application's main script (which is usually the script that you set in the FLASK_APP
environment variable) has this at the bottom:
This creates an alternative way to start the Flask application, without affecting the flask run
command, which you can continue to use when you need to. The app.run()
call that I added enables debug mode, but turns off the debugger and the reloader, so that they don't interfere with PyCharm. The passthrough_errors
option is the key to make crashes reach the PyCharm debugger. Unfortunately this option cannot be set when you start your application via flask run
.
The next change is to modify the run configuration in PyCharm to start the application through the app.run()
call. Select the webapp configuration in the top-right corner of the PyCharm window, and then go back to Run|Edit Configurations.... Change the Script path field to point to your main script, the one that now has the app.run()
call. The Parameters field must be empty, so clear the 'run' that was there from before. The FLASK_APP
environment variable does not need to be set when using app.run()
, so you can remove it from the configuration, although it doesn't hurt anything to leave it there.
If you now start the application, any crashes triggered by exceptions will reach PyCharm, which will stop the application and show you the location of the crash, an interactive stack trace, and the ability to check variable values.
Pycharm Community Flask Debug
Conclusion
I hope this was a useful guide to get started with PyCharm. Note that I have done a similar step-by-step setup for the Visual Studio Code IDE, which will allow you to compare these two IDEs.
Do you have any other useful set up steps when you work with PyCharm? Let me know below in the comments!
Hello, and thank you for visiting my blog! If you enjoyed this article, please consider supporting my work on this blog on Patreon!
Community Vs Professional Pycharm
37 comments
Pycharm Install Flask
#1Mycelias said 2018-08-01T04:47:14Z
#2Miguel Grinberg said 2018-08-01T22:37:07Z
#3WhiskeyDance said 2018-08-09T12:54:02Z
#4WhiskeyDance said 2018-08-09T14:02:30Z
#5Miguel Grinberg said 2018-08-10T07:00:56Z
#6WhiskeyDance said 2018-08-10T13:28:37Z
#7Miguel Grinberg said 2018-08-10T15:18:03Z
#8WhiskeyDance said 2018-08-10T17:29:38Z
#9Miguel Grinberg said 2018-08-10T18:23:44Z
#10WhiskeyDance said 2018-08-10T18:41:47Z
#11Miguel Grinberg said 2018-08-10T19:19:40Z
#12WhiskeyDance said 2018-08-10T19:44:18Z
#13Lumi said 2018-09-09T13:40:21Z
#14Miguel Grinberg said 2018-09-13T21:03:32Z
#15BriFuture said 2018-11-11T10:22:45Z
#16Miguel Grinberg said 2018-11-12T10:44:23Z
#17Norman Dantzig said 2018-11-15T06:25:42Z
#18Miguel Grinberg said 2018-11-15T12:05:00Z
#19Gaby said 2018-12-05T22:07:43Z
#20Monte Milanuk said 2018-12-21T23:23:49Z
#21Huy Ngo said 2019-07-13T10:40:45Z
#22Yaser Sakkaf said 2019-08-01T10:35:30Z
#23Miguel Grinberg said 2019-08-01T12:59:53Z
#24Tom Thompson said 2019-08-28T12:43:33Z
#25Florent said 2019-09-11T23:54:23Z