Skip to content

Commit 1f07d5f

Browse files
authored
Merge pull request #2 from smarbal/master
Added codec: tap
2 parents d8380ee + ba991a6 commit 1f07d5f

File tree

4 files changed

+74
-0
lines changed

4 files changed

+74
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ o
289289
- [X] `southpark`: converts letters to Kenny's language from Southpark (whitespace is also handled)
290290
- [X] `southpark-icase`: case insensitive variant of `southpark`
291291
- [X] `tomtom`: similar to `morse`, using slashes and backslashes
292+
- [X] `tap` : converts tap/knock code commonly used by prisoners
292293

293294
#### Others
294295

codext/languages/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
from .radio import *
99
from .southpark import *
1010
from .tomtom import *
11+
from .tap import *
1112

codext/languages/tap.py

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# -*- coding: UTF-8 -*-
2+
"""Tap code - Tap/knock code encoding.
3+
4+
This codec:
5+
- en/decodes strings from str to str
6+
- en/decodes strings from bytes to bytes
7+
- decodes file content to str (read)
8+
- encodes file content from str to bytes (write)
9+
"""
10+
from ..__common__ import *
11+
12+
13+
__examples__ = {
14+
'enc(tap)': {'this is a test' : '.... .... .. ... .. .... .... ... .. .... .... ... . . .... .... . ..... .... ... .... ....'},
15+
'dec(tap)': {'.... .... .. ... .. .... .... ... .. .... .... ... . . .... .... . ..... .... ... .... ....' : 'thisisatest'}
16+
}
17+
18+
19+
def build_encmap(map) :
20+
dict = {}
21+
i = 0
22+
for col in range(1,6) :
23+
for row in range(1,6) :
24+
dict[map[i]] = "" + col * "." + " " + row * "."
25+
i += 1
26+
dict['k'] = dict['c']
27+
return dict
28+
29+
def encode_tap(text, errors = 'strict') :
30+
map = 'abcdefghijlmnopqrstuvwxyz'
31+
ENCMAP = build_encmap(map)
32+
encoded = ""
33+
for i, letter in enumerate(text) :
34+
try :
35+
encoded += ENCMAP[letter.lower()]
36+
except KeyError :
37+
pass
38+
if i != len(text) - 1 and letter != ' ':
39+
encoded += ' '
40+
return encoded, len(text)
41+
42+
43+
def decode_tap(text, errors = 'ignore') :
44+
map = 'abcdefghijlmnopqrstuvwxyz'
45+
ENCMAP = build_encmap(map)
46+
decoded = ""
47+
for elem in text.split(" ") :
48+
try :
49+
decoded += next(key for key, value in ENCMAP.items() if value == elem)
50+
except StopIteration :
51+
print("Invalid character(s) in the input. This is what could be decoded :")
52+
return decoded, len(text)
53+
54+
55+
add("tap", encode_tap, decode_tap, ignore_case="both")
56+

docs/enc/languages.md

+16
Original file line numberDiff line numberDiff line change
@@ -181,3 +181,19 @@ This codec is similar to morse. It converts text into slashes and backslashes.
181181
'THIS IS A TEST'
182182
```
183183

184+
-----
185+
186+
### Tap
187+
188+
Converts tap/knock code [commonly used by prisoners](https://en.wikipedia.org/wiki/Tap_code). Uses 25 letters, 'k' codes as 'c'.
189+
190+
**Codec** | **Conversions** | **Aliases** | **Comment**
191+
:---: | :---: | --- | ---
192+
`tap` | text <-> tap/knock encoded text | `tap` | uses '&nbsp; &nbsp;' (double space) as a separator for letters. No spaces between words after decoding.
193+
194+
```python
195+
>>> codext.encode("this is a test", "tap")
196+
'.... .... .. ... .. .... .... ... .. .... .... ... . . .... .... . ..... .... ... .... ....'
197+
>>> codext.decode(".... .... .. ... .. .... .... ... .. .... .... ... . . .... .... . ..... .... ... .... ....", "tap")
198+
'thisisatest'
199+
```

0 commit comments

Comments
 (0)