本文整理汇总了Python中Data.dataAccess.DataAccess.getBinaryOverhead方法的典型用法代码示例。如果您正苦于以下问题:Python DataAccess.getBinaryOverhead方法的具体用法?Python DataAccess.getBinaryOverhead怎么用?Python DataAccess.getBinaryOverhead使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Data.dataAccess.DataAccess
的用法示例。
在下文中一共展示了DataAccess.getBinaryOverhead方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ImagesOverhead
# 需要导入模块: from Data.dataAccess import DataAccess [as 别名]
# 或者: from Data.dataAccess.DataAccess import getBinaryOverhead [as 别名]
class ImagesOverhead(object):
exposed = True
def __init__(self):
self._dao = DataAccess()
self._basePath = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'imagesOverhead')
def GET(self, *args, **kwargs):
if len(args) < 1:
raise cherrypy.HTTPError(403, 'Directory Listing Denied')
img = self._dao.getBinaryOverhead(args[0])
if img['data'] == None:
path = os.path.join(self._basePath, args[0])
if os.path.exists(path):
data = io.FileIO(path)
else:
raise cherrypy.HTTPError(404)
else:
data = io.BytesIO(img['data'])
cherrypy.response.headers['Content-Type'] = mimetypes.guess_type(img['meta']['name'] + '.' + img['meta']['type'])[0]
return file_generator(data)