Skip to main content

The simplest and easiest to use Brainfuck interpreter in Python.

Project description

The simplest and easiest to use Brainfuck interpreter in Python.

Install

pip install brainfuckery

Examples

Converting text to brainfuck code.

from brainfuckery import Brainfuckery

textToConvert = input("text: ")
result = Brainfuckery().convert(textToConvert)

print(result)

Interpret brainfuck code/convert brainfuck to text

from brainfuckery import Brainfuckery

codeToInterpret = input("code: ")
result = Brainfuckery().interpret(codeToInterpret)

print(result)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

brainfuckery-1.0.1.tar.gz (2.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page