kodierung.py added

kodierung.py provides any little functions around encoding or decoding from strings or bytes
This commit is contained in:
berhsi 2019-07-26 21:35:29 +02:00
parent b830789f0e
commit 6574a58e15

26
kodierung.py Normal file
View file

@ -0,0 +1,26 @@
import sys
def byteorder():
return sys.byteorder
def standart_encoding():
return sys.getdefaultencoding()
def standart_ausgabeencoding():
return sys.stdout.encoding()
def string2bytes(text):
try:
bytestream = bytes(text, "utf-8")
except Exception as e:
print('string2bytes: error: {}'.format(e))
return
return bytestream
def bytes2string(bytes):
try:
text = str(bytes, "utf-8")
except Exception as e:
print('bytes2string: error: {}'.format(e))
text = ''
return text