Provides common color systems.
Project description
Introduction
pycolorname is a python package that aims to provide common color systems scraped from various sites.
Supported systems
Pantone
RAL-Classic
Installation
The easiest way to install the library is using pip. To install the latest stable version run:
$ pip install pycolorname
To get bightly builds from the master branch of the github repo, use:
$ pip install --pre pycolorname
Usage
To use a colorsystem, import a source from the module corresponsing to the system and create an instance of it.
To use the pantone color system, find the sources available in the pycolorname.pantone module and use one of them. For example, the PantonePaint source can be used in the following manner:
>>> from pycolorname.pantone.pantonepaint import PantonePaint >>> pantone_colors = PantonePaint() >>> pantone_colors["PMS 19-4914 TPX (Deep Teal)"] (23, 73, 80)
Another example using the RAL-Classic color system from the Wikipedia source:
>>> from pycolorname.ral.classic.wikipedia import Wikipedia >>> ral_colors = Wikipedia() >>> ral_colors["RAL 1000 (Green beige)"] (204, 197, 143)
Development
Testing
To test the code, install dependencies using:
$ pip install -r test-requirements.txt
and then execute:
$ python -m pytest
Running tests will automatically update the database of files used by the color systems by fetching it from the respective sources.
Build status
Credits
This package has been derived from pywikibot/pycolorname. Which in turn was extracted out of pywikibot/compat. These packages were created by DrTrigon who is the original author of this package.
LICENSE
This code falls under the MIT License. Please note that some files or content may be copied from other places and have their own licenses. Dependencies that are being used to generate the databases also have their own licenses.
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
Built Distribution
Hashes for pycolorname-0.0.1.dev20160311025804.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f018b87081db33ae129882e75c205c34b606d5675cb5a410225488771d860fab |
|
MD5 | 8ba5303e0e6fe6c671539bbf2b57e938 |
|
BLAKE2b-256 | e23e25c1bdb3c0b96a22819a1a2bd880e3f80ae04b0c2511584cea15193be155 |
Hashes for pycolorname-0.0.1.dev20160311025804-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 639dc88d2f91f79576995cb165be39231aa2131c5adec99d748fffb8552e6ca7 |
|
MD5 | c41ed5c6b2e71e4f0852ee3cc2eb1e48 |
|
BLAKE2b-256 | 6b41c10568e7034938c0f1c61aec29729dc170d65a03e19df27b784d206f8e4e |