1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# coding: utf-8
"""
python creole utilities
~~~~~~~~~~~~~~~~~~~~~~~
:copyleft: 2011-2014 by python-creole team, see AUTHORS for more details.
:license: GNU GPL v3 or above, see LICENSE for more details.
"""
import json
import shlex
try:
from pygments import lexers
from pygments.formatters import HtmlFormatter
PYGMENTS = True
except ImportError:
PYGMENTS = False
# For string2dict()
KEYWORD_MAP = {
"True": True,
"False": False,
"None": None,
}
def string2dict(content):
"""
convert a string into a dictionary. e.g.:
>>> string2dict('key="value"')
{'key': 'value'}
>>> string2dict('key1="value1" key2="value2"') == {'key2': 'value2', 'key1': 'value1'}
True
See test_creole2html.TestString2Dict()
"""
parts = shlex.split(content)
result = {}
for part in parts:
key, value = part.split("=", 1)
if value in KEYWORD_MAP:
# True False or None
value = KEYWORD_MAP[value]
else:
# A number?
try:
value = int(value.strip("'\""))
except ValueError:
pass
result[key] = value
return result
def dict2string(d):
"""
FIXME: Find a better was to do this.
>>> dict2string({'foo':"bar", "no":123})
'foo="bar" no=123'
>>> dict2string({"foo":'bar', "no":"ABC"})
'foo="bar" no="ABC"'
See test_creole2html.TestDict2String()
"""
attr_list = []
for key, value in sorted(d.items()):
value_string = json.dumps(value)
attr_list.append(f"{key}={value_string}")
return " ".join(attr_list)
def get_pygments_formatter():
if PYGMENTS:
return HtmlFormatter(lineos=True, encoding="utf-8", style="colorful", outencoding="utf-8", cssclass="pygments")
def get_pygments_lexer(source_type, code):
if PYGMENTS:
try:
return lexers.get_lexer_by_name(source_type)
except:
return lexers.guess_lexer(code)
else:
return None
if __name__ == "__main__":
import doctest
print(doctest.testmod())
|