コード例 #1
0
ファイル: bitstore_ut.py プロジェクト: gopakumarce/photostore
class BitStoreTest(object):
    def __init__(self):
        self.photostore = BitStore(True)
        self.photostore.create()

    def test_bits(self, srcfile, dstfile):
        (key, url) = self.photostore.put(srcfile)
        print 'File stored, key is %s, url %s\n' % (key, url)
        if key:
            self.photostore.get(key, dstfile)
コード例 #2
0
ファイル: bitstore_ut.py プロジェクト: gopakumarce/photostore
 def __init__(self):
     self.photostore = BitStore(True)
     self.photostore.create()