{"id":21451528,"url":"https://github.com/d3cryptofc/brainfy","last_synced_at":"2026-02-10T10:35:08.148Z","repository":{"id":261669535,"uuid":"866354577","full_name":"d3cryptofc/brainfy","owner":"d3cryptofc","description":"🇺🇸 Amazing interpreter for the esoteric language brainf*ck written in Python. 🧠","archived":false,"fork":false,"pushed_at":"2024-11-09T22:57:54.000Z","size":56,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-30T07:18:05.257Z","etag":null,"topics":["brainfuck","brainfuck-interpreter","esoteric-language","interpreter","python"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/brainfy","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/d3cryptofc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-10-02T05:21:52.000Z","updated_at":"2024-11-09T22:56:39.000Z","dependencies_parsed_at":"2024-11-07T20:12:08.898Z","dependency_job_id":"e236aa8e-15f6-467f-b780-5000210037f4","html_url":"https://github.com/d3cryptofc/brainfy","commit_stats":null,"previous_names":["d3cryptofc/brainfy"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/d3cryptofc/brainfy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d3cryptofc%2Fbrainfy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d3cryptofc%2Fbrainfy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d3cryptofc%2Fbrainfy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d3cryptofc%2Fbrainfy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/d3cryptofc","download_url":"https://codeload.github.com/d3cryptofc/brainfy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d3cryptofc%2Fbrainfy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263091016,"owners_count":23412339,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["brainfuck","brainfuck-interpreter","esoteric-language","interpreter","python"],"created_at":"2024-11-23T04:23:18.956Z","updated_at":"2026-02-10T10:35:03.033Z","avatar_url":"https://github.com/d3cryptofc.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg title=\"Fun fact: the sketch for this art cost me R$100. I know, it's sad.\" align=\"center\" width=\"170\" src=\"https://gist.githubusercontent.com/d3cryptofc/8f6c33dc2c4f124bb065e428f3217571/raw/d78132287e850c8e85e269831725e9292e7a8821/brainfy.svg\"/\u003e\u003cbr\u003e\u003cbr\u003e\n  Amazing interpreter for the esoteric language brainf*ck written in Python.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://pypi.org/project/brainfy\"\u003e\u003cimg src=\"https://img.shields.io/badge/v0.1.4-8A2BE2?style=flat-square\u0026label=Version\u0026labelColor=282C34\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/d3cryptofc/brainfy/actions/workflows/ci.yml\"\u003e\u003cimg alt=\"GitHub Actions Workflow Status\" src=\"https://img.shields.io/github/actions/workflow/status/d3cryptofc/brainfy/ci.yml?style=flat-square\u0026labelColor=282C34\u0026label=Python 3.8 | 3.9 | 3.10 | 3.11 | 3.12\u0026color=8A2BE2\u0026logo=python\u0026logoColor=white\"\u003e\u003c/a\u003e\n  \u003cimg alt=\"GitHub License\" src=\"https://img.shields.io/github/license/d3cryptofc/brainfy?style=flat-square\u0026labelColor=282C34\u0026color=8A2BE2\"\u003e\n\u003c/p\u003e\n\n#### 🧩 Code Example: `main.bf`\n```python\n# Increase decimal value two times, contains decimal 2.\n++\n\n# Increase decimal value more 68 times, now contains 70, equivalent to 'F' letter.\n++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\n# This dot print the decimal number as ASCII letter.\n.\n\n# I am tired of this address space, I'm going to next because the decimal number is 0.\n\u003e\n\n# Ok, on second thought, I would like to back..\n\u003c\n\n# I will use a loop to decrease until it reaches 0.\n[-]\n```\n\n---\n\n#### ⚙️ Command Usage\n\n```\nusage: brainfy [-h] FILE\n\nAn amazing interpreter for the esoteric language brainf*ck written in Python.\n\npositional arguments:\n  FILE        read BF script instructions from file\n\noptional arguments:\n  -h, --help  show this help message and exit\n```\n\n#### 🌟 Currently Available Tokens\n\n| Token           | Description                                                   |\n|:---------------:|---------------------------------------------------------------|\n| **#**           | Create safe comments (isn't multiline).                       |\n| **.**           | Print current decimal value as ASCII.                         |\n| **+**           | Increase +1 to current decimal value.                         |\n| **-**           | Decrease -1 to current decimal value.                         |\n| **\u003e**           | Move pointer to next address space.                           |\n| **\u003c**           | Move pointer to previous address space.                       |\n| **[**`EXP`**]** | Repeat given expression while current decimal value is not 0. |\n\n\n#### ❤️ Contribute\n\nDo you have any ideas? open an issue or make a pull request. You are welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd3cryptofc%2Fbrainfy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fd3cryptofc%2Fbrainfy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd3cryptofc%2Fbrainfy/lists"}