new-print-lib


Namenew-print-lib JSON
Version 1.0.2 PyPI version JSON
download
home_pageNone
SummaryThe New Python Print Function.
upload_time2025-01-01 10:21:11
maintainerNone
docs_urlNone
authorNone
requires_python>=3.0
licenseNone
keywords new print color print background color font style foreground color terminal color
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# The New Python Print Function

**The New Python Print Function** is a Python library that extends the functionality of the built-in `print` function by adding support for specifying foreground colors, background colors, and font styles directly. These features are implemented internally using ANSI escape sequences.

## Table of Contents

- [Installation](#installation)
- [Usage](#usage)
- [Features](#features)
  - [Supported Colors](#supported-colors)
  - [Supported Font Styles](#supported-font-styles)
- [Contributing](#contributing)
- [License](#license)
- [Author](#author)

## Installation

Install the package using `pip`:

```bash
pip install nprint
```

Or:

```bash
python3 -m pip install nprint
```

---

## Usage

Here’s how you can use the `nprint` function:

```python
import nprint

# Print regular text
nprint("Hello, world!")

# Print text with a red foreground
nprint("Hello, world!", fg="red")

# Print text with a yellow background
nprint("Hello, world!", bg="yellow")

# Print bold text
nprint("Hello, world!", fs="bold")

# Combine options: red foreground, yellow background, bold font
nprint("Hello, world!", fg="red", bg="yellow", fs="bold")
```

### Function Signature

The `nprint` function signature is as follows:

```python
nprint(*objects, sep=' ', end='\n', file=None, flush=False, fg=None, bg=None, fs=None)
```

- **`fg`**: Specifies the foreground color.
- **`bg`**: Specifies the background color.
- **`fs`**: Specifies the font style.

---

## Features

- **Extended `print` functionality**: Maintain all capabilities of the standard `print` function with added color and style options.
- **141 Colors Supported**: Apply any HTML-supported color to text or background.
- **11 Font Styles**: Customize the appearance of your text with various font styles.
- **Developer-Friendly**: Auto-completion support for IDEs simplifies usage by listing available options.

### Supported Colors

The color names are derived from valid HTML color names, ensuring a familiar and intuitive experience.

#### Blues

1. <p style="background-color: cyan; color: black;">cyan</p>
2. <p style="background-color: aqua; color: black;">aqua</p>
3. <p style="background-color: lightcyan; color: black;">light-cyan</p>
4. <p style="background-color: paleturquoise; color: black;">pale-turquoise</p>
5. <p style="background-color: aquamarine; color: black;">aquamarine</p>
6. <p style="background-color: turquoise; color: black;">turquoise</p>
7. <p style="background-color: mediumturquoise; color: black;">medium-turquoise</p>
8. <p style="background-color: darkturquoise; color: black;">dark-turquoise</p>
9. <p style="background-color: cadetblue; color: black;">cadet-blue</p>
10. <p style="background-color: steelblue; color: black;">steel-blue</p>
11. <p style="background-color: lightsteelblue; color: black;">light-steel-blue</p>
12. <p style="background-color: powderblue; color: black;">powder-blue</p>
13. <p style="background-color: lightblue; color: black;">light-blue</p>
14. <p style="background-color: skyblue; color: black;">sky-blue</p>
15. <p style="background-color: lightskyblue; color: black;">light-sky-blue</p>
16. <p style="background-color: deepskyblue; color: black;">deep-sky-blue</p>
17. <p style="background-color: dodgerblue; color: black;">dodger-blue</p>
18. <p style="background-color: cornflowerblue; color: black;">cornflower-blue</p>
19. <p style="background-color: mediumslateblue; color: black;">medium-slate-blue</p>
20. <p style="background-color: royalblue; color: black;">royal-blue</p>
21. <p style="background-color: blue; color: black;">blue</p>
22. <p style="background-color: mediumblue; color: black;">medium-blue</p>
23. <p style="background-color: darkblue; color: black;">dark-blue</p>
24. <p style="background-color: navy; color: black;">navy</p>
25. <p style="background-color: midnightblue; color: black;">midnight-blue</p>

#### Browns
26. <p style="background-color: cornsilk; color: black;">cornsilk</p>
27. <p style="background-color: blanchedalmond; color: black;">blanched-almond</p>
28. <p style="background-color: bisque; color: black;">bisque</p>
29. <p style="background-color: navajowhite; color: black;">navajo-white</p>
30. <p style="background-color: wheat; color: black;">wheat</p>
31. <p style="background-color: burlywood; color: black;">burly-wood</p>
32. <p style="background-color: tan; color: black;">tan</p>
33. <p style="background-color: rosybrown; color: black;">rosy-brown</p>
34. <p style="background-color: sandybrown; color: black;">sandy-brown</p>
35. <p style="background-color: goldenrod; color: black;">goldenrod</p>
36. <p style="background-color: darkgoldenrod; color: black;">dark-goldenrod</p>
37. <p style="background-color: peru; color: black;">peru</p>
38. <p style="background-color: chocolate; color: black;">chocolate</p>
39. <p style="background-color: saddlebrown; color: black;">saddle-brown</p>
40. <p style="background-color: sienna; color: black;">sienna</p>
41. <p style="background-color: maroon; color: black;">maroon</p>
42. <p style="background-color: brown; color: black;">brown</p>

#### Greens
43. <p style="background-color: greenyellow; color: black;">green-yellow</p>
44. <p style="background-color: chartreuse; color: black;">chartreuse</p>
45. <p style="background-color: lawngreen; color: black;">lawn-green</p>
46. <p style="background-color: lime; color: black;">lime</p>
47. <p style="background-color: limegreen; color: black;">lime-green</p>
48. <p style="background-color: palegreen; color: black;">pale-green</p>
49. <p style="background-color: lightgreen; color: black;">light-green</p>
50. <p style="background-color: mediumspringgreen; color: black;">medium-spring-green</p>
51. <p style="background-color: springgreen; color: black;">spring-green</p>
52. <p style="background-color: mediumseagreen; color: black;">medium-sea-green</p>
53. <p style="background-color: seagreen; color: black;">sea-green</p>
54. <p style="background-color: forestgreen; color: black;">forest-green</p>
55. <p style="background-color: green; color: black;">green</p>
56. <p style="background-color: darkgreen; color: black;">dark-green</p>
57. <p style="background-color: yellowgreen; color: black;">yellow-green</p>
58. <p style="background-color: olivedrab; color: black;">olive-drab</p>
59. <p style="background-color: olive; color: black;">olive</p>
60. <p style="background-color: darkolivegreen; color: black;">dark-olive-green</p>
61. <p style="background-color: mediumaquamarine; color: black;">medium-aquamarine</p>
62. <p style="background-color: darkseagreen; color: black;">dark-sea-green</p>
63. <p style="background-color: lightseagreen; color: black;">light-sea-green</p>
64. <p style="background-color: darkcyan; color: black;">dark-cyan</p>
65. <p style="background-color: teal; color: black;">teal</p>

#### Greys
66. <p style="background-color: gainsboro; color: black;">gainsboro</p>
67. <p style="background-color: lightgrey; color: black;">light-grey</p>
68. <p style="background-color: silver; color: black;">silver</p>
69. <p style="background-color: darkgrey; color: black;">dark-grey</p>
70. <p style="background-color: grey; color: black;">grey</p>
71. <p style="background-color: dimgrey; color: black;">dim-grey</p>
72. <p style="background-color: lightslategrey; color: black;">light-slate-grey</p>
73. <p style="background-color: slategrey; color: black;">slate-grey</p>
74. <p style="background-color: darkslategrey; color: black;">dark-slate-grey</p>
75. <p style="background-color: black; color: white;">black</p>

#### Oranges
76. <p style="background-color: lightsalmon; color: black;">light-salmon</p>
77. <p style="background-color: coral; color: black;">coral</p>
78. <p style="background-color: tomato; color: black;">tomato</p>
79. <p style="background-color: orangered; color: black;">orange-red</p>
80. <p style="background-color: darkorange; color: black;">dark-orange</p>
81. <p style="background-color: orange; color: black;">orange</p>

#### Pinks
82. <p style="background-color: pink; color: black;">pink</p>
83. <p style="background-color: lightpink; color: black;">light-pink</p>
84. <p style="background-color: hotpink; color: black;">hot-pink</p>
85. <p style="background-color: deeppink; color: black;">deep-pink</p>
86. <p style="background-color: mediumvioletred; color: black;">medium-violet-red</p>
87. <p style="background-color: palevioletred; color: black;">pale-violet-red</p>

#### Purples
88. <p style="background-color: lavender; color: black;">lavender</p>
89. <p style="background-color: thistle; color: black;">thistle</p>
90. <p style="background-color: plum; color: black;">plum</p>
91. <p style="background-color: violet; color: black;">violet</p>
92. <p style="background-color: orchid; color: black;">orchid</p>
93. <p style="background-color: magenta; color: black;">magenta</p>
94. <p style="background-color: mediumorchid; color: black;">medium-orchid</p>
95. <p style="background-color: mediumpurple; color: black;">medium-purple</p>
96. <p style="background-color: blueviolet; color: black;">blue-violet</p>
97. <p style="background-color: darkviolet; color: black;">dark-violet</p>
98. <p style="background-color: darkorchid; color: black;">dark-orchid</p>
99. <p style="background-color: darkmagenta; color: black;">dark-magenta</p>
100. <p style="background-color: purple; color: black;">purple</p>
101. <p style="background-color: rebeccapurple; color: black;">rebecca-purple</p>
102. <p style="background-color: indigo; color: black;">indigo</p>
103. <p style="background-color: slateblue; color: black;">slate-blue</p>
104. <p style="background-color: darkslateblue; color: black;">dark-slate-blue</p>

#### Reds
105. <p style="background-color: indianred; color: black;">indian-red</p>
106. <p style="background-color: lightcoral; color: black;">light-coral</p>
107. <p style="background-color: salmon; color: black;">salmon</p>
108. <p style="background-color: darksalmon; color: black;">dark-salmon</p>
109. <p style="background-color: lightsalmon; color: black;">light-salmon</p>
110. <p style="background-color: crimson; color: black;">crimson</p>
111. <p style="background-color: red; color: black;">red</p>
112. <p style="background-color: firebrick; color: black;">fire-brick</p>
113. <p style="background-color: darkred; color: black;">dark-red</p>

#### Whites
114. <p style="background-color: white; color: black;">white</p>
115. <p style="background-color: snow; color: black;">snow</p>
116. <p style="background-color: honeydew; color: black;">honeydew</p>
117. <p style="background-color: mintcream; color: black;">mint-cream</p>
118. <p style="background-color: azure; color: black;">azure</p>
119. <p style="background-color: aliceblue; color: black;">alice-blue</p>
120. <p style="background-color: ghostwhite; color: black;">ghost-white</p>
121. <p style="background-color: whitesmoke; color: black;">white-smoke</p>
122. <p style="background-color: seashell; color: black;">seashell</p>
123. <p style="background-color: beige; color: black;">beige</p>
124. <p style="background-color: oldlace; color: black;">old-lace</p>
125. <p style="background-color: floralwhite; color: black;">floral-white</p>
126. <p style="background-color: ivory; color: black;">ivory</p>
127. <p style="background-color: antiquewhite; color: black;">antique-white</p>
128. <p style="background-color: linen; color: black;">linen</p>
129. <p style="background-color: lavenderblush; color: black;">lavender-blush</p>
130. <p style="background-color: mistyrose; color: black;">misty-rose</p>

#### Yellows
131. <p style="background-color: gold; color: black;">gold</p>
132. <p style="background-color: yellow; color: black;">yellow</p>
133. <p style="background-color: lightyellow; color: black;">light-yellow</p>
134. <p style="background-color: lemonchiffon; color: black;">lemon-chiffon</p>
135. <p style="background-color: lightgoldenrodyellow; color: black;">light-goldenrod-yellow</p>
136. <p style="background-color: papayawhip; color: black;">papaya-whip</p>
137. <p style="background-color: moccasin; color: black;">moccasin</p>
138. <p style="background-color: peachpuff; color: black;">peach-puff</p>
139. <p style="background-color: palegoldenrod; color: black;">pale-goldenrod</p>
140. <p style="background-color: khaki; color: black;">khaki</p>
141. <p style="background-color: darkkhaki; color: black;">dark-khaki</p>

### Supported Font Styles
1. <p style="font-weight: bold;">bold</p>
2. <p style="opacity: 0.5;">dim</p>
3. <p><i>italic</i></p>
4. <p><u>underline</u></p>
5. <p style="opacity: 0.78;">dim</p>
6. <p style="background-color: black; color:white; display: inline-block;">&nbsp;inverse&nbsp;</p>
7. <p style="opacity: 0.1;">hidden</p>
8. <p style="text-decoration: line-through;">strikethrough</p>
9. <p style="text-decoration: underline double;">double-underline</p>
10. <p style="border: solid black 1px; display: inline-block;">&nbsp;frame&nbsp;</p>
11. <p style="text-decoration: overline;">overline</p>

---

## Contributing

We welcome contributions! To contribute:

1. Fork the repository.
2. Create a new branch for your feature or fix.
3. Commit and push your changes.
4. Open a pull request.

For significant changes, please open an issue first to discuss your proposal.

---

## License

### MIT License

**Copyright** (c) 2024 Haripo Wesley T.\
**Email**: haripowesleyt@proton.me\
**GitHub**: https://github.com/haripowesleyt

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:

1. The above copyright notice and this permission notice shall be included in all
   copies or substantial portions of the Software.

2. 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.

---

## Author

- **Haripo Wesley T.**
  - **Email**: [haripowesleyt@proton.me](mailto:haripowesleyt@proton.me)
  - **GitHub**: [haripowesleyt](https://github.com/haripowesleyt)

---

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "new-print-lib",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.0",
    "maintainer_email": "\"Haripo Wesley T.\" <haripowesleyt@proton.me>",
    "keywords": "new print, color print, background color, font style, foreground color, terminal color",
    "author": null,
    "author_email": "\"Haripo Wesley T.\" <haripowesleyt@proton.me>",
    "download_url": "https://files.pythonhosted.org/packages/dc/af/48ad26da3a276e18426f1900b51bad6d29c03dfb68b0e7e572136b89a3d0/new_print_lib-1.0.2.tar.gz",
    "platform": null,
    "description": "\n# The New Python Print Function\n\n**The New Python Print Function** is a Python library that extends the functionality of the built-in `print` function by adding support for specifying foreground colors, background colors, and font styles directly. These features are implemented internally using ANSI escape sequences.\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Usage](#usage)\n- [Features](#features)\n  - [Supported Colors](#supported-colors)\n  - [Supported Font Styles](#supported-font-styles)\n- [Contributing](#contributing)\n- [License](#license)\n- [Author](#author)\n\n## Installation\n\nInstall the package using `pip`:\n\n```bash\npip install nprint\n```\n\nOr:\n\n```bash\npython3 -m pip install nprint\n```\n\n---\n\n## Usage\n\nHere\u2019s how you can use the `nprint` function:\n\n```python\nimport nprint\n\n# Print regular text\nnprint(\"Hello, world!\")\n\n# Print text with a red foreground\nnprint(\"Hello, world!\", fg=\"red\")\n\n# Print text with a yellow background\nnprint(\"Hello, world!\", bg=\"yellow\")\n\n# Print bold text\nnprint(\"Hello, world!\", fs=\"bold\")\n\n# Combine options: red foreground, yellow background, bold font\nnprint(\"Hello, world!\", fg=\"red\", bg=\"yellow\", fs=\"bold\")\n```\n\n### Function Signature\n\nThe `nprint` function signature is as follows:\n\n```python\nnprint(*objects, sep=' ', end='\\n', file=None, flush=False, fg=None, bg=None, fs=None)\n```\n\n- **`fg`**: Specifies the foreground color.\n- **`bg`**: Specifies the background color.\n- **`fs`**: Specifies the font style.\n\n---\n\n## Features\n\n- **Extended `print` functionality**: Maintain all capabilities of the standard `print` function with added color and style options.\n- **141 Colors Supported**: Apply any HTML-supported color to text or background.\n- **11 Font Styles**: Customize the appearance of your text with various font styles.\n- **Developer-Friendly**: Auto-completion support for IDEs simplifies usage by listing available options.\n\n### Supported Colors\n\nThe color names are derived from valid HTML color names, ensuring a familiar and intuitive experience.\n\n#### Blues\n\n1. <p style=\"background-color: cyan; color: black;\">cyan</p>\n2. <p style=\"background-color: aqua; color: black;\">aqua</p>\n3. <p style=\"background-color: lightcyan; color: black;\">light-cyan</p>\n4. <p style=\"background-color: paleturquoise; color: black;\">pale-turquoise</p>\n5. <p style=\"background-color: aquamarine; color: black;\">aquamarine</p>\n6. <p style=\"background-color: turquoise; color: black;\">turquoise</p>\n7. <p style=\"background-color: mediumturquoise; color: black;\">medium-turquoise</p>\n8. <p style=\"background-color: darkturquoise; color: black;\">dark-turquoise</p>\n9. <p style=\"background-color: cadetblue; color: black;\">cadet-blue</p>\n10. <p style=\"background-color: steelblue; color: black;\">steel-blue</p>\n11. <p style=\"background-color: lightsteelblue; color: black;\">light-steel-blue</p>\n12. <p style=\"background-color: powderblue; color: black;\">powder-blue</p>\n13. <p style=\"background-color: lightblue; color: black;\">light-blue</p>\n14. <p style=\"background-color: skyblue; color: black;\">sky-blue</p>\n15. <p style=\"background-color: lightskyblue; color: black;\">light-sky-blue</p>\n16. <p style=\"background-color: deepskyblue; color: black;\">deep-sky-blue</p>\n17. <p style=\"background-color: dodgerblue; color: black;\">dodger-blue</p>\n18. <p style=\"background-color: cornflowerblue; color: black;\">cornflower-blue</p>\n19. <p style=\"background-color: mediumslateblue; color: black;\">medium-slate-blue</p>\n20. <p style=\"background-color: royalblue; color: black;\">royal-blue</p>\n21. <p style=\"background-color: blue; color: black;\">blue</p>\n22. <p style=\"background-color: mediumblue; color: black;\">medium-blue</p>\n23. <p style=\"background-color: darkblue; color: black;\">dark-blue</p>\n24. <p style=\"background-color: navy; color: black;\">navy</p>\n25. <p style=\"background-color: midnightblue; color: black;\">midnight-blue</p>\n\n#### Browns\n26. <p style=\"background-color: cornsilk; color: black;\">cornsilk</p>\n27. <p style=\"background-color: blanchedalmond; color: black;\">blanched-almond</p>\n28. <p style=\"background-color: bisque; color: black;\">bisque</p>\n29. <p style=\"background-color: navajowhite; color: black;\">navajo-white</p>\n30. <p style=\"background-color: wheat; color: black;\">wheat</p>\n31. <p style=\"background-color: burlywood; color: black;\">burly-wood</p>\n32. <p style=\"background-color: tan; color: black;\">tan</p>\n33. <p style=\"background-color: rosybrown; color: black;\">rosy-brown</p>\n34. <p style=\"background-color: sandybrown; color: black;\">sandy-brown</p>\n35. <p style=\"background-color: goldenrod; color: black;\">goldenrod</p>\n36. <p style=\"background-color: darkgoldenrod; color: black;\">dark-goldenrod</p>\n37. <p style=\"background-color: peru; color: black;\">peru</p>\n38. <p style=\"background-color: chocolate; color: black;\">chocolate</p>\n39. <p style=\"background-color: saddlebrown; color: black;\">saddle-brown</p>\n40. <p style=\"background-color: sienna; color: black;\">sienna</p>\n41. <p style=\"background-color: maroon; color: black;\">maroon</p>\n42. <p style=\"background-color: brown; color: black;\">brown</p>\n\n#### Greens\n43. <p style=\"background-color: greenyellow; color: black;\">green-yellow</p>\n44. <p style=\"background-color: chartreuse; color: black;\">chartreuse</p>\n45. <p style=\"background-color: lawngreen; color: black;\">lawn-green</p>\n46. <p style=\"background-color: lime; color: black;\">lime</p>\n47. <p style=\"background-color: limegreen; color: black;\">lime-green</p>\n48. <p style=\"background-color: palegreen; color: black;\">pale-green</p>\n49. <p style=\"background-color: lightgreen; color: black;\">light-green</p>\n50. <p style=\"background-color: mediumspringgreen; color: black;\">medium-spring-green</p>\n51. <p style=\"background-color: springgreen; color: black;\">spring-green</p>\n52. <p style=\"background-color: mediumseagreen; color: black;\">medium-sea-green</p>\n53. <p style=\"background-color: seagreen; color: black;\">sea-green</p>\n54. <p style=\"background-color: forestgreen; color: black;\">forest-green</p>\n55. <p style=\"background-color: green; color: black;\">green</p>\n56. <p style=\"background-color: darkgreen; color: black;\">dark-green</p>\n57. <p style=\"background-color: yellowgreen; color: black;\">yellow-green</p>\n58. <p style=\"background-color: olivedrab; color: black;\">olive-drab</p>\n59. <p style=\"background-color: olive; color: black;\">olive</p>\n60. <p style=\"background-color: darkolivegreen; color: black;\">dark-olive-green</p>\n61. <p style=\"background-color: mediumaquamarine; color: black;\">medium-aquamarine</p>\n62. <p style=\"background-color: darkseagreen; color: black;\">dark-sea-green</p>\n63. <p style=\"background-color: lightseagreen; color: black;\">light-sea-green</p>\n64. <p style=\"background-color: darkcyan; color: black;\">dark-cyan</p>\n65. <p style=\"background-color: teal; color: black;\">teal</p>\n\n#### Greys\n66. <p style=\"background-color: gainsboro; color: black;\">gainsboro</p>\n67. <p style=\"background-color: lightgrey; color: black;\">light-grey</p>\n68. <p style=\"background-color: silver; color: black;\">silver</p>\n69. <p style=\"background-color: darkgrey; color: black;\">dark-grey</p>\n70. <p style=\"background-color: grey; color: black;\">grey</p>\n71. <p style=\"background-color: dimgrey; color: black;\">dim-grey</p>\n72. <p style=\"background-color: lightslategrey; color: black;\">light-slate-grey</p>\n73. <p style=\"background-color: slategrey; color: black;\">slate-grey</p>\n74. <p style=\"background-color: darkslategrey; color: black;\">dark-slate-grey</p>\n75. <p style=\"background-color: black; color: white;\">black</p>\n\n#### Oranges\n76. <p style=\"background-color: lightsalmon; color: black;\">light-salmon</p>\n77. <p style=\"background-color: coral; color: black;\">coral</p>\n78. <p style=\"background-color: tomato; color: black;\">tomato</p>\n79. <p style=\"background-color: orangered; color: black;\">orange-red</p>\n80. <p style=\"background-color: darkorange; color: black;\">dark-orange</p>\n81. <p style=\"background-color: orange; color: black;\">orange</p>\n\n#### Pinks\n82. <p style=\"background-color: pink; color: black;\">pink</p>\n83. <p style=\"background-color: lightpink; color: black;\">light-pink</p>\n84. <p style=\"background-color: hotpink; color: black;\">hot-pink</p>\n85. <p style=\"background-color: deeppink; color: black;\">deep-pink</p>\n86. <p style=\"background-color: mediumvioletred; color: black;\">medium-violet-red</p>\n87. <p style=\"background-color: palevioletred; color: black;\">pale-violet-red</p>\n\n#### Purples\n88. <p style=\"background-color: lavender; color: black;\">lavender</p>\n89. <p style=\"background-color: thistle; color: black;\">thistle</p>\n90. <p style=\"background-color: plum; color: black;\">plum</p>\n91. <p style=\"background-color: violet; color: black;\">violet</p>\n92. <p style=\"background-color: orchid; color: black;\">orchid</p>\n93. <p style=\"background-color: magenta; color: black;\">magenta</p>\n94. <p style=\"background-color: mediumorchid; color: black;\">medium-orchid</p>\n95. <p style=\"background-color: mediumpurple; color: black;\">medium-purple</p>\n96. <p style=\"background-color: blueviolet; color: black;\">blue-violet</p>\n97. <p style=\"background-color: darkviolet; color: black;\">dark-violet</p>\n98. <p style=\"background-color: darkorchid; color: black;\">dark-orchid</p>\n99. <p style=\"background-color: darkmagenta; color: black;\">dark-magenta</p>\n100. <p style=\"background-color: purple; color: black;\">purple</p>\n101. <p style=\"background-color: rebeccapurple; color: black;\">rebecca-purple</p>\n102. <p style=\"background-color: indigo; color: black;\">indigo</p>\n103. <p style=\"background-color: slateblue; color: black;\">slate-blue</p>\n104. <p style=\"background-color: darkslateblue; color: black;\">dark-slate-blue</p>\n\n#### Reds\n105. <p style=\"background-color: indianred; color: black;\">indian-red</p>\n106. <p style=\"background-color: lightcoral; color: black;\">light-coral</p>\n107. <p style=\"background-color: salmon; color: black;\">salmon</p>\n108. <p style=\"background-color: darksalmon; color: black;\">dark-salmon</p>\n109. <p style=\"background-color: lightsalmon; color: black;\">light-salmon</p>\n110. <p style=\"background-color: crimson; color: black;\">crimson</p>\n111. <p style=\"background-color: red; color: black;\">red</p>\n112. <p style=\"background-color: firebrick; color: black;\">fire-brick</p>\n113. <p style=\"background-color: darkred; color: black;\">dark-red</p>\n\n#### Whites\n114. <p style=\"background-color: white; color: black;\">white</p>\n115. <p style=\"background-color: snow; color: black;\">snow</p>\n116. <p style=\"background-color: honeydew; color: black;\">honeydew</p>\n117. <p style=\"background-color: mintcream; color: black;\">mint-cream</p>\n118. <p style=\"background-color: azure; color: black;\">azure</p>\n119. <p style=\"background-color: aliceblue; color: black;\">alice-blue</p>\n120. <p style=\"background-color: ghostwhite; color: black;\">ghost-white</p>\n121. <p style=\"background-color: whitesmoke; color: black;\">white-smoke</p>\n122. <p style=\"background-color: seashell; color: black;\">seashell</p>\n123. <p style=\"background-color: beige; color: black;\">beige</p>\n124. <p style=\"background-color: oldlace; color: black;\">old-lace</p>\n125. <p style=\"background-color: floralwhite; color: black;\">floral-white</p>\n126. <p style=\"background-color: ivory; color: black;\">ivory</p>\n127. <p style=\"background-color: antiquewhite; color: black;\">antique-white</p>\n128. <p style=\"background-color: linen; color: black;\">linen</p>\n129. <p style=\"background-color: lavenderblush; color: black;\">lavender-blush</p>\n130. <p style=\"background-color: mistyrose; color: black;\">misty-rose</p>\n\n#### Yellows\n131. <p style=\"background-color: gold; color: black;\">gold</p>\n132. <p style=\"background-color: yellow; color: black;\">yellow</p>\n133. <p style=\"background-color: lightyellow; color: black;\">light-yellow</p>\n134. <p style=\"background-color: lemonchiffon; color: black;\">lemon-chiffon</p>\n135. <p style=\"background-color: lightgoldenrodyellow; color: black;\">light-goldenrod-yellow</p>\n136. <p style=\"background-color: papayawhip; color: black;\">papaya-whip</p>\n137. <p style=\"background-color: moccasin; color: black;\">moccasin</p>\n138. <p style=\"background-color: peachpuff; color: black;\">peach-puff</p>\n139. <p style=\"background-color: palegoldenrod; color: black;\">pale-goldenrod</p>\n140. <p style=\"background-color: khaki; color: black;\">khaki</p>\n141. <p style=\"background-color: darkkhaki; color: black;\">dark-khaki</p>\n\n### Supported Font Styles\n1. <p style=\"font-weight: bold;\">bold</p>\n2. <p style=\"opacity: 0.5;\">dim</p>\n3. <p><i>italic</i></p>\n4. <p><u>underline</u></p>\n5. <p style=\"opacity: 0.78;\">dim</p>\n6. <p style=\"background-color: black; color:white; display: inline-block;\">&nbsp;inverse&nbsp;</p>\n7. <p style=\"opacity: 0.1;\">hidden</p>\n8. <p style=\"text-decoration: line-through;\">strikethrough</p>\n9. <p style=\"text-decoration: underline double;\">double-underline</p>\n10. <p style=\"border: solid black 1px; display: inline-block;\">&nbsp;frame&nbsp;</p>\n11. <p style=\"text-decoration: overline;\">overline</p>\n\n---\n\n## Contributing\n\nWe welcome contributions! To contribute:\n\n1. Fork the repository.\n2. Create a new branch for your feature or fix.\n3. Commit and push your changes.\n4. Open a pull request.\n\nFor significant changes, please open an issue first to discuss your proposal.\n\n---\n\n## License\n\n### MIT License\n\n**Copyright** (c) 2024 Haripo Wesley T.\\\n**Email**: haripowesleyt@proton.me\\\n**GitHub**: https://github.com/haripowesleyt\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\n1. The above copyright notice and this permission notice shall be included in all\n   copies or substantial portions of the Software.\n\n2. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n   AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n   OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n   SOFTWARE.\n\n---\n\n## Author\n\n- **Haripo Wesley T.**\n  - **Email**: [haripowesleyt@proton.me](mailto:haripowesleyt@proton.me)\n  - **GitHub**: [haripowesleyt](https://github.com/haripowesleyt)\n\n---\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "The New Python Print Function.",
    "version": "1.0.2",
    "project_urls": {
        "Homepage": "https://github.com/pypa/new_print_lib",
        "Issues": "https://github.com/pypa/new_print_lib/issues",
        "Repository": "https://github.com/haripowesleyt/new_print_lib/"
    },
    "split_keywords": [
        "new print",
        " color print",
        " background color",
        " font style",
        " foreground color",
        " terminal color"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "798672a63e34b80c261ee6ae2cdc9aa63f0a90db4ac3ca65c39e3929fc0268c0",
                "md5": "525f4e4d7be25d7b5d4593c30fd59209",
                "sha256": "ee383dd72a880c032ca2655119a8ad89c06c35b665dcd5204c8f94a01b644f29"
            },
            "downloads": -1,
            "filename": "new_print_lib-1.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "525f4e4d7be25d7b5d4593c30fd59209",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.0",
            "size": 16153,
            "upload_time": "2025-01-01T10:21:08",
            "upload_time_iso_8601": "2025-01-01T10:21:08.215492Z",
            "url": "https://files.pythonhosted.org/packages/79/86/72a63e34b80c261ee6ae2cdc9aa63f0a90db4ac3ca65c39e3929fc0268c0/new_print_lib-1.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcaf48ad26da3a276e18426f1900b51bad6d29c03dfb68b0e7e572136b89a3d0",
                "md5": "7e2e536e9c5d3010c0098367d537aade",
                "sha256": "e4af7a3f9495e1a3fb4cb1195910581d0c72c7fbf2320981ce5b722d7d94c227"
            },
            "downloads": -1,
            "filename": "new_print_lib-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "7e2e536e9c5d3010c0098367d537aade",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.0",
            "size": 14849,
            "upload_time": "2025-01-01T10:21:11",
            "upload_time_iso_8601": "2025-01-01T10:21:11.498879Z",
            "url": "https://files.pythonhosted.org/packages/dc/af/48ad26da3a276e18426f1900b51bad6d29c03dfb68b0e7e572136b89a3d0/new_print_lib-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-01 10:21:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pypa",
    "github_project": "new_print_lib",
    "github_not_found": true,
    "lcname": "new-print-lib"
}
        
Elapsed time: 0.42679s