python -m pip install --upgrade array-cachefrom array_cache import ArrayCache
# save to cache every x item
CACHE_DELAY=10
cached_array = array_cache.ArrayCache(data_array, "my-identifier", CACHE_DELAY)
for one_word in cached_array.get_data():
# use hereLicensed under the MIT License - LICENSE