当前位置: 首页>>代码示例>>Python>>正文


Python Image.gql方法代码示例

本文整理汇总了Python中models.Image.gql方法的典型用法代码示例。如果您正苦于以下问题:Python Image.gql方法的具体用法?Python Image.gql怎么用?Python Image.gql使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在models.Image的用法示例。


在下文中一共展示了Image.gql方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: images_exists

# 需要导入模块: from models import Image [as 别名]
# 或者: from models.Image import gql [as 别名]
 def images_exists(self, hash):
     images = Image.gql("WHERE sha1_hash = :h", h = hash)
     
     for image in images:
         if image.sha1_hash == hash:
             return True
     
     return False
开发者ID:zigomir,项目名称:showproblem,代码行数:10,代码来源:main.py

示例2: post

# 需要导入模块: from models import Image [as 别名]
# 或者: from models.Image import gql [as 别名]
 def post(self,subdomain=None):
     product_id=self.request.get("product_id")
     upload_files = self.get_uploads('file')  # 'file' is file upload field in the form
     blob_info = upload_files[0]  
     for i in range(0,5):
         count = Image.gql("WHERE __key__=KEY('Image','%s-%s') LIMIT 1" % (product_id,i)).count()
         if count == 0:
             image = Image(blob_key=str(blob_info.key()),key_name='%s-%s' %(product_id, i),user=subdomain)
             image.put()
             self.redirect('/serve/%s-%s' % (product_id,i))
             break;
     self.response.out.write('Maximum number of images for this product id, please delete one before uploading.'),
开发者ID:itaogit,项目名称:shopapp,代码行数:14,代码来源:handlers.py

示例3: get

# 需要导入模块: from models import Image [as 别名]
# 或者: from models.Image import gql [as 别名]
 def get(self, hash):
     res = self.request.get('res')
     r = res.split('x')
     
     if len(hash) <> 40:
         self.wrong_url()
         return
     
     # The default is the empty string. 
     # Check for empty resolution string
     if res == '' or '' in r or len(r) < 2:
         self.wrong_url()
         return
     
     # check if dimensions are at least 100x100 
     if len(r[0]) < 3 or len(r[1]) < 3:
         self.wrong_url()
         return
     
     # check if dimensions are numbers at all
     try:
         int(r[0])
         int(r[1])
     except ValueError:
         self.wrong_url()
         return
     
     images = Image.gql("WHERE sha1_hash = :h ORDER BY filenumber", 
                        h = hash) # hash is only first 40 chars
     
     if images.count() == 0:
         self.wrong_url()
         return
     
     template_values = { 'images': images,
                         'hash' : hash,
                         'w' : r[0],
                         'h' : r[1]
                        }
     
     path = os.path.join(os.path.dirname(__file__), 'templates/problem.html')
     self.response.out.write(template.render(path, template_values))
开发者ID:zigomir,项目名称:showproblem,代码行数:44,代码来源:main.py


注:本文中的models.Image.gql方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。