Metadata-Version: 2.1
Name: pyasmtools
Version: 1.0.4
Summary: a python bytecode disassembler and execution tracer, all done as decorators.
Home-page: https://github.com/MoserMichael/pyasmtools
Author: Michael Moser
Author-email: moser.michael@gmail.com
License: MIT
Description: # Pyasmtools - looking at the python bytecode for fun and profit.
        
        The pyasmtools library is made up of two parts
        - A python bytecode disassembler . See [Python bytecode explained](https://github.com/MoserMichael/pyasmtool/blob/master/bytecode_disasm.md)
        - A tracer for python, that displays the source code of each executed line, along with the variables loaded and stored. See [Execution traces in Python](https://github.com/MoserMichael/pyasmtool/blob/master/tracer.md)
        
        Note that some of the goodness in this library is cpython specific, i don't expect it to work on every python based environment.
        
        ## Installation
        
        You can install this library with ```pip3 install pyasmtools```. Instructions are in the above mentioned links.
        
Keywords: utility
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Debuggers
Requires-Python: >=3.6
Description-Content-Type: text/markdown
