mirror of
https://github.com/JvanKatwijk/qt-dab.git
synced 2025-10-06 00:02:40 +02:00
15 lines
269 B
Python
15 lines
269 B
Python
import sys
|
|
import base64
|
|
import openlr
|
|
def PrintArray (a):
|
|
test= base64.b64encode (a)
|
|
try:
|
|
test = openlr. binary_decode (test, is_base64=True)
|
|
print (test)
|
|
except NotImplementedError:
|
|
print (f"Version Error")
|
|
|
|
c = 0
|
|
return c
|
|
|