Debug-Schrittausführung in Python (Bottle, Intellij)

Es dauerte einige Zeit, um den Schritt auszuführen. Machen Sie sich also eine Notiz

# bottle install
pip install bottle

index.py


#Geben Sie den Hostnamen und den Port gemäß den Debug-Einstellungen an
import pydevd
pydevd.settrace('localhost', port=8080, stdoutToServer=True, stderrToServer=True)

from bottle import Bottle, run, template

apps = Bottle()

@apps.get('/index')  # or @route('/login')
def login():
    print 'Hello!' #Versuchen Sie, einen Haltepunkt zu setzen
    return template("index")

run(app=apps, host='localhost', port=8080)

views/index.tpl


World!

Recommended Posts

Debug-Schrittausführung in Python (Bottle, Intellij)
Python-Paketverwaltung mit IntelliJ
Externe Befehlsausführung in Python
Messen Sie die Ausführungszeit von Funktionen in Python
Führen Sie das Python-Unittest-Modul in vs2017 aus
Der erste Schritt von Python Matplotlib
Laden Sie das Remote-Python-SDK mit IntelliJ
Ich kann Python-Skripte in Eclipse nicht debuggen
Verzögerter Segmentbaum in Python (Anforderung zum Debuggen)
Parallele Taskausführung mit concurrent.futures in Python
Quadtree in Python --2
Python in der Optimierung
CURL in Python
Metaprogrammierung mit Python
Python 3.3 mit Anaconda
Geokodierung in Python
SendKeys in Python
Metaanalyse in Python
Unittest in Python
Der erste Schritt im Problem der Erfüllung von Einschränkungen in Python
Erhalten Sie Tastenanschläge während der Hintergrundausführung in Python (Windows)
Epoche in Python
Zwietracht in Python
Deutsch in Python
DCI in Python
Quicksort in Python
nCr in Python
N-Gramm in Python
Programmieren mit Python
Plink in Python
Konstante in Python
FizzBuzz in Python
SQLite in Python
Schritt AIC in Python
LINE-Bot [0] in Python
CSV in Python
Reverse Assembler mit Python
Reflexion in Python
Konstante in Python
nCr in Python.
Format in Python
Scons in Python 3
Puyopuyo in Python
Python in Virtualenv
PPAP in Python
Quad-Tree in Python
Reflexion in Python
Chemie mit Python
Hashbar in Python
DirectLiNGAM in Python
LiNGAM in Python
In Python reduzieren
In Python flach drücken
Ruby, Python-Codefragment Ausführung der Auswahl in Emacs
So erstellen Sie einen Bild-Uploader mit Bottle (Python)
Reproduzieren Sie das Ausführungsbeispiel von Kapitel 4 von Hajipata in Python
Reproduzieren Sie das Ausführungsbeispiel von Kapitel 5 von Hajipata in Python
Sortierte Liste in Python
Täglicher AtCoder # 36 mit Python