Metadata-Version: 2.1
Name: BrainpyFuck
Version: 0.0.3
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
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

# 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]
```
#### attributes
in the iterator called ```BrainF```:
```python
def __init__(self,code,*,print_memory=True, input_func=None, print_func=None)
```
<ul>
    <li>print_memory => bool</li>
    <li>input_func => function fot input</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)
```




