Metadata-Version: 2.1
Name: bftools
Version: 0.4.0
Summary: A brainfuck toolbox for python.
Home-page: https://github.com/BobDotCom/bftools
Download-URL: https://github.com/BobDotCom/bftools/releases
Author: BobDotCom
Author-email: bobdotcomgt@gmail.com
License: MIT
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
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
License-File: LICENSE
Provides-Extra: docs
Requires-Dist: sphinx (==4.3.0) ; extra == 'docs'
Requires-Dist: sphinxcontrib-trio (==1.1.2) ; extra == 'docs'
Requires-Dist: sphinxcontrib-websupport ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Provides-Extra: minify
Requires-Dist: python-minifier (<=2.5) ; extra == 'minify'

===================
bftools 0.4.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)
