我在Python中创建了一个Google App Engine项目,它在我的localhost上运行但是当我将它上传到geo-event-maps.appspot.com时,标记没有显示。 我有一个cron,它可以调用/放置。 我没有日志错误 我的数据存储空了! txt文件正在上传:
file_path = os.path.dirname(__file__)
path = os.path.join(file_path, 'storing', 'txtFiles')
有没有办法检查文件是否已上传?!
我绝对亏损。有人有过这些问题吗?
下面是我的main.py:
'''
Created on Mar 30, 2011
@author: kimmasterson
'''
#!/usr/bin/env python
from google.appengine.ext import webapp
from google.appengine.ext import db
from placemaker import placemaker
import logging
import wsgiref.handlers
import os, glob
from google.appengine.dist import use_library
use_library('django', '1.2')
from google.appengine.ext.webapp import template
class Story(db.Model):
id = db.StringProperty()
loc_name = db.StringProperty()
title = db.StringProperty()
long = db.FloatProperty()
lat = db.FloatProperty()
link = db.StringProperty()
date = db.StringProperty()
class MyStories(webapp.RequestHandler):
def get(self):
temp = db.Query(Story)
temp = temp.count()
story_set = Story.all()
template_values = {
'storyTemp': story_set
}
path = os.path.join(os.path.dirname(__file__), 'index.html')
self.response.out.write(template.render(path, template_values))
class place(webapp.RequestHandler):
def get(self):
#path = '/storing/txtFiles'
file_path = os.path.dirname(__file__)
path = os.path.join(file_path, 'storing', 'txtFiles')
try:
for infile in glob.glob(os.path.join(path, '*.txt')):
#print infile
f = open(infile, 'r')
data = f.read()
newfile = infile.replace('.txt', '')
newfile = newfile.replace('/storing/txtFiles/', '')
#print newfile
storyname = 'http://www.independent.ie/national-news/' + newfile
#print storyname
#print newfile
#logging.info(data)
p = placemaker('HSnG9pPV34EUBcexz.tDYuSrZ8Hnp.LowswI7TxreF8sXrdpVyVIKB4uPGXBYOA9VjjF1Ca42ipd_KhdJsKYjI5cXRo0eJM-')
print p.find_places(data)
for place in p.places:
splitted = place.name.split()
for word in splitted:
temp = db.Query(Story)
temp = temp.filter("link = ", storyname)
results = temp.fetch(limit=1)
if len(results) > 0:
break
elif 'IE' in word:
print temp
print 'success'
print 'name of the file is:' + newfile
story = Story(name=newfile, long=place.centroid.longitude, lat=place.centroid.latitude, link=storyname, loc_name=place.name, title=newfile).put()
#logging.info(type(place.centroid.latitude))
except:
print 'error'
def main():
application = webapp.WSGIApplication([('/', MyStories), ('/place', place)],
debug=True)
wsgiref.handlers.CGIHandler().run(application)
if __name__ == '__main__':
main()
这是我的cron.yaml
cron:
- description: running place
url: /place
schedule: every day 11:05
App.yaml如下:
application: geo-event-maps
version: 2
runtime: python
api_version: 1
handlers:
- url: .*
script: main.py
builtins:
- datastore_admin: on
答案 0 :(得分:2)
您需要确保使用您的应用程序代码上传文件,不能将它们标记为静态文件,否则您的代码将无法访问它们。使用--verbose
标志运行appcfg.py并确保它们已上传。
第二个问题,在您的place
课程中,您将路径定义为path = '/storing/txtFiles'
。那是错的。你的道路可能更像是:
file_path = os.path.dirname(__file__)
path = os.path.join(file_path, 'storing', 'txtFiles')
此外,我建议您不要使用print
,而是使用self.response.out.write(stuff_to_write)
。
您可能还希望了解如何使用key_names。通过在嵌套的for循环中运行批处理db.get而不是db.Query,您将能够使代码更高效。使用Appstats并尽量减少RPC的数量。
答案 1 :(得分:1)
首先确保使用 relative 路径访问文件。
接下来确保您没有在app.yaml
内将文件标记为静态文件,因为静态文件未上传到与您的应用程序相同的位置(它们发送到Google前端服务器可以更直接地为其提供服务的地方)。