|
1234567891011121314151617181920 |
- """
- Useful but messy crap
- """
-
-
- def cache_to_disk(file_name):
- """ A decorator to cache the output of a function to disk """
- def wrap(func):
- def modified(*args, **kwargs):
- try:
- output = cPickle.load(open(file_name, "r"))
- except (IOError, ValueError):
- output = func(*args, **kwargs)
- with open(file_name, "w") as f:
- cPickle.dump(output, f)
- return output
- return modified
- return wrap
-
-
|