Metadata-Version: 2.1
Name: BrainpyFuck
Version: 0.0.4
Summary: A small brainfuck interpreter for python, including prettyprint inside
Home-page: https://github.com/Forever-CodingNoob/BrainFuck
Author: ForeverCdgNoob
Author-email: johnnylin6526@gmail.com
License: UNKNOWN
Description: # BrainFuckInterpreter
        ### standard usage:
        ```python
        from brainFuckInterpreter import BrainF
        ```
        easily get outputs:
        
        ```python
        for msg in BrainF('yourcodehere'):
            print(msg)  #msg is what the '.' outputs
        ```
        or use a comprehension
        ```python
        meg=[i for i in BrainF('yourcodehere') if i]
        ```
        or just run it at once
        ```python
        print(BrainF('yourcodehere').run()) #what run() returns is a string
        ```
        #### attributes
        in the iterator called ```BrainF```:
        ```python
        def __init__(self,code,*,print_memory=True, print_func=None, input_func=None)
        ```
        <ul>
            <li>print_memory => bool(is initially set to True)</li>
            <li>input_func => function fot input(is initially set as BrainF.input_in_ASCII)</li>
            <li>print_func => function for printing memory(is not needed when print_memory is set to False)</li>
        </ul>
        
        ### PrettyPrint!!!
        ```python
        from brainFuckInterpreter import prettyprint
        ```
        ```python
        prettyprint(ur list representing memory to print, the index of cell (aka element) u want to emphasize)
        ```
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
