{"id":20048458,"url":"https://github.com/aggstam/debugger","last_synced_at":"2026-06-13T07:32:08.603Z","repository":{"id":155101738,"uuid":"519782794","full_name":"aggstam/debugger","owner":"aggstam","description":"Simplifying the proper way to debug a program.","archived":false,"fork":false,"pushed_at":"2025-11-30T13:39:17.000Z","size":21,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-30T16:23:48.595Z","etag":null,"topics":["debug","debugger","debugging","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aggstam.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-07-31T13:23:36.000Z","updated_at":"2025-11-30T13:39:20.000Z","dependencies_parsed_at":"2025-01-12T20:33:21.862Z","dependency_job_id":"4fa7eedc-c143-4d30-88af-537a3425f2a9","html_url":"https://github.com/aggstam/debugger","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aggstam/debugger","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Fdebugger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Fdebugger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Fdebugger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Fdebugger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aggstam","download_url":"https://codeload.github.com/aggstam/debugger/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aggstam%2Fdebugger/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34276501,"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-13T02:00:06.617Z","response_time":62,"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":["debug","debugger","debugging","python"],"created_at":"2024-11-13T11:44:12.238Z","updated_at":"2026-06-13T07:32:08.592Z","avatar_url":"https://github.com/aggstam.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# debugger\nYou learned that the proper way to debug a program is by printing lines, but found that it is a bit tedious process?\u003cbr\u003e\nNo worry anon, get ready to turn your spaghetti debugging code to a readable and easy to use format!\n\nGo from this:\n```python\nprint(\"0\")\n# something\nprint(\"1\")\n# something else\nprint(\"aaaa\")\n```\nto a more glorious/professional looking:\n```python\nfrom debugger import breakpoint as b\n \n# Normal breakpoint:  \nb()\n# Verbose breakpoint:\nb(None, True)\n# Passing object to print value:\nx = 42\nb(x)\n# Verbose breakpoint with object value: \nb(x, True)\n```\n\nand end up with this output:\n```text\n------Breakpoint------\nLine:  4\n----------------------\n------Breakpoint------\nFile:  /home/x/dev/python/tester.py\nFunction:  \u003cmodule\u003e\nLine:  7\n----------------------\n------Breakpoint------\nLine:  11\nValue:  42\n----------------------\n------Breakpoint------\nFile:  /home/x/dev/python/tester.py\nFunction:  \u003cmodule\u003e\nLine:  14\nValue:  42\n----------------------\n```\nAs you can see, the debugger is meticulously designed to support all the common line printing tactics.\u003cbr\u003e\nHave fun debuggin gloriously!\n\n## Usage\nAfter linking the library, import it to your code using:\n```python\nfrom debugger import breakpoint as b\n```\nYou can try the example by executing the provided unit test:\n```shell\n$ python -m unittest\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faggstam%2Fdebugger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faggstam%2Fdebugger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faggstam%2Fdebugger/lists"}