{"id":18410552,"url":"https://github.com/vesche/nothoney","last_synced_at":"2026-05-01T04:41:49.772Z","repository":{"id":57446857,"uuid":"376585867","full_name":"vesche/nothoney","owner":"vesche","description":"recursively iterate through a nested (n-deep) dictionary or JSON object/file","archived":false,"fork":false,"pushed_at":"2022-10-20T04:07:08.000Z","size":93,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-17T06:38:44.078Z","etag":null,"topics":["dictionary","json","nested","recursion"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vesche.png","metadata":{"files":{"readme":"README.md","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":"2021-06-13T16:07:36.000Z","updated_at":"2022-01-26T17:07:57.000Z","dependencies_parsed_at":"2022-09-05T09:40:57.274Z","dependency_job_id":null,"html_url":"https://github.com/vesche/nothoney","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vesche%2Fnothoney","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vesche%2Fnothoney/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vesche%2Fnothoney/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vesche%2Fnothoney/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vesche","download_url":"https://codeload.github.com/vesche/nothoney/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248643045,"owners_count":21138353,"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":["dictionary","json","nested","recursion"],"created_at":"2024-11-06T03:32:44.970Z","updated_at":"2026-05-01T04:41:49.714Z","avatar_url":"https://github.com/vesche.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## nothoney\n\nThis is a small Python package that is able to recursively iterate through a nested (n-deep) dictionary or JSON object/file to retrieve data.\n\n![nothoney](https://i.imgur.com/klWK9nP.jpg)\n\n### So how do I fly this thing?\n\nInstall:\n\n`pip install nothoney --user`\n\nor\n\n`python setup.py install --user`\n\nBasic usage:\n```python\n\u003e\u003e\u003e import nothoney\n\u003e\u003e\u003e test\n{'x': [{'a': 'b', 'c': {'foo': 'hello'}}, {'y': 'z', 'blah': {'lala': 'funfun', 'foo': 'world'}}]}\n\u003e\u003e\u003e nothoney.eat(test, 'foo')\n['hello', 'world']\n\u003e\u003e\u003e nothoney.eat(test, 'funfun', mode='value')\n['lala']\n```\n\nFile mode (test.json):\n```json\n[\n  {\n    \"a\": \"b\",\n    \"c\": {\n      \"foo\": \"boom goes the dynamite!\"\n    }\n  },\n  {\n    \"x\": \"y\",\n    \"z\": [\n      {\n        \"lalala\": {\n          \"foo\": \"gotem coach!\",\n          \"random\": \"stuff\",\n          \"here\": 1337\n        }\n      }\n    ]\n  }\n]\n```\n\n```python\n\u003e\u003e\u003e nothoney.eat('test.json', 'foo', as_file=True)\n['boom goes the dynamite!', 'gotem coach!']\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvesche%2Fnothoney","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvesche%2Fnothoney","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvesche%2Fnothoney/lists"}