{ "info": { "author": "reorx", "author_email": "UNKNOWN", "bugtrack_url": null, "classifiers": [], "description": "LiteKV - Redis like wrapper for sqlite3\n=======================================\n\nLiteKV is a wrapper for sqlite3, it turns sqlite3 into a kv data store,\nand has similar APIs with redis-py.\n\nSimply execute ``python -m litekv`` (if you have installed it) or ``python litekv.py`` to run doctest.\n\n\nUsage\n-----\n\n.. code:: python\n\n >>> db = LiteKV(reset=True)\n >>> db.set('a', '1')\n >>> db.get('a')\n '1'\n >>> db.set('a', '2')\n >>> db.get('a')\n '2'\n >>> db.set('b', '3')\n >>> list(db.keys())\n ['a', 'b']\n >>> db.delete('a')\n >>> db.get('a') is None\n True\n\n\nBenchmark\n---------\n\n::\n\n $ python -m litekv --benchmark\n With rowid\n Do 10000 inserts & reads\n 1215.88587897 Insertion per second\n 18041.2587533 Reads per second\n\n Without rowid\n Do 10000 inserts & reads\n 1182.05950852 Insertion per second\n 17828.1725067 Reads per second", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/reorx/litekv", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "litekv", "package_url": "https://pypi.org/project/litekv/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/litekv/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/reorx/litekv" }, "release_url": "https://pypi.org/project/litekv/0.6/", "requires_dist": null, "requires_python": null, "summary": "Simple kv store for Python", "version": "0.6" }, "last_serial": 1086518, "releases": { "0.5": [], "0.6": [ { "comment_text": "", "digests": { "md5": "2400bc9f84a07d48ab6072b604e63a24", "sha256": "410171bbe020d3f200e086471e7caee3c3087ac4b121d191bf625cf8a6b32619" }, "downloads": -1, "filename": "litekv-0.6.tar.gz", "has_sig": false, "md5_digest": "2400bc9f84a07d48ab6072b604e63a24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2369, "upload_time": "2014-05-09T09:10:06", "url": "https://files.pythonhosted.org/packages/bd/89/06e06787bdf9e3ca26aea2474acfc93445d7fb456c3fcd3d408babdd021d/litekv-0.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2400bc9f84a07d48ab6072b604e63a24", "sha256": "410171bbe020d3f200e086471e7caee3c3087ac4b121d191bf625cf8a6b32619" }, "downloads": -1, "filename": "litekv-0.6.tar.gz", "has_sig": false, "md5_digest": "2400bc9f84a07d48ab6072b604e63a24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2369, "upload_time": "2014-05-09T09:10:06", "url": "https://files.pythonhosted.org/packages/bd/89/06e06787bdf9e3ca26aea2474acfc93445d7fb456c3fcd3d408babdd021d/litekv-0.6.tar.gz" } ] }