Quick Tour¶
This tutorial has quite a number of sections and tasks. As orientation, in this step, the instructor demonstrates a sample of the topics being covered.
Note
Do not perform this step. Rather, watch as the instructor presents it.
Steps¶
- Close all tabs and tool windows then open
epc.py
. - Refactor Rename
hello_world
tohome_page
and re-run/reload. - Import into local Git and add
epc.py
. - Refactor Rename
epc.py
toapp.py
. - Introduce spacing errors, then fix with
Ctrl-Alt-L
. - Make an error and show the run window clickable traceback.
- Looked at the Python Console and the Terminal.
- Create a
models.py
Python File using camel case inFile -> New
. - Use Live Templates to create a main block.
- Use Quick Fix to create a
populate
function that prints todos. - Right-click to run
models.py
. - Set a breakpoint and run
models.py
in the debugger.
- Previous topic: Setup
- Next topic: Project and Editor UI