示例#1
0
 def topic(self):
     config = Config(REDIS_STORAGE_SERVER_PORT=6379, )
     storage = RedisStorage(
         Context(config=config, server=get_server('ACME-SEC')))
     storage.put(IMAGE_URL % 5, IMAGE_BYTES)
     storage.put_crypto(IMAGE_URL % 5)
     return storage.get_crypto(IMAGE_URL % 5)
示例#2
0
 def topic(self):
     config = Config(REDIS_STORAGE_SERVER_PORT=6379,
                     STORES_CRYPTO_KEY_FOR_EACH_IMAGE=True)
     storage = RedisStorage(
         Context(config=config, server=get_server('')))
     storage.put(IMAGE_URL % 3, IMAGE_BYTES)
     storage.put_crypto(IMAGE_URL % 3)
 def topic(self):
     config = Config()
     storage = RedisStorage(
         Context(config=config, server=get_server('ACME-SEC')))
     storage.put(IMAGE_URL % 5, IMAGE_BYTES)
     storage.put_crypto(IMAGE_URL % 5)
     return storage.get_crypto(IMAGE_URL % 5)
            def topic(self):
                config = Config(STORES_CRYPTO_KEY_FOR_EACH_IMAGE=True)
                storage = RedisStorage(
                    Context(config=config, server=get_server('ACME-SEC')))

                storage.put(IMAGE_URL % 6, IMAGE_BYTES)
                storage.put_crypto(IMAGE_URL % 6)
                return storage.get_crypto(IMAGE_URL % 6)
示例#5
0
 def topic(self):
     config = Config(
         REDIS_STORAGE_SERVER_PORT=6379,
     )
     storage = RedisStorage(Context(
         config=config, server=get_server('ACME-SEC')
     ))
     storage.put(IMAGE_URL % 5, IMAGE_BYTES)
     storage.put_crypto(IMAGE_URL % 5)
     return storage.get_crypto(IMAGE_URL % 5)
示例#6
0
 def topic(self):
     config = Config(
         REDIS_STORAGE_SERVER_PORT=6379,
         STORES_CRYPTO_KEY_FOR_EACH_IMAGE=True
     )
     storage = RedisStorage(Context(
         config=config, server=get_server('')
     ))
     storage.put(IMAGE_URL % 3, IMAGE_BYTES)
     storage.put_crypto(IMAGE_URL % 3)