我正在尝试在针对 mongodb 的 python 中运行一个简单的 hello world 示例。我已经设置了 mongo、bottle 和 pymong,并且里面有以下脚本C:\Python27\Scripts
:
import bottle
import pymongo
@bottle.route('/')
def index()
from pymongo import Connection
connection = Connection('localhost', 27017)
db = connection.test
names = db.names
item = names.find_one()
return '<b>Hello %s!</b>' % item['name']
bottle.run(host='localhost', port=8082)
-!-- hello.py All L8 (Python)
我想在本地运行它,然后我去了,http://localhost:8082
但找不到找不到。如何运行该代码以在我的计算机上本地测试它,以便我可以通过浏览器测试代码。我正在运行 Windows 7 并安装了 WAMP。