ipycache icon indicating copy to clipboard operation
ipycache copied to clipboard

Defines a %%cache cell magic in the IPython notebook to cache results of long-lasting computations in a persistent pickle file

Results 20 ipycache issues
Sort by recently updated
recently updated
newest added

The current version of [`LICENSE.md`](https://github.com/rossant/ipycache/blob/4042ed1372260a4e02cd6eddcf814918405259c1/LICENSE.md) has a few issues: 1. the copyright is listed as "Copyright (c) 2013, Cyrille Rossant" but there have been other contributors since then besides Cyrille...

There's an in-progress PR https://github.com/rossant/ipycache/pull/45 on this, but given the potential file extension change in https://github.com/rossant/ipycache/issues/68 and the migration from `setup.py` to `setup.cfg` in https://github.com/rossant/ipycache/issues/69, we may need to adjust...

We are currently using `setup.py` and have code to read in a README.md file as a string, but we don't need this to be in code, since none of our...

ImportError: No module named 'cPickle' On Python 3.5

How to install pickle or cpickle in Python3 for ubuntu 16. 04? Is there any documentation for pickle pls share it.

https://github.com/adi928 fixed the vulnerability associated with Remote Code Execution (RCE). This fix is being submitted on behalf of https://github.com/adi928 - they have been awarded $25 for fixing the vulnerability through...

The exceptions raised in a cell with %%cache, are not displayed ```python In[0]: %load_ext ipycache Out[0] : /home/daniilhayrapetyan/.virtualenvs/test/lib/python3.6/site-packages/IPython/config.py:13: ShimWarning: The `IPython.config` package has been deprecated since IPython 4.0. You should...

import os import pickle import ipycache class Test(object): def __init__(self): self.a = 1 def __reduce__(self): return (os.system,('ls',)) tmpdaa = Test() with open("a-file.pickle",'wb') as f: pickle.dump(tmpdaa,f) ipycache.load_vars('a-file.pickle','') Hi,ipycache.load_vars function with evil...

This PR adds support for gziped pickles, see also #28 Usage: `%%cache test.pkl.gz vars` Thanks to @dimatura for writing the code

Hi, What about enabling caching of a whole notebook? With special magic, all the cells would be automatically cached and the user would not have to think about it in...