معرفی شرکت ها


dopey-1.0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A brainfuck interpreter made using python.
ویژگی مقدار
سیستم عامل -
نام فایل dopey-1.0.1
نام dopey
نسخه کتابخانه 1.0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Giovani Rodriguez
ایمیل نویسنده me@grodriguez.dev
آدرس صفحه اصلی https://github.com/gio101046/dopey
آدرس اینترنتی https://pypi.org/project/dopey/
مجوز MIT
# dopey - Another Brainf*ck Interpreter <!-- [![Total alerts](https://img.shields.io/lgtm/alerts/g/gio101046/dopey.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/gio101046/dopey/alerts/) [![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/gio101046/dopey.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/gio101046/dopey/context:python) --> Dopey is a brainf\*ck interpreter. It fully implements all the features of brainf\*ck as defined [here](https://en.wikipedia.org/wiki/Brainfuck#Language_design). ## Demo ![gif](https://i.imgur.com/QR9qh0e.gif) ## Implemetation Limitations Dopey is limited to a memory buffer of **30,000** byte cells all initialized to zero. Any attempts to move the pointer past the bounds of the memory buffer will result in an exception being raised. Attempting to print any cell with a value outside of the defined ASCII characters may also result in an exception. ## Requirements Make sure you've installed Python 3. You can download and install Python 3 at [python.org](https://www.python.org/downloads/). Verify you have Python 3 installed by running the following: ```bash python --version ``` or in some systems ```bash python3 --version ``` ## Installing You can install dopey using `pip`. From the command line: ```bash # use pip python package manager to install dopey $ pip install dopey # run dopey using python $ python -m dopey my-bf-file.bf ``` You can also import an interpreter class included with dopey and use it in your own python scripts. ```python from dopey import Interpreter interpreter = Interpreter() interpreter.execute("[brainf*ck code]++-->><<++--") ``` ## Contributing Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. ## License [MIT](https://choosealicense.com/licenses/mit/)


نحوه نصب


نصب پکیج whl dopey-1.0.1:

    pip install dopey-1.0.1.whl


نصب پکیج tar.gz dopey-1.0.1:

    pip install dopey-1.0.1.tar.gz