- Pycharm - Flask
- Pycharm - Pyramid
- Pycharm - Django
- Pycharm - Web Frameworks
- Pycharm - Exporting Data
- Pycharm - Database Tools
- Pycharm - Tips
- Pycharm - JavaScript Support
- Pycharm - HTML & CSS Integration
- Pycharm - Integration of Version Control
- Pycharm - Debugging & Breakpoints
- Pycharm - Interpreters
- Pycharm - Console
- Pycharm - Improving & Writing Code
- Pycharm - Micros
- Pycharm - Macros
- Pycharm - Omni
- Pycharm - Shortcuts
- Pycharm - Keymaps
- Pycharm - Understanding Basics
- Pycharm - Installation
- Pycharm - Introduction
- Pycharm - Home
Pycharm Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Pycharm - Flask
PyCharm supports Flask framework development. You can easily create a new Flask project by creating new project through welcome screen. You can set the project’s location and the virtual environment and choose a template language and where the templates will be located.
You can run a project by using Run -> Run ‘<project-name>’.
You can also add a new data source with this framework. Let us create a file called squema.sql and add SQL code to create some tables. PyCharm editor will recognize the files and asks you to configure a data source and set up to the database dialect.
PyCharm will let you choose the desired dialect that you want to use. You can change the properties of the SQL: Settings -> Language and Frameworks -> SQL Dialects
For flask editor, the easiest way to run the SQL query is to cpck somewhere in the query and cpck on the inspection window and cpck “Run Query into console “.
The user interface of the Flask framework is displayed as below −
Advertisements