Name | inksplash JSON |
Version |
1.0.4
JSON |
| download |
home_page | None |
Summary | This is a Python package that provides a versatile set of utilities for colorizing and styling text output in terminal environments. |
upload_time | 2024-04-08 07:06:06 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | MIT License Copyright (c) 2024 crispengari Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
inksplash
colors
chameleon
console
styling
text-formatting
cli
ansi
print
text-decoration
|
VCS |
|
bugtrack_url |
|
requirements |
alabaster
Babel
build
certifi
charset-normalizer
colorama
docutils
idna
imagesize
iniconfig
Jinja2
MarkupSafe
packaging
pluggy
Pygments
pyproject_hooks
pytest
requests
snowballstemmer
Sphinx
sphinx-rtd-theme
sphinxcontrib-applehelp
sphinxcontrib-devhelp
sphinxcontrib-htmlhelp
sphinxcontrib-jquery
sphinxcontrib-jsmath
sphinxcontrib-qthelp
sphinxcontrib-serializinghtml
urllib3
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
### inksplash
`inksplash` is a Python package that provides a versatile set of utilities for colorizing and styling text output in terminal environments.
<p align="center"><img src="https://github.com/CrispenGari/inksplash/blob/main/logo.png?raw=true" width="200" alt="logo"/></p>
---
<p align="center">
<a href="https://pypi.python.org/pypi/inksplash"><img src="https://badge.fury.io/py/inksplash.svg"></a>
<a href="https://github.com/crispengari/inksplash/actions/workflows/ci.yml"><img src="https://github.com/crispengari/inksplash/actions/workflows/ci.yml/badge.svg"></a>
<a href="/LICENSE"><img src="https://img.shields.io/badge/license-MIT-green"></a>
<a href="https://pypi.python.org/pypi/inksplash"><img src="https://img.shields.io/pypi/pyversions/inksplash.svg"></a>
</p>
### Table of Contents
- [inksplash](#inksplash)
- [Table of Contents](#table-of-contents)
- [Installation](#installation)
- [Usage](#usage)
- [Features](#features)
- [Available styles and functions](#available-styles-and-functions)
- [1. Basics](#1-basics)
- [2. Text Styles](#2-text-styles)
- [3. Bright Text Colors](#3-bright-text-colors)
- [4. Background Color](#4-background-color)
- [5. Bright background styles](#5-bright-background-styles)
- [Docs](#docs)
- [Contributing](#contributing)
- [License](#license)
### Installation
You can install `inksplash` via pip:
```bash
pip install inksplash
```
### Usage
First, you need to import the `chameleon` module from the `inksplash` package:
```py
from inksplash import chameleon
print(chameleon.bg_bright_green(chameleon.italic(chameleon.black("Hello world"))))
```
Output:
<p align="center"><img src="https://github.com/CrispenGari/inksplash/blob/main/images/demo.jpg?raw=true" alt="demo" with="300"/></p>
This example demonstrates how to use `chameleon` functions from `inksplash` to colorize and style text output. In this case, it applies a bright green background, italic style, and black text color to the string "Hello world".
### Features
- Easy-to-use API for applying various text styles and colors.
- Supports a wide range of styling options, including bold, italic, underline, foreground and background colors, etc.
- Compatible with ANSI terminal escape sequences, ensuring compatibility across different terminal emulators and platforms.
### Available styles and functions
The following are the functions that are available for text styles and colors.
#### 1. Basics
---
1. **`blue`**
Applies a blue color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with blue color.
---
2. **`green`**
Applies a green color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with green color.
---
3. **`yellow`**
Applies a yellow color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with yellow color.
---
4. **`white`**
Applies a white color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with white color.
---
5. **`purple`**
Applies a purple color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with purple color.
---
6. **`red`**
Applies a red color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with red color.
---
7. **`cyan`**
Applies a cyan color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with cyan color.
---
8. **`black`**
Applies a black color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with black color.
---
#### 2. Text Styles
1. **`bold`**
Applies bold style to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with bold style.
---
2. **`underline`**
Applies underline style to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with underline style.
---
3. **`italic`**
Applies italic style to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with italic style.
---
4. **`strikethrough`**
Applies strikethrough style to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with strikethrough style.
---
#### 3. Bright Text Colors
1. **`bright_black`**
Applies a bright black color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with bright black color.
---
2. **`bright_red`**
Applies a bright red color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with bright red color.
---
3. **`bright_green`**
Applies a bright green color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with bright green color.
---
4. **`bright_yellow`**
Applies a bright yellow color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with bright yellow color.
---
5. **`bright_blue`**
Applies a bright blue color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with bright blue color.
---
6. **`bright_purple`**
Applies a bright purple color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with bright purple color.
---
7. **`bright_cyan`**
Applies a bright cyan color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with bright cyan color.
---
8. **`bright_white`**
Applies a bright white color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with bright white color.
---
#### 4. Background Color
1. **`bg_black`**
Applies a black background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with black background color.
---
2. **`bg_red`**
Applies a red background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with red background color.
---
3. **`bg_green`**
Applies a green background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with green background color.
---
4. **`bg_yellow`**
Applies a yellow background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with yellow background color.
---
5. **`bg_blue`**
Applies a blue background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with a blue background color.
---
6. **`bg_purple`**
Applies a purple background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with a purple background color.
---
7. **`bg_cyan`**
Applies a cyan background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with a cyan background color.
---
8. **`bg_white`**
Applies a white background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with a white background color.
---
#### 5. Bright background styles
1. **`bg_bright_black`**
Applies a bright black background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with a bright black background color.
---
2. **`bg_bright_red`**
Applies a bright red background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with a bright red background color.
---
3. **`bg_bright_green`**
Applies a bright green background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with a bright green background color.
---
4. **`bg_bright_yellow`**
Applies a bright yellow background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with a bright yellow background color.
---
5. **`bg_bright_blue`**
Applies a bright blue background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with a bright blue background color.
---
6. **`bg_bright_purple`**
Applies a bright purple background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with a bright purple background color.
---
7. **`bg_bright_cyan`**
Applies a bright cyan background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with a bright cyan background color.
---
8. **`bg_bright_white`**
Applies a bright white background color to the text.
**Parameters:**
- `value` (str): The input text.
**Returns:**
- str: The input text with a bright white background color.
#### Docs
You can read more in the [documentation](https://inksplash.readthedocs.io/en/latest/index.html).
### Contributing
Contributions to `inksplash` are welcome! Feel free to submit bug reports, feature requests, or pull requests on [GitHub](https://github.com/CrispenGari/inksplash).
### License
This project is licensed under the MIT License - see the [LICENSE](/LISENSE) file for details.
Raw data
{
"_id": null,
"home_page": null,
"name": "inksplash",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "inksplash, colors, chameleon, console, styling, text-formatting, CLI, ANSI, print, text-decoration",
"author": null,
"author_email": "Crispen Gari <crispengari@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/3f/9f/665d325af9c15bc66214229e95e334c52416ff1e970b9cd7274f8fa27c64/inksplash-1.0.4.tar.gz",
"platform": null,
"description": "### inksplash\n\n`inksplash` is a Python package that provides a versatile set of utilities for colorizing and styling text output in terminal environments.\n\n<p align=\"center\"><img src=\"https://github.com/CrispenGari/inksplash/blob/main/logo.png?raw=true\" width=\"200\" alt=\"logo\"/></p>\n\n---\n\n<p align=\"center\">\n <a href=\"https://pypi.python.org/pypi/inksplash\"><img src=\"https://badge.fury.io/py/inksplash.svg\"></a>\n <a href=\"https://github.com/crispengari/inksplash/actions/workflows/ci.yml\"><img src=\"https://github.com/crispengari/inksplash/actions/workflows/ci.yml/badge.svg\"></a>\n <a href=\"/LICENSE\"><img src=\"https://img.shields.io/badge/license-MIT-green\"></a>\n <a href=\"https://pypi.python.org/pypi/inksplash\"><img src=\"https://img.shields.io/pypi/pyversions/inksplash.svg\"></a>\n</p>\n\n### Table of Contents\n\n- [inksplash](#inksplash)\n- [Table of Contents](#table-of-contents)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Features](#features)\n- [Available styles and functions](#available-styles-and-functions)\n - [1. Basics](#1-basics)\n - [2. Text Styles](#2-text-styles)\n - [3. Bright Text Colors](#3-bright-text-colors)\n - [4. Background Color](#4-background-color)\n - [5. Bright background styles](#5-bright-background-styles)\n - [Docs](#docs)\n- [Contributing](#contributing)\n- [License](#license)\n\n### Installation\n\nYou can install `inksplash` via pip:\n\n```bash\npip install inksplash\n```\n\n### Usage\n\nFirst, you need to import the `chameleon` module from the `inksplash` package:\n\n```py\nfrom inksplash import chameleon\nprint(chameleon.bg_bright_green(chameleon.italic(chameleon.black(\"Hello world\"))))\n```\n\nOutput:\n\n<p align=\"center\"><img src=\"https://github.com/CrispenGari/inksplash/blob/main/images/demo.jpg?raw=true\" alt=\"demo\" with=\"300\"/></p>\n\nThis example demonstrates how to use `chameleon` functions from `inksplash` to colorize and style text output. In this case, it applies a bright green background, italic style, and black text color to the string \"Hello world\".\n\n### Features\n\n- Easy-to-use API for applying various text styles and colors.\n- Supports a wide range of styling options, including bold, italic, underline, foreground and background colors, etc.\n- Compatible with ANSI terminal escape sequences, ensuring compatibility across different terminal emulators and platforms.\n\n### Available styles and functions\n\nThe following are the functions that are available for text styles and colors.\n\n#### 1. Basics\n\n---\n\n1. **`blue`**\n\n Applies a blue color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with blue color.\n\n---\n\n2. **`green`**\n\n Applies a green color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with green color.\n\n---\n\n3. **`yellow`**\n\n Applies a yellow color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with yellow color.\n\n---\n\n4. **`white`**\n\n Applies a white color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with white color.\n\n---\n\n5. **`purple`**\n\n Applies a purple color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with purple color.\n\n---\n\n6. **`red`**\n\n Applies a red color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with red color.\n\n---\n\n7. **`cyan`**\n\n Applies a cyan color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with cyan color.\n\n---\n\n8. **`black`**\n\n Applies a black color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with black color.\n\n---\n\n#### 2. Text Styles\n\n1. **`bold`**\n\n Applies bold style to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with bold style.\n\n---\n\n2. **`underline`**\n\n Applies underline style to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with underline style.\n\n---\n\n3. **`italic`**\n\n Applies italic style to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with italic style.\n\n---\n\n4. **`strikethrough`**\n\nApplies strikethrough style to the text.\n\n**Parameters:**\n\n- `value` (str): The input text.\n\n**Returns:**\n\n- str: The input text with strikethrough style.\n\n---\n\n#### 3. Bright Text Colors\n\n1. **`bright_black`**\n\n Applies a bright black color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with bright black color.\n\n---\n\n2. **`bright_red`**\n\n Applies a bright red color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with bright red color.\n\n---\n\n3. **`bright_green`**\n\n Applies a bright green color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with bright green color.\n\n---\n\n4. **`bright_yellow`**\n\n Applies a bright yellow color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with bright yellow color.\n\n---\n\n5. **`bright_blue`**\n\n Applies a bright blue color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with bright blue color.\n\n---\n\n6. **`bright_purple`**\n\n Applies a bright purple color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with bright purple color.\n\n---\n\n7. **`bright_cyan`**\n\n Applies a bright cyan color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with bright cyan color.\n\n---\n\n8. **`bright_white`**\n\n Applies a bright white color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with bright white color.\n\n---\n\n#### 4. Background Color\n\n1. **`bg_black`**\n\n Applies a black background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with black background color.\n\n---\n\n2. **`bg_red`**\n\n Applies a red background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with red background color.\n\n---\n\n3. **`bg_green`**\n\n Applies a green background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with green background color.\n\n---\n\n4. **`bg_yellow`**\n\n Applies a yellow background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with yellow background color.\n\n---\n\n5. **`bg_blue`**\n\n Applies a blue background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with a blue background color.\n\n---\n\n6. **`bg_purple`**\n\n Applies a purple background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with a purple background color.\n\n---\n\n7. **`bg_cyan`**\n\n Applies a cyan background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with a cyan background color.\n\n---\n\n8. **`bg_white`**\n\n Applies a white background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with a white background color.\n\n---\n\n#### 5. Bright background styles\n\n1. **`bg_bright_black`**\n\n Applies a bright black background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with a bright black background color.\n\n---\n\n2. **`bg_bright_red`**\n\n Applies a bright red background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with a bright red background color.\n\n---\n\n3. **`bg_bright_green`**\n\n Applies a bright green background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with a bright green background color.\n\n---\n\n4. **`bg_bright_yellow`**\n\n Applies a bright yellow background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with a bright yellow background color.\n\n---\n\n5. **`bg_bright_blue`**\n\n Applies a bright blue background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with a bright blue background color.\n\n---\n\n6. **`bg_bright_purple`**\n\n Applies a bright purple background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with a bright purple background color.\n\n---\n\n7. **`bg_bright_cyan`**\n\n Applies a bright cyan background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with a bright cyan background color.\n\n---\n\n8. **`bg_bright_white`**\n\n Applies a bright white background color to the text.\n\n **Parameters:**\n\n - `value` (str): The input text.\n\n **Returns:**\n\n - str: The input text with a bright white background color.\n\n#### Docs\n\nYou can read more in the [documentation](https://inksplash.readthedocs.io/en/latest/index.html).\n\n### Contributing\n\nContributions to `inksplash` are welcome! Feel free to submit bug reports, feature requests, or pull requests on [GitHub](https://github.com/CrispenGari/inksplash).\n\n### License\n\nThis project is licensed under the MIT License - see the [LICENSE](/LISENSE) file for details.\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2024 crispengari Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
"summary": "This is a Python package that provides a versatile set of utilities for colorizing and styling text output in terminal environments.",
"version": "1.0.4",
"project_urls": {
"changelog": "https://github.com/CrispenGari/inksplash/blob/main/CHANGELOG.md",
"documentation": "https://github.com/CrispenGari/inksplash/blob/main/README.md",
"homepage": "https://github.com/CrispenGari/inksplash",
"issues": "https://github.com/CrispenGari/inksplash/issues",
"repository": "https://github.com/CrispenGari/inksplash"
},
"split_keywords": [
"inksplash",
" colors",
" chameleon",
" console",
" styling",
" text-formatting",
" cli",
" ansi",
" print",
" text-decoration"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "935e8ee3773e12b331e0d14af7a9cd0d69abbc6f48fecd3e9593e4556ed7268c",
"md5": "06669a896dbdbca516f9b852b25359f6",
"sha256": "96a20b686d50acaf7e6b9886bb9e6e3346e681382c3db77410b8b5001bf84221"
},
"downloads": -1,
"filename": "inksplash-1.0.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "06669a896dbdbca516f9b852b25359f6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 6228,
"upload_time": "2024-04-08T07:06:05",
"upload_time_iso_8601": "2024-04-08T07:06:05.415913Z",
"url": "https://files.pythonhosted.org/packages/93/5e/8ee3773e12b331e0d14af7a9cd0d69abbc6f48fecd3e9593e4556ed7268c/inksplash-1.0.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3f9f665d325af9c15bc66214229e95e334c52416ff1e970b9cd7274f8fa27c64",
"md5": "61fb8bd7201d49c5d8f0224a111c728d",
"sha256": "b256adf568da83c481829f70033c0f6eb4e87a18988d56238b5fbba33c0066e8"
},
"downloads": -1,
"filename": "inksplash-1.0.4.tar.gz",
"has_sig": false,
"md5_digest": "61fb8bd7201d49c5d8f0224a111c728d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 64416,
"upload_time": "2024-04-08T07:06:06",
"upload_time_iso_8601": "2024-04-08T07:06:06.859605Z",
"url": "https://files.pythonhosted.org/packages/3f/9f/665d325af9c15bc66214229e95e334c52416ff1e970b9cd7274f8fa27c64/inksplash-1.0.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-04-08 07:06:06",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "CrispenGari",
"github_project": "inksplash",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "alabaster",
"specs": [
[
"==",
"0.7.16"
]
]
},
{
"name": "Babel",
"specs": [
[
"==",
"2.14.0"
]
]
},
{
"name": "build",
"specs": [
[
"==",
"1.0.3"
]
]
},
{
"name": "certifi",
"specs": [
[
"==",
"2024.2.2"
]
]
},
{
"name": "charset-normalizer",
"specs": [
[
"==",
"3.3.2"
]
]
},
{
"name": "colorama",
"specs": [
[
"==",
"0.4.6"
]
]
},
{
"name": "docutils",
"specs": [
[
"==",
"0.20.1"
]
]
},
{
"name": "idna",
"specs": [
[
"==",
"3.6"
]
]
},
{
"name": "imagesize",
"specs": [
[
"==",
"1.4.1"
]
]
},
{
"name": "iniconfig",
"specs": [
[
"==",
"2.0.0"
]
]
},
{
"name": "Jinja2",
"specs": [
[
"==",
"3.1.3"
]
]
},
{
"name": "MarkupSafe",
"specs": [
[
"==",
"2.1.5"
]
]
},
{
"name": "packaging",
"specs": [
[
"==",
"23.2"
]
]
},
{
"name": "pluggy",
"specs": [
[
"==",
"1.4.0"
]
]
},
{
"name": "Pygments",
"specs": [
[
"==",
"2.17.2"
]
]
},
{
"name": "pyproject_hooks",
"specs": [
[
"==",
"1.0.0"
]
]
},
{
"name": "pytest",
"specs": [
[
"==",
"8.0.0"
]
]
},
{
"name": "requests",
"specs": [
[
"==",
"2.31.0"
]
]
},
{
"name": "snowballstemmer",
"specs": [
[
"==",
"2.2.0"
]
]
},
{
"name": "Sphinx",
"specs": [
[
"==",
"7.2.6"
]
]
},
{
"name": "sphinx-rtd-theme",
"specs": [
[
"==",
"2.0.0"
]
]
},
{
"name": "sphinxcontrib-applehelp",
"specs": [
[
"==",
"1.0.8"
]
]
},
{
"name": "sphinxcontrib-devhelp",
"specs": [
[
"==",
"1.0.6"
]
]
},
{
"name": "sphinxcontrib-htmlhelp",
"specs": [
[
"==",
"2.0.5"
]
]
},
{
"name": "sphinxcontrib-jquery",
"specs": [
[
"==",
"4.1"
]
]
},
{
"name": "sphinxcontrib-jsmath",
"specs": [
[
"==",
"1.0.1"
]
]
},
{
"name": "sphinxcontrib-qthelp",
"specs": [
[
"==",
"1.0.7"
]
]
},
{
"name": "sphinxcontrib-serializinghtml",
"specs": [
[
"==",
"1.1.10"
]
]
},
{
"name": "urllib3",
"specs": [
[
"==",
"2.2.1"
]
]
}
],
"lcname": "inksplash"
}