{"id":16452598,"url":"https://github.com/agent-hellboy/visualise","last_synced_at":"2026-06-10T04:31:44.395Z","repository":{"id":54649973,"uuid":"521999107","full_name":"Agent-Hellboy/Visualise","owner":"Agent-Hellboy","description":"An attempt to make a library which helps in visualisation of program execution","archived":false,"fork":false,"pushed_at":"2022-08-08T13:57:20.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-21T04:07:29.108Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Agent-Hellboy.png","metadata":{"files":{"readme":"README.md","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}},"created_at":"2022-08-06T16:33:40.000Z","updated_at":"2022-08-06T16:36:32.000Z","dependencies_parsed_at":"2022-08-13T22:50:14.864Z","dependency_job_id":null,"html_url":"https://github.com/Agent-Hellboy/Visualise","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Agent-Hellboy/Visualise","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2FVisualise","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2FVisualise/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2FVisualise/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2FVisualise/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Agent-Hellboy","download_url":"https://codeload.github.com/Agent-Hellboy/Visualise/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agent-Hellboy%2FVisualise/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34137570,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-11T10:13:16.490Z","updated_at":"2026-06-10T04:31:44.374Z","avatar_url":"https://github.com/Agent-Hellboy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Visualise\nAn attempt to make a library which helps in visualisation of program execution\n\n\n```bash\nfrom visualise import call_stack\ndef subsets(nums):\n    res = []\n    sub = []\n    def dfs(i):\n        if i \u003e= len(nums):\n            res.append(sub.copy())\n            return\n        sub.append(nums[i])\n        dfs(i+1)\n        sub.pop()\n        dfs(i+1)\n        call_stack()\n    dfs(0)\n    return res\n\nsubsets([1,2,3])\n\n\n```\nOUTPUT:\n \nwhole summary of call_stack whenever program execution hits the point of function call\n```\n********************************************************************************\n{'current_frame': \u003cframe at 0x7f5c74c7fdd0, file '/home/proshan/stackoverflow/Visualise/visualise/v_call_stack.py', line 9, code call_stack\u003e}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 2,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2]],\n 'sub': [1, 2]}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 1,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2]],\n 'sub': [1, 2]}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 0,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2]],\n 'sub': [1, 2]}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2]],\n 'sub': [1, 2]}\nNone\n********************************************************************************\n{'current_frame': \u003cframe at 0xe87dd0, file '/home/proshan/stackoverflow/Visualise/visualise/v_call_stack.py', line 9, code call_stack\u003e}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 2,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1]],\n 'sub': [1]}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 1,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1]],\n 'sub': [1]}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 0,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1]],\n 'sub': [1]}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1]],\n 'sub': [1]}\nNone\n********************************************************************************\n{'current_frame': \u003cframe at 0xe87b30, file '/home/proshan/stackoverflow/Visualise/visualise/v_call_stack.py', line 9, code call_stack\u003e}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 1,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1]],\n 'sub': [1]}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 0,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1]],\n 'sub': [1]}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1]],\n 'sub': [1]}\nNone\n********************************************************************************\n{'current_frame': \u003cframe at 0xe88af0, file '/home/proshan/stackoverflow/Visualise/visualise/v_call_stack.py', line 9, code call_stack\u003e}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 2,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2]],\n 'sub': [2]}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 1,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2]],\n 'sub': [2]}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 0,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2]],\n 'sub': [2]}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2]],\n 'sub': [2]}\nNone\n********************************************************************************\n{'current_frame': \u003cframe at 0xe89030, file '/home/proshan/stackoverflow/Visualise/visualise/v_call_stack.py', line 9, code call_stack\u003e}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 2,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2], [3], []],\n 'sub': []}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 1,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2], [3], []],\n 'sub': []}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 0,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2], [3], []],\n 'sub': []}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2], [3], []],\n 'sub': []}\nNone\n********************************************************************************\n{'current_frame': \u003cframe at 0xe87640, file '/home/proshan/stackoverflow/Visualise/visualise/v_call_stack.py', line 9, code call_stack\u003e}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 1,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2], [3], []],\n 'sub': []}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 0,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2], [3], []],\n 'sub': []}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2], [3], []],\n 'sub': []}\nNone\n********************************************************************************\n{'current_frame': \u003cframe at 0xe892d0, file '/home/proshan/stackoverflow/Visualise/visualise/v_call_stack.py', line 9, code call_stack\u003e}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'i': 0,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2], [3], []],\n 'sub': []}\nNone\n{'dfs': \u003cfunction subsets.\u003clocals\u003e.dfs at 0x7f5c74b815e0\u003e,\n 'nums': [1, 2, 3],\n 'res': [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2], [3], []],\n 'sub': []}\nNone\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagent-hellboy%2Fvisualise","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagent-hellboy%2Fvisualise","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagent-hellboy%2Fvisualise/lists"}