Files
GeneratorCSV/components/load_config.py

21 lines
336 B
Python

"""
# GeneratorCSV
# Wersja 4.0: UC 1
# by Mateusz Skoczek
# luty 2019 - grudzień 2019
# dla ZSP Sobolew
#
# Moduł zarządzający plikiem konfiguracyjnym
#
"""
def read():
with open('.\config.cfg') as cfg:
cfg = cfg.read().split('\n')
settings = []
for x in cfg
def edit():
pass