{"id":15673893,"url":"https://github.com/vkuznet/dotdict","last_synced_at":"2025-05-06T22:46:36.068Z","repository":{"id":136817135,"uuid":"2161178","full_name":"vkuznet/DotDict","owner":"vkuznet","description":"Python dictionary extension via dot notations","archived":false,"fork":false,"pushed_at":"2012-04-08T12:59:58.000Z","size":112,"stargazers_count":15,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-06T22:46:25.909Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/vkuznet.png","metadata":{"files":{"readme":"README","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":"2011-08-05T15:58:42.000Z","updated_at":"2023-01-02T08:11:04.000Z","dependencies_parsed_at":"2023-06-25T23:36:06.812Z","dependency_job_id":null,"html_url":"https://github.com/vkuznet/DotDict","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkuznet%2FDotDict","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkuznet%2FDotDict/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkuznet%2FDotDict/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkuznet%2FDotDict/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vkuznet","download_url":"https://codeload.github.com/vkuznet/DotDict/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252782458,"owners_count":21803380,"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-03T15:42:47.299Z","updated_at":"2025-05-06T22:46:36.052Z","avatar_url":"https://github.com/vkuznet.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Description:\n------------\n\nDotDict is an extension of python dictionary which uses and operates\nwith dot notations. For example, DotDict.get('a.b.c') or simply \nDotDict['a.b.c']. It extends set/get operations to set/assign new\nvalues, as well as provide get_keys/get_values/delete APIs. It also\nsmart enough to work with complex dict structures. Here is a few\nexamples:\n\n    from ddict import DotDict\n    row = {'a':{'b':1, 'c':[1,2]}}\n    rec = DotDict(row)\n    print rec['a.c']\n    [1,2]\n    rec['x.y.z'] = 1\n    print rec\n    {'a':{'b':1, 'c':[1,2]}, 'x': {'y': {'z': 1}}\n\nFor a complete list of examples, see ddict_t.py unit test module.    \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvkuznet%2Fdotdict","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvkuznet%2Fdotdict","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvkuznet%2Fdotdict/lists"}