Metadata-Version: 2.1
Name: bftools
Version: 0.3.0
Summary: A brainfuck toolbox for python.
Home-page: https://github.com/BobDotCom/bftools
Author: BobDotCom
Author-email: bobdotcomgt@gmail.com
License: MIT
Download-URL: https://github.com/BobDotCom/bftools/releases
Project-URL: Documentation, https://bftools.readthedocs.io/en/latest/index.html
Project-URL: Source, https://github.com/BobDotCom/bftools
Project-URL: Tracker, https://github.com/BobDotCom/bftools/issues
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/x-rst
Provides-Extra: docs
License-File: LICENSE

===================
bftools 0.3.0
===================

A brainfuck toolbox for python.

|Status badge| |Docs badge| |Downloads badge|

.. |Status badge| image:: https://github.com/BobDotCom/bftools/workflows/Python%20Package/badge.svg
   :target: https://github.com/BobDotCom/bftools/actions?query=workflow%3A"Python+Package"
   :alt: Package Status

.. |Docs badge| image:: https://readthedocs.org/projects/bftools/badge/?version=latest
   :target: https://bftools.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status

.. |Downloads badge| image:: https://static.pepy.tech/personalized-badge/bftools?period=total&units=international_system&left_color=grey&right_color=brightgreen&left_text=Downloads
   :target: https://pepy.tech/project/bftools
   :alt: Download Counter

PyPI: https://pypi.org/project/bftools/

Docs: https://bftools.readthedocs.io/en/latest/

Installation
############
You can install released versions of bftools from the Python Package Index via pip or a similar tool:

**Stable Release:** ``pip install bftools``

**Working Version:** ``pip install git+https://github.com/BobDotCom/bftools.git``

Usage
#####

.. code-block:: python

    import bftools
    comp = bftools.BrainfuckTools()
    py = comp.compile("++++++++++[>+>+++>+++++++>++++++++++<<<<-]>>>>++++++++++++++++.---------------.++++++++++++++.+.")
    print(py.code)



