{"id":18563595,"url":"https://github.com/ishanoshada/chalkcli","last_synced_at":"2026-04-30T13:33:23.917Z","repository":{"id":209266744,"uuid":"723614168","full_name":"Ishanoshada/ChalkCli","owner":"Ishanoshada","description":"A Python package for terminal text styling and coloring.","archived":false,"fork":false,"pushed_at":"2023-11-26T08:48:17.000Z","size":17,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-05T00:21:37.143Z","etag":null,"topics":["cli","python-packages","terminal","termux"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/ChalkCli","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/Ishanoshada.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}},"created_at":"2023-11-26T08:18:00.000Z","updated_at":"2024-03-05T08:16:11.000Z","dependencies_parsed_at":"2023-11-26T09:37:33.247Z","dependency_job_id":null,"html_url":"https://github.com/Ishanoshada/ChalkCli","commit_stats":null,"previous_names":["ishanoshada/chalk"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ishanoshada/ChalkCli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ishanoshada%2FChalkCli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ishanoshada%2FChalkCli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ishanoshada%2FChalkCli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ishanoshada%2FChalkCli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ishanoshada","download_url":"https://codeload.github.com/Ishanoshada/ChalkCli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ishanoshada%2FChalkCli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32466333,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"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":["cli","python-packages","terminal","termux"],"created_at":"2024-11-06T22:12:59.474Z","updated_at":"2026-04-30T13:33:23.901Z","avatar_url":"https://github.com/Ishanoshada.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ChalkCli\n\nChalkCli is a Python package for terminal text styling and coloring. Add vibrant colors, formatting, and animations to your terminal output with ease.\n\n## Installation\n\nYou can install ChalkCli using pip:\n\n```bash\npip install ChalkCli\n```\n\n## Usage\n\n```python\nfrom ChalkCli import ChalkCli\n\n# Example usage\ntext = \"Hello, ChalkCli!\"\nstyled_text = ChalkCli.format_text(text, styles=[ChalkCli.BOLD, ChalkCli.BLUE])\nprint(styled_text)\n```\n\n## Features\n\n- Stylish text formatting\n- Colorful output for better visibility\n- Text animations for a dynamic terminal experience\n\n\n| Function | Description | Example Usage | Arguments |\n| --- | --- | --- | --- |\n| `format_text` | Formats text with styles and color | `ChalkCli.format_text(\"Hello\", styles=[ChalkCli.BOLD, ChalkCli.RED])` | `text (str)`, `styles (list of str)`, `color (str)` |\n| `colorized_banner` | Creates a colorized banner | `ChalkCli.colorized_banner(\"Welcome\", styles=[ChalkCli.BOLD], color=ChalkCli.BLUE)` | `text (str)`, `styles (list of str)`, `color (str)`, `banner_char (str)` |\n| `rainbow_text` | Creates rainbow-colored text | `ChalkCli.rainbow_text(\"Hello, Rainbow!\")` | `text (str)` |\n| `create_table` | Creates a table with a header and data | `ChalkCli.create_table([\"Name\", \"Age\"], [[\"Alice\", 25], [\"Bob\", 30]])` | `header (list of str)`, `data (list of lists)` |\n| `typewriter_text` | Outputs text with a typewriter effect | `ChalkCli.typewriter_text(\"Hello, Typewriter!\")` | `text (str)`, `delay (float)` |\n| `pulsating_text` | Outputs text with a pulsating effect | `ChalkCli.pulsating_text(\"Pulsating\")` | `text (str)`, `period (float)` |\n| `blinking_text` | Outputs text with a blinking effect | `ChalkCli.blinking_text(\"Blinking\")` | `text (str)`, `blink_duration (float)` |\n| `rotating_text` | Outputs text with a rotating effect | `ChalkCli.rotating_text(\"Rotating\", rotations=3)` | `text (str)`, `rotations (int)` |\n| `countdown` | Displays a countdown | `ChalkCli.countdown(5)` | `seconds (int)` |\n| `progress_bar` | Displays a progress bar | `ChalkCli.progress_bar(0.75)` | `progress (float)`, `length (int)` |\n| `random_color_text` | Outputs text with random colors | `ChalkCli.random_color_text(\"Random Colors\")` | `text (str)` |\n| `scrolling_text` | Scrolls text horizontally | `ChalkCli.scrolling_text(\"Scrolling Text\", scroll_speed=0.1)` | `text (str)`, `scroll_speed (float)` |\n| `center_text` | Centers text within a specified width | `ChalkCli.center_text(\"Centered Text\", width=50)` | `text (str)`, `width (int)` |\n| `fading_text` | Outputs text with a fading effect | `ChalkCli.fading_text(\"Fading Text\", fade_duration=5)` | `text (str)`, `fade_duration (float)` |\n\n\n## Examples\n\n### Rainbow Text\n\n```python\nfrom ChalkCli import ChalkCli\n\ntext = \"Rainbow Text\"\nrainbow_text = ChalkCli.rainbow_text(text)\nprint(rainbow_text)\n```\n\n### Table Creation\n\n```python\nfrom ChalkCli import ChalkCli\n\nheader = [\"Name\", \"Age\", \"Country\"]\ndata = [\n    [\"Alice\", \"25\", \"USA\"],\n    [\"Bob\", \"30\", \"Canada\"],\n    [\"Charlie\", \"22\", \"UK\"],\n]\n\ntable = ChalkCli.create_table(header, data)\nprint(table)\n```\n\n**Repository Views** ![Views](https://profile-counter.glitch.me/ChalkCli/count.svg)\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fishanoshada%2Fchalkcli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fishanoshada%2Fchalkcli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fishanoshada%2Fchalkcli/lists"}