(input_str)
| 14 | ignore = True |
| 15 | |
| 16 | def encode(input_str): |
| 17 | tmp = [] |
| 18 | for i in range(len(input_str)): |
| 19 | tmp.append("ABCDEFGHIZ".find(input_str[i])) |
| 20 | result = "".join(str(i) for i in tmp) |
| 21 | result = int(result) >> 0x03 |
| 22 | return result |
| 23 | |
| 24 | def parse(self, html): |
| 25 | """ |