{"id":13936757,"url":"https://github.com/deslum/cssdbpy","last_synced_at":"2025-05-04T02:32:04.659Z","repository":{"id":77344392,"uuid":"58163117","full_name":"deslum/cssdbpy","owner":"deslum","description":"Fastest SSDB client written on Cython. Production ready","archived":false,"fork":false,"pushed_at":"2017-08-20T18:41:15.000Z","size":895,"stargazers_count":78,"open_issues_count":7,"forks_count":8,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-08-08T23:24:26.805Z","etag":null,"topics":["key-value","leveldb","python-client","ssdb","ssdb-client"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deslum.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-05-05T21:58:33.000Z","updated_at":"2023-06-29T05:39:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"c24de11f-3c34-4684-b1f3-45ca14c67a36","html_url":"https://github.com/deslum/cssdbpy","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deslum%2Fcssdbpy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deslum%2Fcssdbpy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deslum%2Fcssdbpy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deslum%2Fcssdbpy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deslum","download_url":"https://codeload.github.com/deslum/cssdbpy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224379908,"owners_count":17301525,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["key-value","leveldb","python-client","ssdb","ssdb-client"],"created_at":"2024-08-07T23:02:58.179Z","updated_at":"2024-11-13T03:12:36.847Z","avatar_url":"https://github.com/deslum.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"cssdbpy\n------\n\n.. image:: https://img.shields.io/pypi/v/cssdbpy.svg?maxAge=2592000?style=flat\n        :target: https://pypi.python.org/pypi/cssdbpy/\n\n.. image:: https://img.shields.io/badge/license-BSD-blue.svg\n        :target: https://raw.githubusercontent.com/deslum/cssdbpy/master/LICENSE\n        \n.. image:: https://img.shields.io/badge/python-2.x-yellow.svg\n        :target: https://pypi.python.org/pypi/cssdbpy/\n        \n.. image:: https://img.shields.io/badge/python-3.x-green.svg\n        :target: https://pypi.python.org/pypi/cssdbpy/\n\n| Cssdbpy is SSDB client written on Cython. Faster standard SSDB client. \n| SSDB a high performance NoSQL database supporting many data structures, an alternative to Redis. http://ssdb.io/\n\n\nInstall\n-------\n\n.. code-block:: bash\n\n   pip install cssdbpy\n\nor\n\n.. code-block:: bash\n\n   pip install https://github.com/deslum/cssdbpy/archive/master.zip\n\nExample\n-------\n.. code-block:: python\n\n   from cssdbpy import Connection\n   from time import time\n   import md5\n\n   if __name__ == '__main__':\n      conn = Connection('127.0.0.1', 8888)\n      for i in xrange(0, 1000):\n         md5word = md5.new('word{}'.format(i)).hexdigest()\n         create = conn.execute('hset','words', md5word, int(time()))\n         value = conn.execute('hget','words', md5word)\n         exists = conn.execute('hexists','words', md5word)\n         delete = conn.execute('hdel','words', md5word)\n         print md5word, value, create, exists, delete\n      print conn.execute('hscan', 'words', '', '', 100)\n      conn.execute('hclear','words')\n\n\n\nDocumentation\n-------------\nhttp://cssdbpy.readthedocs.io/en/master/\n\nBenchmark\n-------------\n\nMacBook Pro 2012 2,5 GHz Intel Core i5 4 ГБ 1600 МГц DDR3\n80000 key/value fields\n\n.. image:: benchmark/bench.png\n   :height: 100px\n   :width: 200px\n   :scale: 50%\n   :alt: alternate text\n   :align: center\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeslum%2Fcssdbpy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeslum%2Fcssdbpy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeslum%2Fcssdbpy/lists"}