だから私はボトルを手に入れたところです(コードのみのページを介して[githubだったと思いますか?])とにかく、サーバーを稼働させていますが、ctrl + cを押してもすぐに壊れないことがあります。私が何か間違ったことをしているなら?私のコードは次のとおりです。
これは私のサービングコードです:
from Bottle import route,run,template
@route('/')
@route('/<name>')
def hello(name='noob'):
return template('Templates/maintemplate',name=name)
run(host='WorkPC-PC',port=9999,debug=True)
これは私のテンプレートコードです(これが違いを生むとは思いませんが、確認のために含めました):
<html>
<head>
<body>
%if name:
<h1>{{name}}</h1>
%else:
<h1>hello stranger</h1>
%end
</body>
</head>
</html>