CodeChroma


NameCodeChroma JSON
Version 1.5.0 PyPI version JSON
download
home_pagehttps://github.com/EddyBel/CodeChroma
SummaryThis project is a simple library to color text in the terminal with python.
upload_time2023-08-18 03:58:55
maintainer
docs_urlNone
authorEduardo Rangel
requires_python>=3.7
licenseMIT
keywords colors syntax terminal markdown
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">CodeChroma</h1>

<p align="center" >
<img src="https://img.shields.io/github/last-commit/EddyBel/CodeChroma?color=%23AED6F1&style=for-the-badge" />
<img src="https://img.shields.io/github/license/EddyBel/CodeChroma?color=%23EAECEE&style=for-the-badge" />
<img src="https://img.shields.io/github/languages/top/EddyBel/CodeChroma?color=%23F9E79F&style=for-the-badge" />
<img src="https://img.shields.io/github/languages/count/EddyBel/CodeChroma?color=%23ABEBC6&style=for-the-badge" />
<img src="https://img.shields.io/github/languages/code-size/EddyBel/CodeChroma?color=%23F1948A&style=for-the-badge" />
</p>

<p align="center">Simple python text coloring package</p>

<p aling="center" >
<img src="./assets/Preview_1.png" width="100%" />
<img src="./assets/Preview_2.png" width="100%" />
<img src="./assets/Preview_3.png" width="100%" />
</p>

The "CodeChroma" project is a Python library for highlighting and coloring text in the terminal. With this library, users can highlight code syntax and color specific markdown elements, such as titles, links, parentheses and text in quotation marks.

## Why the project?

The project was created with the aim of improving the readability and aesthetics of text in projects using the terminal. On many occasions, text in the terminal can be difficult to read due to its flat, uncolored format, which can make work difficult and decrease efficiency. For this reason, a Python library was developed to allow text highlighting and coloring in a simple and easy to implement way.

The library allows users to highlight code syntax and color specific markdown elements, such as titles, links, parentheses and text in quotation marks, which improves the readability of the text and makes it easier to understand. In addition, this library is easy to implement in any project as it can be used with a simple library method, making the integration process quick and easy.

## Requirements

