Simple BrainFuck interpreter in python.
You can either directly use the BrainFuck file or you can import it as a library.
from BrainFuck import BrainFuck
# Accepts a single character and prints it back.
BrainFuck(",.")
python BrainFuck.py <brain_fuck_source>
A simple hello world program has been add as an example.