0
私はこのコードでキャッシュ機能を使用する方法を見つけたがっていますが、残念ながら私は何をインポートするのかわかりませんキャッシュ付き:Bottlenose PythonでURLをキャッシュするAmazonの広告宣伝用API
def reader(cache_url):
return cache.ram(cache_url,lambda: None,time_expire=86400) #Time expire can be any value you want (3600 = 1hour)
def writer(cache_url, response_text):
cache.ram(cache_url,lambda: response_text,time_expire=0) #Time Expire always 0 here
私を助けることができますか?
おかげ