예제 #1
0
파일: cdn.py 프로젝트: radekstepan/monGoals
def image(id):
    '''fetch a base64 encoded image from the db'''
    c = CDN()
    file = c.find_one(id)

    return file['image']
예제 #2
0
def image(id):
    '''fetch a base64 encoded image from the db'''
    c = CDN()
    file = c.find_one(id)

    return file['image']