MeowNex/cc/sc-decode
swee 5c8c219280
All checks were successful
Check syntax / check (push) Successful in 7s
Update cc/sc-decode
2024-12-24 16:10:34 -08:00

7 lines
No EOL
202 B
Python

#!/usr/bin/python3
import sweecrypt
from sys import argv
if argv[3][:2] == "-s":
print(sweecrypt.decrypt(" ".join(argv[4:]), int(argv[3][3:])))
else:
print(sweecrypt.decrypt(" ".join(argv[3:])))