a small, multi-use color library for python that supports RGB, Hexadecimal, Decimal, CMYK and most web colors
Project description
pyspectrum
a small, multi-use color library for python
supports RGB, Hexadecimal, Decimal, CMYK and most web colors (red, seagreen, yellow)
Quickstart
Installation
Using pip to install is highly reccomended
pip install -U pyspectrum
Example
import pyspectrum
# init colors
c = pyspectrum.Colors()
# creating color classes out of values
redRGB = c.RGB(255, 0, 0)
redHex = c.Hexadecimal("#ff0000")
redCMYK = c.CMYK(0, 100, 100, 0)
# html/css color name
convertedRGB = c.from_name("red")
# converting values
convertedCMYK = redRGB.to_cmyk()
convertedHex = redRGB.to_hex()
# accessing tuples and printing
print(f"Red RGB tuple: {redRGB.to_tuple()}")
print(f"Red Hex code: {redHex.to_string()}")
print(f"Red CMYK tuple: {redCMYK.to_tuple()}")
## printing colored text from RGB
# prints'This is red text' in a red color
print(c.color_text("This is red text", redRGB))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyspectrum-0.0.4.tar.gz
(5.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyspectrum-0.0.4.tar.gz.
File metadata
- Download URL: pyspectrum-0.0.4.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9c0d47a2c0589163ced4ff6018aeb8c5aa9634ffa2207de945f9d5a88bf81f6
|
|
| MD5 |
f280d3243442060f09d78b5a9c8a2e87
|
|
| BLAKE2b-256 |
50c1a43f84560fda1b0ed4c01ef316286cefb4e38b66406e9eb6861c1460fada
|
File details
Details for the file pyspectrum-0.0.4-py3-none-any.whl.
File metadata
- Download URL: pyspectrum-0.0.4-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
747c6b1c903103409a6a7a74fd76ad7c0d70c2beb6b0a574b176f6637ea7babd
|
|
| MD5 |
19b2fe90dfc3c4304b79da407d5a9c1c
|
|
| BLAKE2b-256 |
3e16bddbd42412e8933c208d379240a874ce27be6d7da1b13669501fa1e469b9
|