Webcolors patch to use better
This commit is contained in:
parent
6a17c00b63
commit
9232de7e70
2 changed files with 36 additions and 0 deletions
1
src/webcolors/__init__.py
Normal file
1
src/webcolors/__init__.py
Normal file
|
@ -0,0 +1 @@
|
|||
# -*- coding: utf-8 -*-
|
|
@ -1,3 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
A simple library for working with the color names and color codes
|
||||
defined by the HTML and CSS specifications.
|
||||
|
@ -188,6 +189,7 @@ values to normalized color names. These eight mappings are as follows:
|
|||
|
||||
import math
|
||||
import re
|
||||
import md5
|
||||
|
||||
|
||||
def _reversedict(d):
|
||||
|
@ -823,6 +825,39 @@ def rgb_percent_to_rgb(rgb_percent_triplet):
|
|||
return tuple(map(_percent_to_integer, rgb_percent_triplet))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
def whatever_to_rgb(string):
|
||||
"""
|
||||
Converts CSS3 color or a hex into rgb triplet; hash of string if fails.
|
||||
"""
|
||||
try:
|
||||
return name_to_rgb(string)
|
||||
except ValueError:
|
||||
try:
|
||||
return hex_to_rgb(string)
|
||||
except ValueError:
|
||||
a = md5.new(string)
|
||||
return hex_to_rgb("#"+a.hexdigest()[:6])
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
import doctest
|
||||
doctest.testmod()
|
||||
|
|
Loading…
Add table
Reference in a new issue