2

我已按照教程使用 Python 对 Github API 进行身份验证。

虽然,对我来说它不起作用,但当我转到 localhost:5000 时,我收到“此网页不可用”消息。它只是说它从 localhost:5000 开始并且在我执行后没有返回任何错误python github.py。我的目录/文件树看起来像:

-templates
 -login.html
 -about.html
-github.py
-github.db

执行后的消息:python github.py

 * Running on http://127.0.0.1:5000/
 * Restarting with reloader

我做错了什么,有什么办法可以使这项工作正常进行吗?

或者,有没有其他方法可以使用 Python 对 Github API 进行身份验证?找不到,但是有吗?

4

1 回答 1

0

文件夹名称区分大小写。您已命名文件夹Templates,但 Flask 正在寻找一个名为templates.

于 2014-10-05T15:44:04.910 回答