]> git.scottworley.com Git - rfc1751/blobdiff - rfc1751.py
Rename rfc1751 → encode
[rfc1751] / rfc1751.py
index f855d9fd28e0dd4f8364eb06010345386fff7254..70bae6e5c91a7a95469d5e348886f608d322a7cb 100644 (file)
@@ -21,17 +21,17 @@ from rfc1751wordlist import WORD_LIST, WORD_LIST_SIZE
 # TODO: Decode
 
 
-def rfc1751_actual(x: int) -> list[str]:
-    return [] if x <= 0 else rfc1751_actual(
+def encode_actual(x: int) -> list[str]:
+    return [] if x <= 0 else encode_actual(
         x // WORD_LIST_SIZE) + [WORD_LIST[x % WORD_LIST_SIZE]]
 
 
-def rfc1751(x: int) -> list[str]:
-    return [WORD_LIST[x]] if x == 0 else rfc1751_actual(x)
+def encode(x: int) -> list[str]:
+    return [WORD_LIST[x]] if x == 0 else encode_actual(x)
 
 
 def main() -> None:
-    print(' '.join(rfc1751(int(sys.argv[1]))))
+    print(' '.join(encode(int(sys.argv[1]))))
 
 
 if __name__ == '__main__':