{ "info": { "author": "daiooo", "author_email": "d@d.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "ssdb3\n======\n\n.. image:: https://travis-ci.org/daiooo/ssdb3.png\n :target: https://travis-ci.org/daiooo/ssdb3\n\n.. image:: https://img.shields.io/pypi/v/ssdb3.svg\n :target: https://pypi.python.org/pypi/ssdb3\n :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/pyversions/ssdb3.svg\n :target: https://pypi.python.org/pypi/ssdb3\n :alt: Supported Python versions\n\n.. image:: https://img.shields.io/pypi/l/ssdb3.svg\n :target: https://pypi.python.org/pypi/ssdb3\n :alt: License\n\nssdb3 is an SSDB_ Client Library for Python. SSDB_ is a high\nperformace key-value(key-string, key-zset, key-hashmap) NoSQL database,\nusing Google LevelDB as storage engine.\n\n* ssdb3 is simple, has no depencencies other than the Python Standard Library.\n* ssdb3 is pure Python, and is compatible with gevent_.\n* ssdb3 is thread-safe.\n\n.. _SSDB: https://github.com/ideawu/ssdb\n.. _gevent: http://www.gevent.org/\n\nInstallation\n-------------\n\n\n.. code-block:: bash\n\n pip install --upgrade ssdb3\n\n\nUsage\n------------\n\nHere is a short example:\n\n.. code-block:: python\n\n >>> import ssdb3\n >>> c = ssdb3.Client()\n >>> c.set('key', 'value')\n 1\n >>> c.get('key')\n 'value'\n >>> c.hset('hash', 'item', 'value')\n 1\n >>> c.hget('hash', 'item')\n 'value'\n >>> c.hget('hash', 'not exist') is None\n True\n >>> c.incr('counter')\n 1\n >>> c.incr('counter')\n 2\n >>> c.incr('counter')\n 3\n >>> c.keys('a', 'z', 1)\n ['counter']\n >>> c.keys('a', 'z', 10)\n ['counter', 'key']\n\nFor more information, see `the tutorial `_, which will explain\nmost everything.\n\nFor the full list of SSDB commands, see\n`this page `_.\n\nLicense\n----------\n\nCopyright (C) 2013-2017 Yue Du, Licensed under\n`the 2-clause BSD license `_.\n\n\npython setup.py sdist build\n\nsudo pip install twine\ntwine upload dist/*", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/daiooo/ssdb3", "keywords": "ssdb3", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "ssdb3", "package_url": "https://pypi.org/project/ssdb3/", "platform": "", "project_url": "https://pypi.org/project/ssdb3/", "project_urls": { "Homepage": "https://github.com/daiooo/ssdb3" }, "release_url": "https://pypi.org/project/ssdb3/0.0.1/", "requires_dist": null, "requires_python": "", "summary": "An SSDB Client Library for Python3.", "version": "0.0.1" }, "last_serial": 4717651, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "b5b684e138bd489757bef9fddd9c7c30", "sha256": "86fd9454a2505c2970c966c4657c4e5edd4d0ea995c610c43b99cd04bba61b63" }, "downloads": -1, "filename": "ssdb3-0.0.1.tar.gz", "has_sig": false, "md5_digest": "b5b684e138bd489757bef9fddd9c7c30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4935, "upload_time": "2019-01-20T08:14:08", "url": "https://files.pythonhosted.org/packages/0a/42/c9f68ac0d694b0b53a520c073219eda7cbde08d1b2a6722296d11d28f29a/ssdb3-0.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b5b684e138bd489757bef9fddd9c7c30", "sha256": "86fd9454a2505c2970c966c4657c4e5edd4d0ea995c610c43b99cd04bba61b63" }, "downloads": -1, "filename": "ssdb3-0.0.1.tar.gz", "has_sig": false, "md5_digest": "b5b684e138bd489757bef9fddd9c7c30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4935, "upload_time": "2019-01-20T08:14:08", "url": "https://files.pythonhosted.org/packages/0a/42/c9f68ac0d694b0b53a520c073219eda7cbde08d1b2a6722296d11d28f29a/ssdb3-0.0.1.tar.gz" } ] }