package
This commit is contained in:
parent
3eccd76e8c
commit
2eb71e6412
14 changed files with 0 additions and 0 deletions
28
mrmp/package.py
Normal file
28
mrmp/package.py
Normal file
|
@ -0,0 +1,28 @@
|
|||
import os
|
||||
|
||||
CHARSET = 'u8'
|
||||
KEY = '%'
|
||||
SEPARATOR = f'{os.linesep}{os.linesep}'
|
||||
|
||||
|
||||
class Package:
|
||||
def __init__(self, package, files):
|
||||
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)
|
||||
|
||||
def __str__(self):
|
||||
lines = [
|
||||
f' Name: {self.name}',
|
||||
f'FileName: {self.filename}',
|
||||
f' Size: {self.csize}',
|
||||
f' Hash: {self.sha256sum}',
|
||||
]
|
||||
return os.linesep.join(lines)
|
Loading…
Add table
Add a link
Reference in a new issue