Metadata-Version: 2.4
Name: bfpy_package_brainy7890
Version: 0.1.0
Summary: A simple python package that interprets and compiles Brainfuck code.
Project-URL: Homepage, https://github.com/Brainy0789/BfPy
Project-URL: Issues, https://github.com/Brainy0789/BfPy/issues
Author: Brainy7890
License-Expression: MIT
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# BfPy

This is a simple python package that interprets and compiles Brainfuck code.

USE:


```` python
from BfPy import BfInterpreter
from BfPy import BfCompiler

interpreter = BfInterpreter()
compiler = BfCompiler()

bf = "+"*65 + "."

interpreter.interpret(bf) //Outputs A
compiler.compile(bf, "compiled") //Creates a program in your project's root folder with the name compiled along with C code of the same name.
````