Metadata-Version: 2.1
Name: pybfc
Version: 0.0.0
Summary: BranFuck compiler write in python
Home-page: https://github.com/TheAwiteb/pybfc
Author: Awiteb
Author-email: Awiteb@hotmail.com
License: AGPLv3
Project-URL: Bug Reports, https://github.com/TheAwiteb/pybfc/issues/new?assignees=&labels=bug&template=bug.md
Project-URL: Source Code, https://github.com/TheAwiteb/pybfc
Keywords: pybfc,BF,branfuck,branfuck_compiler,branfuck_interprater
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

<div align="center">
  <h1>Pybfc</h1>
  <p>Pybfc - BranFuck compiler write in python</p>
  <a href="https://pypi.org/project/pybfc/">
    <img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/pybfc?color=9cf">
  </a>
  <a href="https://pypi.org/project/pybfc/">
    <img alt="PyPI" src="https://img.shields.io/pypi/v/pybfc?color=9cf">
  </a>
  <a href="https://www.gnu.org/licenses/agpl-3.0.en.html">
    <img src="https://img.shields.io/pypi/l/pybfc?color=9cf&label=License" alt="License">
  </a>
  <br>
  <a href="https://github.com/TheAwiteb/pybfc/actions/workflows/python-app.yml">
    <img alt="test-pybfc" src="https://github.com/TheAwiteb/pybfc/actions/workflows/python-app.yml/badge.svg">
  </a>
  <a href="https://github.com/TheAwiteb/pybfc/actions/workflows/release.yml">
    <img alt="Upload Python Package" src="https://github.com/TheAwiteb/pybfc/actions/workflows/release.yml/badge.svg">
  </a>
  <br>
  <a href="https://github.com/psf/black">
    <img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg">
  </a>
</div>
  
<details open>
  <summary>Table of Contents</summary>
  <ol>
    <li>
      <a href="#Requirements">Requirements</a>
    </li>
    <li>
      <a href="#Installation">Installation</a>
      <ul>
        <li><a href="#PyPi">With PyPi</a></li>
        <li><a href="#GitHub">With GitHub</a></li>
      </ul>
    </li>
    <li>
        <a href="#Usage">Usage</a>
        <!-- <ul>
            <li><a href="#"></a></li>
        </ul> -->
    </li>
    <li><a href="#Discussions">Discussions</a></li>
    <li><a href="#Issues">Issues</a></li>
    <li><a href="#Donating">Donating</a></li>
    <li><a href="#License">License</a></li>
  </ol>
</details>


## Requirements

* [Python](https://Python.org/) >= 3.8

## Installation

### PyPi

```bash
$ pip3 install pybfc
```

### GitHub

```bash
$ git clone https://github.com/TheAwiteb/pybfc
$ cd pybfc
$ python3 setup.py install
```

## Usage
```
Usage: pybfc [OPTIONS] FILE_PATH

  Python BranFuck Compiler 🐍⚙

Arguments:
  FILE_PATH  BranFuck path to execute it.  [required]

Options:
  -d, --debug    Enable debugging with execution.
  -V, --version  Print Pybfc version and exit.
  --help         Show this message and exit.
```

## Discussions
Question, feature request, discuss about pybfc [here](https://github.com/TheAwiteb/pybfc/discussions)

## Issues
You can report a bug from [here](https://github.com/TheAwiteb/pybfc/issues/new?assignees=&labels=bug&template=bug.md)


## Donating
> Note: These addresses are for BEP20 tokens

|    Currency          |                Address                          |
| ---------------------|------------------------------------------------ |
| Binance **BNB**| ```0x4ab0974c7dfcdcdf24d8323a93b061d41e9cf3f0```|
| Binance USD **BUSD**  | ```0x4ab0974c7dfcdcdf24d8323a93b061d41e9cf3f0```|
| Tether **USDT** | ```0x4ab0974c7dfcdcdf24d8323a93b061d41e9cf3f0``` |
| Bitcoin **BTC**  | ```0x4ab0974c7dfcdcdf24d8323a93b061d41e9cf3f0```|
| Bitcoin Cash **BCH**| ```0x4ab0974c7dfcdcdf24d8323a93b061d41e9cf3f0```|

## License

[GNU Affero General Public Version 3](https://www.gnu.org/licenses/agpl-3.0.en.html) License