- [x] [Python>=3.7](https://www.python.org/downloads/)
- [x] [Virtualenv](https://virtualenv.pypa.io/en/latest/)

## Features

- [x] Allows to identify the code passed as a string and return the text with the syntax of the language colored.
- [x] Allows you to color key elements of the markdown syntax such as code, titles, links, etc.
- [x] Allows quick and easy implementation of the colors to be used.

## How to use

The library is simple to use and only requires installation and import.

```bash
pip install CodeChroma
```

The library allows you to color the text using only one method of the library for ease of use.

```python
from CodeChroma import TerminalColors

# We create an instance of the library
termcolor = TerminalColors()

#  Sample text for coloring
text = \
"""
# Sintaxis de Java

## Variables

En Java, existen diferentes tipos de variables, como enteros, flotantes, caracteres y booleanos.
Además de variables de tipo objeto como String o Arrays. Es importante declarar el tipo de
variable correcto para evitar errores en tiempo de ejecución. Por ejemplo, si quieres
almacenar un valor numérico entero, se debe utilizar "int" como el tipo de dato.

'''java
int numeroEntero = 10;
float decimal = 3.14f;
char letra = 'A';
boolean verdaderoOFalso = true;
'''
"""

# We color the text with its method "colorize_text", the text passed by parameter
# The function returns a new string with the text already colored.
colored_text = termcolor.colorize_text(text)
# We can display the new text
print(colored_text)
```

## Configuration

The library allows for a few extra settings, which allow the user to modify and color their text as needed.

### Colors

The colors can be easily modified from the parameters assigned when creating the instance of the TerminalColors class, you can write the available color you need for each colorable element.

```python
termcolor = TerminalColors(title="yellow", list_item="magenta", ...)
```

Another way to modify the colors of each element is from its elements attribute, for this it is necessary to pass some method either own of the library or personal (But it must be a method), that allows to color the text and to return the colored text.

```python
colors = Colors()
termcolor = TerminalColors(title="yellow", list_item="magenta")
termcolor.elements = {
        "title": colors.bg_cyan,
        "block": colors.yellow,
        "list-item": colors.magenta,
        "url": colors.cyan,
        "parentheses": colors.light_red,
        "string": colors.light_green,
        "code": colors.yellow,
        "lang": colors.red
      }
```

### Format

The TerminalColors class has some properties that modify how the string resulting from the coloring is displayed.

One of them is the programming language, with the view_lang property (boolean value, by default it is set to True) allows to modify if the identified language will be shown or not.

```python
termcolor.view_lang = False
```

The following format_code modifies whether the code is returned with or without the markdown code block characters "````", by default it is set to True.

```python
termcolor.format_code = False
```

## Methods

The TerminalColors class has some coloring methods as needed.

| FUNCTION             | PARAMS   | DESCRIPTION                                                                                                                                                 |
| -------------------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
| coloring_text        | text:str | This function receives a text as a parameter and allows coloring the string with markdown formatting and features.                                          |
| color_code           | code:str | This function allows you to pass a code as a string, the function will identify the language and color it according to its syntax if it finds the language. |
| detect_code_language | code:str | This function also allows you to receive a code as a string and it will return a string with the language you identified in the code.                       |

## Licence

<h3 align="center">MIT</h3>

---

<p align="center">
  <a href="https://github.com/EddyBel" target="_blank">
    <img alt="Github" src="https://img.shields.io/badge/GitHub-%2312100E.svg?&style=for-the-badge&logo=Github&logoColor=white" />
  </a> 
  <a href="https://www.linkedin.com/in/eduardo-rangel-eddybel/" target="_blank">
    <img alt="LinkedIn" src="https://img.shields.io/badge/linkedin-%230077B5.svg?&style=for-the-badge&logo=linkedin&logoColor=white" />
  </a> 
</p>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/EddyBel/CodeChroma",
    "name": "CodeChroma",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "colors,syntax,terminal,markdown",
    "author": "Eduardo Rangel",
    "author_email": "dante61918@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/99/9a/53bbe8c4868693e6bf697e3e7020ca8c0f6b116cf49cf61f9908349b77df/CodeChroma-1.5.0.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">CodeChroma</h1>\n\n<p align=\"center\" >\n<img src=\"https://img.shields.io/github/last-commit/EddyBel/CodeChroma?color=%23AED6F1&style=for-the-badge\" />\n<img src=\"https://img.shields.io/github/license/EddyBel/CodeChroma?color=%23EAECEE&style=for-the-badge\" />\n<img src=\"https://img.shields.io/github/languages/top/EddyBel/CodeChroma?color=%23F9E79F&style=for-the-badge\" />\n<img src=\"https://img.shields.io/github/languages/count/EddyBel/CodeChroma?color=%23ABEBC6&style=for-the-badge\" />\n<img src=\"https://img.shields.io/github/languages/code-size/EddyBel/CodeChroma?color=%23F1948A&style=for-the-badge\" />\n</p>\n\n<p align=\"center\">Simple python text coloring package</p>\n\n<p aling=\"center\" >\n<img src=\"./assets/Preview_1.png\" width=\"100%\" />\n<img src=\"./assets/Preview_2.png\" width=\"100%\" />\n<img src=\"./assets/Preview_3.png\" width=\"100%\" />\n</p>\n\nThe \"CodeChroma\" project is a Python library for highlighting and coloring text in the terminal. With this library, users can highlight code syntax and color specific markdown elements, such as titles, links, parentheses and text in quotation marks.\n\n## Why the project?\n\nThe project was created with the aim of improving the readability and aesthetics of text in projects using the terminal. On many occasions, text in the terminal can be difficult to read due to its flat, uncolored format, which can make work difficult and decrease efficiency. For this reason, a Python library was developed to allow text highlighting and coloring in a simple and easy to implement way.\n\nThe library allows users to highlight code syntax and color specific markdown elements, such as titles, links, parentheses and text in quotation marks, which improves the readability of the text and makes it easier to understand. In addition, this library is easy to implement in any project as it can be used with a simple library method, making the integration process quick and easy.\n\n## Requirements\n\n- [x] [Python>=3.7](https://www.python.org/downloads/)\n- [x] [Virtualenv](https://virtualenv.pypa.io/en/latest/)\n\n## Features\n\n- [x] Allows to identify the code passed as a string and return the text with the syntax of the language colored.\n- [x] Allows you to color key elements of the markdown syntax such as code, titles, links, etc.\n- [x] Allows quick and easy implementation of the colors to be used.\n\n## How to use\n\nThe library is simple to use and only requires installation and import.\n\n```bash\npip install CodeChroma\n```\n\nThe library allows you to color the text using only one method of the library for ease of use.\n\n```python\nfrom CodeChroma import TerminalColors\n\n# We create an instance of the library\ntermcolor = TerminalColors()\n\n#  Sample text for coloring\ntext = \\\n\"\"\"\n# Sintaxis de Java\n\n## Variables\n\nEn Java, existen diferentes tipos de variables, como enteros, flotantes, caracteres y booleanos.\nAdem\u00e1s de variables de tipo objeto como String o Arrays. Es importante declarar el tipo de\nvariable correcto para evitar errores en tiempo de ejecuci\u00f3n. Por ejemplo, si quieres\nalmacenar un valor num\u00e9rico entero, se debe utilizar \"int\" como el tipo de dato.\n\n'''java\nint numeroEntero = 10;\nfloat decimal = 3.14f;\nchar letra = 'A';\nboolean verdaderoOFalso = true;\n'''\n\"\"\"\n\n# We color the text with its method \"colorize_text\", the text passed by parameter\n# The function returns a new string with the text already colored.\ncolored_text = termcolor.colorize_text(text)\n# We can display the new text\nprint(colored_text)\n```\n\n## Configuration\n\nThe library allows for a few extra settings, which allow the user to modify and color their text as needed.\n\n### Colors\n\nThe colors can be easily modified from the parameters assigned when creating the instance of the TerminalColors class, you can write the available color you need for each colorable element.\n\n```python\ntermcolor = TerminalColors(title=\"yellow\", list_item=\"magenta\", ...)\n```\n\nAnother way to modify the colors of each element is from its elements attribute, for this it is necessary to pass some method either own of the library or personal (But it must be a method), that allows to color the text and to return the colored text.\n\n```python\ncolors = Colors()\ntermcolor = TerminalColors(title=\"yellow\", list_item=\"magenta\")\ntermcolor.elements = {\n        \"title\": colors.bg_cyan,\n        \"block\": colors.yellow,\n        \"list-item\": colors.magenta,\n        \"url\": colors.cyan,\n        \"parentheses\": colors.light_red,\n        \"string\": colors.light_green,\n        \"code\": colors.yellow,\n        \"lang\": colors.red\n      }\n```\n\n### Format\n\nThe TerminalColors class has some properties that modify how the string resulting from the coloring is displayed.\n\nOne of them is the programming language, with the view_lang property (boolean value, by default it is set to True) allows to modify if the identified language will be shown or not.\n\n```python\ntermcolor.view_lang = False\n```\n\nThe following format_code modifies whether the code is returned with or without the markdown code block characters \"````\", by default it is set to True.\n\n```python\ntermcolor.format_code = False\n```\n\n## Methods\n\nThe TerminalColors class has some coloring methods as needed.\n\n| FUNCTION             | PARAMS   | DESCRIPTION                                                                                                                                                 |\n| -------------------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| coloring_text        | text:str | This function receives a text as a parameter and allows coloring the string with markdown formatting and features.                                          |\n| color_code           | code:str | This function allows you to pass a code as a string, the function will identify the language and color it according to its syntax if it finds the language. |\n| detect_code_language | code:str | This function also allows you to receive a code as a string and it will return a string with the language you identified in the code.                       |\n\n## Licence\n\n<h3 align=\"center\">MIT</h3>\n\n---\n\n<p align=\"center\">\n  <a href=\"https://github.com/EddyBel\" target=\"_blank\">\n    <img alt=\"Github\" src=\"https://img.shields.io/badge/GitHub-%2312100E.svg?&style=for-the-badge&logo=Github&logoColor=white\" />\n  </a> \n  <a href=\"https://www.linkedin.com/in/eduardo-rangel-eddybel/\" target=\"_blank\">\n    <img alt=\"LinkedIn\" src=\"https://img.shields.io/badge/linkedin-%230077B5.svg?&style=for-the-badge&logo=linkedin&logoColor=white\" />\n  </a> \n</p>\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "This project is a simple library to color text in the terminal with python.",
    "version": "1.5.0",
    "project_urls": {
        "Download": "https://github.com/EddyBel/CodeChroma",
        "Homepage": "https://github.com/EddyBel/CodeChroma"
    },
    "split_keywords": [
        "colors",
        "syntax",
        "terminal",
        "markdown"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "999a53bbe8c4868693e6bf697e3e7020ca8c0f6b116cf49cf61f9908349b77df",
                "md5": "a5afd6378982d0c828c12e2806ac0166",
                "sha256": "e18dddc356e999b91165b937423bbf49e935733abea047c598fd001828341a5b"
            },
            "downloads": -1,
            "filename": "CodeChroma-1.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a5afd6378982d0c828c12e2806ac0166",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 8989,
            "upload_time": "2023-08-18T03:58:55",
            "upload_time_iso_8601": "2023-08-18T03:58:55.610437Z",
            "url": "https://files.pythonhosted.org/packages/99/9a/53bbe8c4868693e6bf697e3e7020ca8c0f6b116cf49cf61f9908349b77df/CodeChroma-1.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-18 03:58:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "EddyBel",
    "github_project": "CodeChroma",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "codechroma"
}
        
Elapsed time: 0.14998s