forked from mutantmonkey/phenny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunicode.py
79 lines (62 loc) · 1.87 KB
/
unicode.py
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
#!/usr/bin/env python
"""
unicode.py - jenni Unicode Module
Copyright 2010-2013, Michael Yanovich (yanovich.net)
Licensed under the Eiffel Forum License 2.
More info:
* jenni: https://github.com/myano/jenni/
* Phenny: http://inamidst.com/phenny/
"""
import re
import unicodedata
import urllib.parse
control_chars = ''.join(map(chr, list(range(0,32)) + list(range(127,160))))
control_char_re = re.compile('[%s]' % re.escape(control_chars))
def supercombiner(jenni, input):
""".sc -- displays the infamous supercombiner"""
s = 'u'
for i in range(1, 3000):
if unicodedata.category(chr(i)) == "Mn":
s += chr(i)
if len(s) > 100:
break
jenni.say(s)
supercombiner.commands = ['sc']
supercombiner.rate = 30
def decode(bit):
try:
if isinstance(bit, str) or isinstance(bit, str):
text = bit.decode('utf-8')
else:
text = str()
except UnicodeDecodeError:
try:
text = bit.decode('iso-8859-1')
except UnicodeDecodeError:
text = bit.decode('cp1252')
return text
def encode(bit):
try:
if isinstance(bit, str) or isinstance(bit, str):
text = bit.encode('utf-8')
else:
text = str()
except UnicodeEncodeError:
try:
text = bit.encode('iso-8859-1')
except UnicodeEncodeError:
text = bit.encode('cp1252')
return text
def urlEncodeNonAscii(b):
return re.sub('[\x80-\xFF]', lambda c: '%%%02x' % ord(c.group(0)), b)
def iriToUri(iri):
parts = urllib.parse.urlparse(iri)
return urllib.parse.urlunparse(
part.encode('idna') if parti == 1 else urlEncodeNonAscii(
part.encode('utf-8'))
for parti, part in enumerate(parts)
)
def remove_control_chars(s):
return control_char_re.sub('', s)
if __name__ == '__main__':
print(__doc__.strip())