Metadata-Version: 1.0
Name: pyfatcache
Version: 1.0.0
Summary: a simple python client for twitter fatcache
Home-page: https://github.com/panuph/pyfatcache
Author: Panu P
Author-email: panuph@gmail.com
License: Freeware
Download-URL: https://github.com/panuph/pyfatcache
Description: Example usage::
        
                conn = get_conn()
                conn.delete("a")
                print "expect (None, None) / get %s" % (str(conn.get("a")),)
                conn.set("a", "a", flags=1)
                print "expect ('a', 1) / get %s" % (str(conn.get("a")),)
                conn.set("a", dict(name="pyfatcache"))
                print "expect ({'name': 'pyfatcache'}, 0) / get %s" % (str(conn.get("a")),)
                conn.set("a", None)
                print "expect (None, 0) / get %s" % (str(conn.get("a")),)
                conn.close()
            
Platform: python
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
