{"id":31779535,"url":"https://github.com/kaedeek/printfxpy","last_synced_at":"2026-01-20T17:03:09.187Z","repository":{"id":316512875,"uuid":"1055687144","full_name":"kaedeek/printfxpy","owner":"kaedeek","description":"A simple and colorful text printing library for Python.","archived":false,"fork":false,"pushed_at":"2026-01-01T13:10:06.000Z","size":66,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-06T14:08:18.650Z","etag":null,"topics":["library","printfxpy","python3"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/printfxpy/","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/kaedeek.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-12T16:35:30.000Z","updated_at":"2026-01-01T13:10:09.000Z","dependencies_parsed_at":"2025-09-25T04:17:43.068Z","dependency_job_id":"f48d82d5-102f-45e4-be79-5325ef87e739","html_url":"https://github.com/kaedeek/printfxpy","commit_stats":null,"previous_names":["kaedeek/printfxpy"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/kaedeek/printfxpy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaedeek%2Fprintfxpy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaedeek%2Fprintfxpy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaedeek%2Fprintfxpy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaedeek%2Fprintfxpy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kaedeek","download_url":"https://codeload.github.com/kaedeek/printfxpy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaedeek%2Fprintfxpy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["library","printfxpy","python3"],"created_at":"2025-10-10T07:51:03.853Z","updated_at":"2026-01-20T17:03:09.182Z","avatar_url":"https://github.com/kaedeek.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Printfxpy\n\n[![PyPI version](https://badge.fury.io/py/printfxpy.svg)](https://badge.fury.io/py/printfxpy)\n[![Downloads](https://pepy.tech/badge/printfxpy)](https://pepy.tech/project/printfxpy)\n[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)\n[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)\n[![Discord](https://img.shields.io/badge/Discord-Support%20Server-7289DA?style=flat\u0026logo=discord)](https://discord.gg/bEUneaBg)\n\nA simple, lightweight, and colorful text printing library for Python.\nSupports colors, styles, HTML hex colors, and even gradient text.\n\n## Support\n\nJoin our Discord server for support, questions, and community discussions:\n\n[![Discord](https://img.shields.io/badge/Discord-Support%20Server-7289DA?style=flat\u0026logo=discord)](https://discord.gg/bEUneaBg)\n\n## Features\n\n- 🎨 Support for 16 different colors\n- 🔤 Support for 8 different font styles (Bold, Italic, Underline, etc.)\n- 🌈 2-color gradient printing using HTML hex colors (#RRGGBB)\n- 🔧 Runtime color \u0026 style overrides\n- 📦 Zero dependencies\n- 🐍 Python 3.8+ support\n\n## Installation\n\n```bash\npip install printfxpy\n```\n\n## Quick Start\n\n```python\nfrom printfx import PrintFX\n\n# Basic color printing\nprinter = PrintFX(\"RED\")\nprinter.printfx(\"Hello World!\")\n\n# With font styles\nbold = PrintFX(\"GREEN\", \"BOLD\")\nbold.printfx(\"Bold text\")\n\n# Runtime style changes\nprinter.printfx(\"Italic text\", font_style=\"ITALIC\")\nprinter.printfx(\"Underlined text\", font_style=\"UNDERLINE\")\n\n```\n\n## Available Colors\n\n- `BLACK`, `RED`, `GREEN`, `YELLOW`, `BLUE`, `MAGENTA`, `CYAN`, `WHITE`\n- `BRIGHT_BLACK`, `BRIGHT_RED`, `BRIGHT_GREEN`, `BRIGHT_YELLOW`, `BRIGHT_BLUE`, `BRIGHT_MAGENTA`, `BRIGHT_CYAN`, `BRIGHT_WHITE`\n\n## Available Font Styles\n\n- `NORMAL` - Default text style\n- `BOLD` - Bold text\n- `DIM` - Dimmed text\n- `ITALIC` - Italic text\n- `UNDERLINE` - Underlined text\n- `BLINK` - Blinking text\n- `REVERSE` - Reversed colors\n- `STRIKETHROUGH` - Strikethrough text\n\n## Gradient Text\n\n```python\nfrom printfx import PrintFX\n\nprinter = PrintFX()\n\nprinter.gradient(\n    \"Gradient Text Example!\",\n    start=\"#ff0000\",\n    end=\"#0000ff\"\n)\n```\n\n## Advanced Usage\n\n```python\nfrom printfx import PrintFX\n\n# Create printer with default settings\nprinter = PrintFX(\"BLUE\")\n\n# Change color and style at runtime\nprinter.printfx(\"Red bold text\", color=\"RED\", font_style=\"BOLD\")\nprinter.printfx(\"Green underlined text\", color=\"GREEN\", font_style=\"UNDERLINE\")\n\n# Combine multiple effects\nprinter.printfx(\"Magenta italic text\", color=\"MAGENTA\", font_style=\"ITALIC\")\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaedeek%2Fprintfxpy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkaedeek%2Fprintfxpy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaedeek%2Fprintfxpy/lists"}