Posted on 2008-04-01 20:20
pts 閱讀(770)
評論(0) 編輯 收藏 所屬分類:
Python
pyscripter - Debugging django with PyScripter
Here is how you can debug Django applications with Pyscripter in six simple steps:
1.
In the File explorer locate the root directory of your Django
application. You may want to right click on the directory name and
select File Explorer, Explore here.
定位到創建的Django 應用目錄
2. Open the project files in Pyscripter (e.g., models,py, views.py etc.) and set whatever breakpoints you want.
打開要添加斷點的文件
3. Select Run, Command Line Parameters... and set the command line
to "runserver --noreload". Also check the "Use Command line" checkbox.
選擇 Run,輸入命令:runserver --noreload,勾選中"Use Command line"
4. Make sure the remote engine is selected (Run, Python Engine, Remote).
5. Open the manage.py file and press the debug button (or press F9).
6.
Start a web browser and test your application. Pyscripter should now
stop at whatever breakpoints you have set and you can use the various
debugging facilities (call stack, variables, interpreter prompt etc.)
To
stop debugging, right-click on the interpreter window and select
"Reinitialize Interpreter", then go to the browser and reload the
document.