├── .codecov.yml ├── .coveragerc ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── requirements.txt └── source │ ├── _static │ └── css │ │ └── custom.css │ ├── conf.py │ ├── index.rst │ ├── klepto.rst │ └── pathos.png ├── klepto ├── __init__.py ├── _abc.py ├── _archives.py ├── _cache.py ├── _inspect.py ├── _pickle.py ├── archives.py ├── crypto.py ├── keymaps.py ├── rounding.py ├── safe.py ├── tests │ ├── __init__.py │ ├── __main__.py │ ├── cleanup_basic.py │ ├── test_alchemy.py │ ├── test_basic.py │ ├── test_bigdata.py │ ├── test_cache.py │ ├── test_cache_info.py │ ├── test_cachekeys.py │ ├── test_chaining.py │ ├── test_crypto.py │ ├── test_frame.py │ ├── test_hdf.py │ ├── test_ignore.py │ ├── test_keymaps.py │ ├── test_pickles.py │ ├── test_readwrite.py │ ├── test_rounding.py │ ├── test_validate.py │ └── test_workflow.py └── tools.py ├── pyproject.toml ├── setup.cfg ├── setup.py ├── tox.ini └── version.py /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/docs/source/_static/css/custom.css -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/klepto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/docs/source/klepto.rst -------------------------------------------------------------------------------- /docs/source/pathos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/docs/source/pathos.png -------------------------------------------------------------------------------- /klepto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/__init__.py -------------------------------------------------------------------------------- /klepto/_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/_abc.py -------------------------------------------------------------------------------- /klepto/_archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/_archives.py -------------------------------------------------------------------------------- /klepto/_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/_cache.py -------------------------------------------------------------------------------- /klepto/_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/_inspect.py -------------------------------------------------------------------------------- /klepto/_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/_pickle.py -------------------------------------------------------------------------------- /klepto/archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/archives.py -------------------------------------------------------------------------------- /klepto/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/crypto.py -------------------------------------------------------------------------------- /klepto/keymaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/keymaps.py -------------------------------------------------------------------------------- /klepto/rounding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/rounding.py -------------------------------------------------------------------------------- /klepto/safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/safe.py -------------------------------------------------------------------------------- /klepto/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/__init__.py -------------------------------------------------------------------------------- /klepto/tests/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/__main__.py -------------------------------------------------------------------------------- /klepto/tests/cleanup_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/cleanup_basic.py -------------------------------------------------------------------------------- /klepto/tests/test_alchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_alchemy.py -------------------------------------------------------------------------------- /klepto/tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_basic.py -------------------------------------------------------------------------------- /klepto/tests/test_bigdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_bigdata.py -------------------------------------------------------------------------------- /klepto/tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_cache.py -------------------------------------------------------------------------------- /klepto/tests/test_cache_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_cache_info.py -------------------------------------------------------------------------------- /klepto/tests/test_cachekeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_cachekeys.py -------------------------------------------------------------------------------- /klepto/tests/test_chaining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_chaining.py -------------------------------------------------------------------------------- /klepto/tests/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_crypto.py -------------------------------------------------------------------------------- /klepto/tests/test_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_frame.py -------------------------------------------------------------------------------- /klepto/tests/test_hdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_hdf.py -------------------------------------------------------------------------------- /klepto/tests/test_ignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_ignore.py -------------------------------------------------------------------------------- /klepto/tests/test_keymaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_keymaps.py -------------------------------------------------------------------------------- /klepto/tests/test_pickles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_pickles.py -------------------------------------------------------------------------------- /klepto/tests/test_readwrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_readwrite.py -------------------------------------------------------------------------------- /klepto/tests/test_rounding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_rounding.py -------------------------------------------------------------------------------- /klepto/tests/test_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_validate.py -------------------------------------------------------------------------------- /klepto/tests/test_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tests/test_workflow.py -------------------------------------------------------------------------------- /klepto/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/klepto/tools.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/tox.ini -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uqfoundation/klepto/HEAD/version.py --------------------------------------------------------------------------------