Skip to main content

No project description provided

Project description

Travis

Python Simple Cache - scache

Installation

$ [sudo] pip install scache

How it works

scache uses .json files in the data subdirectory by default. If they exist, they are overwritten. If they do not, they are created.

./data/<key>.json by default

Get Started

'''Optional parameters:
path: (string) Path where to store the .json cache data.
    defaults to './data/'
debug: (boolean) Prints debug information such as whether or not keys were found.
    defaults to False
'''
from scache import SCache
scache = SCache()
scache.set('key', 'value')

Functions

function __doc__
scache.get(key) Gets cache value.
scache.get(key, value) Sets cache value.
scache.get(key, default) Get cache value. Return default if not found
scache.rm(key) Remove cache by key
scache.exists(key) returns True if key exists, else returns False
scache.empty() Clears the entire cache.

Examples

>>> import scache
>>> scache.set("key", {'test': 1})
>>> scache.get("key")
"{'test': 1}"
>>> scache.exists("key")
True
>>> scache.rm("key")
>>> scache.empty() # clears entire cache

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scache-1.1.tar.gz (2.4 kB view hashes)

Uploaded Source

Built Distribution

scache-1.1-py3-none-any.whl (2.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page