{"id":26093165,"url":"https://github.com/atlas-is-coding/bprintoor","last_synced_at":"2025-12-07T23:04:04.397Z","repository":{"id":279604980,"uuid":"939377072","full_name":"atlas-is-coding/bprintoor","owner":"atlas-is-coding","description":"🌈 Powerful cross-platform Python library for terminal text styling with support for colors, ASCII art, and Markdown-like formatting. Works seamlessly on Windows, macOS, and Linux","archived":false,"fork":false,"pushed_at":"2025-03-03T10:41:55.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-08T12:29:20.879Z","etag":null,"topics":["ansi-colors","ascii-art","cli","console","cross-platform","logging","markdown","print","prints","python","python-library","rgb-colors","styling","terminal","terminal-colors","terminal-output","text-formatting"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/bprinter","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/atlas-is-coding.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}},"created_at":"2025-02-26T12:51:24.000Z","updated_at":"2025-03-04T12:53:27.000Z","dependencies_parsed_at":"2025-03-04T13:05:06.713Z","dependency_job_id":null,"html_url":"https://github.com/atlas-is-coding/bprintoor","commit_stats":null,"previous_names":["dgaliaf/bprinter","dgaliaf/bprintoor","atlas-is-coding/bprintoor"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atlas-is-coding%2Fbprintoor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atlas-is-coding%2Fbprintoor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atlas-is-coding%2Fbprintoor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atlas-is-coding%2Fbprintoor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atlas-is-coding","download_url":"https://codeload.github.com/atlas-is-coding/bprintoor/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242685874,"owners_count":20169243,"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":["ansi-colors","ascii-art","cli","console","cross-platform","logging","markdown","print","prints","python","python-library","rgb-colors","styling","terminal","terminal-colors","terminal-output","text-formatting"],"created_at":"2025-03-09T11:55:45.016Z","updated_at":"2025-12-07T23:04:04.392Z","avatar_url":"https://github.com/atlas-is-coding.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BPrinter | Printer\n\n[![PyPI version](https://badge.fury.io/py/bprinter.svg)](https://badge.fury.io/py/bprinter)\n[![Python](https://img.shields.io/pypi/pyversions/bprinter.svg)](https://pypi.org/project/bprinter/)\n[![License](https://img.shields.io/github/license/danilhodos/bprinter.svg)](https://github.com/danilhodos/bprinter/blob/main/LICENSE)\n\n[English](#english)\n\n\u003ca name=\"english\"\u003e\u003c/a\u003e\n## 🌈 BPrinter - Powerful Cross-Platform Terminal Styling Library\n\nBPrinter is a feature-rich library for terminal text styling that works seamlessly across Windows, macOS, and Linux.\n\n### 📦 Installation\n\n```bash\npip install bprinter\n```\n\n### 🚀 Quick Start\n\n```python\nfrom bprinter import Color, Background, Style\n\n# Simple color usage\nprint(Color.RED + \"Red text\" + Style.RESET)\n\n# Combining styles\nprint(Color.BLUE + Background.WHITE + Style.BOLD + \"Bold blue text on white background\" + Style.RESET)\n\n# Using context manager\nwith Style.color('red'):\n    print(\"This text is red\")\n    print(\"And this one too\")\n```\n\n### ✨ Features\n\n- 🎨 16 basic colors and 256 extended colors\n- 🖌 RGB color support\n- ✏️ Text styling (bold, italic, underline, etc.)\n- 🔤 ASCII art generation\n- 📝 Markdown-like text formatting\n- 🖥 Cross-platform compatibility\n- 🎯 Simple and intuitive API\n- 🛠 Extensible architecture\n\n### 🎨 Advanced Usage\n\n#### Logging with Styles\n\n```python\nfrom bprinter import BPrinter\n\nbp = BPrinter(show_time=True)\n\nbp.success(\"Operation completed successfully!\")\nbp.error(\"An error occurred\")\nbp.warning(\"Warning: Low memory\")\nbp.info(\"Processing data...\")\nbp.debug(\"Debug information\")\n```\n\n#### ASCII Art\n\n```python\nfrom bprinter import ASCIIArtGenerator\n\n# Create ASCII art\nprint(ASCIIArtGenerator.render(\"Hello!\", color=\"red\"))\n\n# Preview different fonts\nprint(ASCIIArtGenerator.preview_fonts(\"ABC\"))\n```\n\n#### Text Formatting\n\n```python\nfrom bprinter import Printer\n\nprinter = Printer(enable_formatting=True)\n\nprinter(\"This is **bold** and _italic_ text\")\nprinter(\"Use `code` and {red|colored text}\")\n```\n\n### 📚 Documentation\n\nFor detailed documentation and examples, visit our [GitHub repository](https://github.com/DGaliaf/bprinter).\n\n---\n\n## 📄 License\n\nMIT License \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatlas-is-coding%2Fbprintoor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatlas-is-coding%2Fbprintoor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatlas-is-coding%2Fbprintoor/lists"}