{ "info": { "author": "Daniel Carmon", "author_email": "daniel.carmon91@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2" ], "description": "# steptrace\nTraces which python lines are being execuded\n\n usage:\n python -m steptrace mycode.py\n this will run mycode.py, printing each executed line\n\n E.g, if mycode.py is:\n def foo(x):\n return x+1\n a = foo(3)\n then output of 'python -m steptrace mycode.py' will be:\n ~path~/mycode.py(1) def foo(x):\n ~path~/mycode.py(4) a = foo(3)\n ~path~/mycode.py(1) def foo(x):\n ~path~/mycode.py(2) ret = x+1\n ~path~/mycode.py(3) return ret\n ~path~/mycode.py(3) return ret\n ~path~/mycode.py(4) a = foo(3)\n (Steptrace) The program finished.\n\n How this module works:\n the code is heavily based on Pdb.\n Basically, we're just using Pdb with two main differences:\n 1) User input is automaticaly set to be 'step'\n 2) Printing only the lines in the given file. see usage.\n\n There is ALOT of room for improvement!\n Feel free to contact me at:\n daniel.carmon91@gmail.com\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/DanielCarmon/steptrace", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "steptrace", "package_url": "https://pypi.org/project/steptrace/", "platform": "", "project_url": "https://pypi.org/project/steptrace/", "project_urls": { "Homepage": "https://github.com/DanielCarmon/steptrace" }, "release_url": "https://pypi.org/project/steptrace/0.0.1/", "requires_dist": null, "requires_python": "", "summary": "Run python code and print lines being run", "version": "0.0.1" }, "last_serial": 4880643, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "d07dd35948c99963a021dd5b6149db56", "sha256": "6d842254beab0d48cccd224ef860b3e01c160f74cb1ddaba36d171c1d586590a" }, "downloads": -1, "filename": "steptrace-0.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "d07dd35948c99963a021dd5b6149db56", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 2385, "upload_time": "2019-02-28T19:12:08", "url": "https://files.pythonhosted.org/packages/11/cd/662581d7702a80ab2f8e15da89226b504cd95e159431fe5d270bb505e98e/steptrace-0.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b867233f7f08a6ac618fe39c51d31cc4", "sha256": "45be92b22aef14836ce4c541091ac26b9741c574714a081fa4bc389b9046a9c1" }, "downloads": -1, "filename": "steptrace-0.0.1.tar.gz", "has_sig": false, "md5_digest": "b867233f7f08a6ac618fe39c51d31cc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461, "upload_time": "2019-02-28T19:12:10", "url": "https://files.pythonhosted.org/packages/54/22/b4a0e597b5e525fba0cdcc8c2fc118c7440d13d033c0ffac3318ea194282/steptrace-0.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d07dd35948c99963a021dd5b6149db56", "sha256": "6d842254beab0d48cccd224ef860b3e01c160f74cb1ddaba36d171c1d586590a" }, "downloads": -1, "filename": "steptrace-0.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "d07dd35948c99963a021dd5b6149db56", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 2385, "upload_time": "2019-02-28T19:12:08", "url": "https://files.pythonhosted.org/packages/11/cd/662581d7702a80ab2f8e15da89226b504cd95e159431fe5d270bb505e98e/steptrace-0.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b867233f7f08a6ac618fe39c51d31cc4", "sha256": "45be92b22aef14836ce4c541091ac26b9741c574714a081fa4bc389b9046a9c1" }, "downloads": -1, "filename": "steptrace-0.0.1.tar.gz", "has_sig": false, "md5_digest": "b867233f7f08a6ac618fe39c51d31cc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461, "upload_time": "2019-02-28T19:12:10", "url": "https://files.pythonhosted.org/packages/54/22/b4a0e597b5e525fba0cdcc8c2fc118c7440d13d033c0ffac3318ea194282/steptrace-0.0.1.tar.gz" } ] }