-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext_encoder_example.py
37 lines (30 loc) · 1.18 KB
/
text_encoder_example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# --------------------------------------------------------
# Licensed under the terms of the BSD 3-Clause License
# (see LICENSE for details).
# Copyright © 2018-2025, A.A Suvorov
# All rights reserved.
# --------------------------------------------------------
# https://github.com/smartlegionlab/
# --------------------------------------------------------
from smart_babylon_library import TextEncoder
from smart_babylon_library.tools import timing_decorator
@timing_decorator
def text_encoder_example(text):
text_encoder = TextEncoder()
print("=== Using TextEncoder ===")
encoded_address = text_encoder.encode_text(text)
print(f"Encoded address: {encoded_address}")
print(f"Encoded address length: {len(encoded_address)} characters")
decoded_text = text_encoder.decode_address(encoded_address)
print(f"Decoded text: '{decoded_text}'")
print(f"Decoded text length: {len(decoded_text)} characters")
def main():
print("*** Start ***")
print('-' * 50)
text = "i love python"
print(f"Original text: '{text}'")
print(f"Text length: {len(text)} characters\n")
text_encoder_example(text)
print("*** End ***")
if __name__ == "__main__":
main()