forked from Krautspace/doorstatus
kodierung.py gelöscht
This commit is contained in:
parent
0b91b007db
commit
14a6e68fb8
1 changed files with 0 additions and 26 deletions
26
kodierung.py
26
kodierung.py
|
@ -1,26 +0,0 @@
|
||||||
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
|
|
Loading…
Reference in a new issue