Metadata-Version: 2.1
Name: coloredterm
Version: 0.2.2
Summary: Color the text in your terminal.
Home-page: https://github.com/hostedposted/coloredterm
Author: Hostedposted
Author-email: hostedpostedsite@gmail.com
License: UNKNOWN
Description: <h1>ColoredTerm</h1>
        
        [![Contributors][contributors-shield]][contributors-url]
        [![Forks][forks-shield]][forks-url]
        [![Stargazers][stars-shield]][stars-url]
        [![Issues][issues-shield]][issues-url]
        [![MIT License][license-shield]][license-url]
        ![PyPI](https://img.shields.io/pypi/v/coloredterm?style=for-the-badge)
        [![Codacy Badge](https://api.codacy.com/project/badge/Grade/5f23efbac8a846b1b0ea32c1d007e0f0)](https://app.codacy.com/gh/hostedposted/coloredterm?utm_source=github.com&utm_medium=referral&utm_content=hostedposted/coloredterm&utm_campaign=Badge_Grade)
        [![Downloads](https://pepy.tech/badge/coloredterm)](https://pepy.tech/project/coloredterm)
        [![Documentation Status](https://readthedocs.org/projects/coloredterm/badge/?version=latest)](https://coloredterm.readthedocs.io/en/latest/?badge=latest)
        ![GitHub Workflow Status](https://img.shields.io/github/workflow/status/hostedposted/coloredterm/Upload%20Python%20Package?style=for-the-badge)
        
        Coloredterm is a collection of functions to help you make text in your terminal a different color.
        
        With fg, bg, Fore, Back, Style, colored and cprint functions.
        
        # Getting started
        
        ## Installing
        
        To install the package you will need python3.6 or higher and pip installed.
        
        With those installed you can start.
        
        To install it go to your terminal and put in this command:
        ```bash
        pip install coloredterm
        ```
        Or you can download it from github.
        You can do that with:
        ```bash
        pip install git+https://github.com/hostedposted/coloredterm.git
        ```
        
        ## Usage
        
        Here is a quick example:
        
        ```python
        from coloredterm import Fore, Back # Importing The Fore and Back class from coloredterm.
        
        print(f"{Fore.BLUE}{Back.YELLOW}Foreground of Blue Background of yellow.") # Printing text with a Foreground of Blue and Background of Yellow.
        ```
        
        For more please go to the [documentation](https://coloredterm.readthedocs.io/en/latest/).
        
        [contributors-shield]: https://img.shields.io/github/contributors/hostedposted/coloredterm.svg?style=for-the-badge
        [contributors-url]: https://github.com/hostedposted/coloredterm/graphs/contributors
        [forks-shield]: https://img.shields.io/github/forks/hostedposted/coloredterm.svg?style=for-the-badge
        [forks-url]: https://github.com/hostedposted/coloredterm/network/members
        [stars-shield]: https://img.shields.io/github/stars/hostedposted/coloredterm.svg?style=for-the-badge
        [stars-url]: https://github.com/hostedposted/coloredterm/stargazers
        [issues-shield]: https://img.shields.io/github/issues/hostedposted/coloredterm.svg?style=for-the-badge
        [issues-url]: https://github.com/hostedposted/coloredterm/issues
        [license-shield]: https://img.shields.io/github/license/hostedposted/coloredterm.svg?style=for-the-badge
        [license-url]: https://github.com/hostedposted/coloredterm/blob/master/LICENSE
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
