ak_cache

Python Caching library customized for AK's projects

MIT License

Downloads
489
Stars
0

1. About the Project

1.1. Features

  • Read and write data to a Cached Pickle File

2. Getting Started

2.1. Installation

pip install ak_cache

Alternatively

git install ak_cache@git+https://github.com/rpakishore/ak_cache.git

3. Usage

Use this space to tell a little more about your project and how it can be used. Show additional screenshots, code samples, demos or link to other resources.

from ak_cache import Cache
cache_file = Cache(r'Path\to\Cache\file.pkl')
cache_file.write('This is a text')
cache_file.read()

Encrypt your pickle file as below

cache_file = Cache(r'Path\to\Cache\encr_file.pkl', password="Strong_Password")

cache_file.write('This is an encrypted text')
cache_file.read()

4. Roadmap

  • Add encryption option to the cache file

5. License

See LICENSE for more information.

6. Contact

Arun Kishore - @rpakishore

Project Link: https://github.com/rpakishore/ak_cache