coloraura


Namecoloraura JSON
Version 1.0.2 PyPI version JSON
download
home_pagehttps://github.com/visuallysynced/coloraura
SummaryA Python module for text styling with color and gradient support
upload_time2024-02-23 18:40:20
maintainer
docs_urlNone
authorYour Name
requires_python
licenseGPLv3
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ColorAura

ColorAura is a Python module for text styling with color and gradient support.

## Features

- Apply colors to text using ANSI escape codes.
- Create gradients with customizable start and end colors.
- Add text styles such as bold, italic, and strikethrough.
- Supports all standard ANSI colors.
- Hex color support for custom colors.

## Installation

You can install ColorAura using pip:

```
pip install coloraura
```

## Usage

Here's a simple example demonstrating how to use ColorAura to style text:

```python
from coloraura import color, gradient, style

# Apply red color to text
red_text = color.style("Hello, ColorAura!", color='red')
print(red_text)

# Apply a blue-to-green gradient to text
gradient_text = gradient.style("Hello, Gradient!", gradient=('blue', 'green'))
print(gradient_text)

# Apply bold style to text
bold_text = style.style("Hello, Bold!", style='bold')
print(bold_text)
```

## License

ColorAura is released under the GNU General Public License (GPLv3). See the [LICENSE](LICENSE) file for details.

## Contributing

Contributions are welcome! If you encounter any issues or have suggestions for improvements, please open an issue on GitHub.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/visuallysynced/coloraura",
    "name": "coloraura",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Your Name",
    "author_email": "your.email@example.com",
    "download_url": "https://files.pythonhosted.org/packages/66/6c/0b8b5ce5d6f3de64314e3444d5b5e0a959960001702d2907d9ddd7af1d79/coloraura-1.0.2.tar.gz",
    "platform": null,
    "description": "# ColorAura\n\nColorAura is a Python module for text styling with color and gradient support.\n\n## Features\n\n- Apply colors to text using ANSI escape codes.\n- Create gradients with customizable start and end colors.\n- Add text styles such as bold, italic, and strikethrough.\n- Supports all standard ANSI colors.\n- Hex color support for custom colors.\n\n## Installation\n\nYou can install ColorAura using pip:\n\n```\npip install coloraura\n```\n\n## Usage\n\nHere's a simple example demonstrating how to use ColorAura to style text:\n\n```python\nfrom coloraura import color, gradient, style\n\n# Apply red color to text\nred_text = color.style(\"Hello, ColorAura!\", color='red')\nprint(red_text)\n\n# Apply a blue-to-green gradient to text\ngradient_text = gradient.style(\"Hello, Gradient!\", gradient=('blue', 'green'))\nprint(gradient_text)\n\n# Apply bold style to text\nbold_text = style.style(\"Hello, Bold!\", style='bold')\nprint(bold_text)\n```\n\n## License\n\nColorAura is released under the GNU General Public License (GPLv3). See the [LICENSE](LICENSE) file for details.\n\n## Contributing\n\nContributions are welcome! If you encounter any issues or have suggestions for improvements, please open an issue on GitHub.\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "A Python module for text styling with color and gradient support",
    "version": "1.0.2",
    "project_urls": {
        "Homepage": "https://github.com/visuallysynced/coloraura"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "666c0b8b5ce5d6f3de64314e3444d5b5e0a959960001702d2907d9ddd7af1d79",
                "md5": "c2073fcf4260a9f03ecc8dc885dfcda2",
                "sha256": "ac586d1fdf11a8a66cb893b6e94f4475d92fdaed6295052429a97638a5f19721"
            },
            "downloads": -1,
            "filename": "coloraura-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "c2073fcf4260a9f03ecc8dc885dfcda2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2561,
            "upload_time": "2024-02-23T18:40:20",
            "upload_time_iso_8601": "2024-02-23T18:40:20.351180Z",
            "url": "https://files.pythonhosted.org/packages/66/6c/0b8b5ce5d6f3de64314e3444d5b5e0a959960001702d2907d9ddd7af1d79/coloraura-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-23 18:40:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "visuallysynced",
    "github_project": "coloraura",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "coloraura"
}
        
Elapsed time: 0.18629s