Metadata-Version: 2.1
Name: brainf-interpret
Version: 1.0.0
Summary: Interpret brainf in python
Home-page: https://github.com/YOYITsM3M8/Brainfuck-Interpreter
Author: retronbv
Author-email: retronbv@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown


# Brainfuck-Interpreter
A Brainfuck interpreter!

```python3
import brainf_interpret as bf
bf.run(">>>+>")
```
**OR**
```python3
import brainf_interpret as bf
with open("./oof.bf") as file:
  bf.run(file.read())
```

