{"id":16330079,"url":"https://github.com/rmax/leveldict","last_synced_at":"2025-12-14T12:59:46.449Z","repository":{"id":6707959,"uuid":"7953511","full_name":"rmax/leveldict","owner":"rmax","description":"LevelDB dict-like wrappers.","archived":false,"fork":false,"pushed_at":"2013-02-01T07:37:23.000Z","size":103,"stargazers_count":7,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-31T10:36:09.668Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rmax.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-02-01T07:11:05.000Z","updated_at":"2024-08-11T20:32:04.000Z","dependencies_parsed_at":"2022-08-26T04:01:04.877Z","dependency_job_id":null,"html_url":"https://github.com/rmax/leveldict","commit_stats":null,"previous_names":["darkrho/leveldict"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmax%2Fleveldict","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmax%2Fleveldict/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmax%2Fleveldict/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmax%2Fleveldict/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rmax","download_url":"https://codeload.github.com/rmax/leveldict/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238212396,"owners_count":19434955,"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":[],"created_at":"2024-10-10T23:18:27.078Z","updated_at":"2025-10-25T21:31:15.333Z","avatar_url":"https://github.com/rmax.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"leveldict\n=========\n\nLevelDB dict-like wrappers.\n\nRequirements\n------------\n\n* `LevelDB`_\n* `py-leveldb`_\n\nUsage\n-----\n\nBasic usage::\n\n  \u003e\u003e\u003e from leveldict import LevelDict\n  \u003e\u003e\u003e db = LevelDict('mydb')\n  \u003e\u003e\u003e db['key'] = 'value'\n\nStoring serialized values::\n\n  \u003e\u003e\u003e import json\n  \u003e\u003e\u003e from leveldict import LevelDictSerialized\n  \u003e\u003e\u003e db = LevelDictSerialized('mydb', serializer=json)\n  \u003e\u003e\u003e db['key'] = {'foo': [True, None]}\n\nDBM-like interface::\n\n  \u003e\u003e\u003e import leveldbm\n  \u003e\u003e\u003e db = leveldbm.open('mydb', 'c')\n\nWrite batch support::\n\n  \u003e\u003e\u003e with db.write_batch() as wb:\n  ...   wb['foo'] = 'bar'\n  ...   del wb['baz']\n  ...   wb['bob'].pop()\n\n\n.. note:: This code haven't been used in production. Use at your own risk!\n\n.. _LevelDB: http://code.google.com/p/leveldb/\n.. _py-leveldb: http://code.google.com/p/py-leveldb/\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frmax%2Fleveldict","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frmax%2Fleveldict","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frmax%2Fleveldict/lists"}