A Python3 module for colors
Project description
colorix
Colorix (which stands for 'Color Exchange') is a Python3 module designed for working with colors; specifically color conversion, utilities, and more.
Installation
The easiest way to install colorix
is through PIP.
pip install colorix
or pip3 install colorix
Before installing, ensure your Python version is 3.6 or above.
Usage
NOTE: Results produced by colorix are not guaranteed to be accurate
Currently, colorix
supports 3 color spaces; RGB, CMYK, and HEX.
The following example demonstrates the standard use of colorix
.
from colorix import RGB # Import the RGB class
rgb = (12, 34, 56) # Set our values
my_result = RGB(*rgb).toCMYK().raw # Get our values
print(my_result) # Print them
>>> (79, 39, 0, 78)
cmyk = my_result # Set our values
my_result = CMYK(*cmyk).toRGB().raw # Get our values
print(my_result) # Print them
>> (12, 34, 56)
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
colorix-0.1.5.tar.gz
(3.2 kB
view details)
File details
Details for the file colorix-0.1.5.tar.gz
.
File metadata
- Download URL: colorix-0.1.5.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 128cea6e3fcd270826af7aa8ccc65e548324c3d398a0a87d80a16cfe482549cc |
|
MD5 | 2413ed64063de9347a1657db1e4478ec |
|
BLAKE2b-256 | e9db0bb395f36edaf96ed1b855f1939bda515f3b1bcc5d01819a78770b9869a3 |