mrmp/package.py

20 lines
544 B
Python
Raw Normal View History

2021-10-09 23:18:03 +00:00
import os
CHARSET = 'u8'
KEY = '%'
SEPARATOR = f'{os.linesep}{os.linesep}'
2021-10-09 18:04:49 +00:00
class Package:
2021-10-09 23:18:03 +00:00
def __init__(self, package, files):
2021-10-09 23:27:34 +00:00
for binary in [package, files]:
text = binary.decode(CHARSET).strip()
for item in text.split(SEPARATOR):
line, *lines = item.split(os.linesep)
key = line.split(KEY)[1].lower()
if len(lines) == 1:
value = lines[0]
else:
value = lines
setattr(self, key, value)