mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2025-12-23 17:09:41 +01:00
16 lines
239 B
Python
16 lines
239 B
Python
|
|
from collections import namedtuple
|
||
|
|
|
||
|
|
Channel = namedtuple("Channel", ["name", "service", "freq", "fec"])
|
||
|
|
|
||
|
|
FILE_PATH = "files/lamedb"
|
||
|
|
|
||
|
|
with open(FILE_PATH) as file:
|
||
|
|
lines = file.readlines()
|
||
|
|
|
||
|
|
|
||
|
|
for l in lines:
|
||
|
|
l.split()
|
||
|
|
|
||
|
|
print(lines)
|
||
|
|
|