mirror of
https://github.com/jopohl/urh.git
synced 2026-03-03 06:54:00 +01:00
11 lines
164 B
Python
Executable File
11 lines
164 B
Python
Executable File
#!/usr/bin/env python
|
|
"""
|
|
Simple example external decoding
|
|
Simply removes every second bit
|
|
"""
|
|
|
|
import sys
|
|
|
|
bits = sys.argv[1]
|
|
print("".join(b for b in bits[::2]))
|