我需要在 web2py 中为我的搜索引擎脚本打开一个数据库(.txt 格式)。
我无法访问在线数据库,因为我使用的是免费版的 pythonanywhere。
import urllib
infile=urllib.urlopen('http://database.net')
for line in infile:
现在我将数据库上传到“私人”文件夹,我想知道如何访问它。这看起来像一个简单的问题,但我似乎无法解决它。
我需要这样的东西:
infile = open('searchapp/private/database.txt')
for line in infile:
什么是好的解决方案?