Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
Latest commit
executable file
·67 lines (57 loc) · 1.68 KB
/
Copy pathconfig.py
File metadata and controls
executable file
·67 lines (57 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/python3
# -*- coding: utf-8 -*-
#
# config.py
#
# Copyright Rainer Kersten and Penny for the PHP-Scripts
# Copyright 2013, 2014 Mechtilde Stehmann <ooo@mechtilde.de>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
importos
classmakeConfig(object):
def__init__(self):
pass
deffileRead(self, rfile):
items= {}
ifos.path.exists(rfile) andos.path.isfile(rfile):
fobj=open(rfile, "r")
lineslist=fobj.readlines()
forlineinlineslist:
line=line.strip()
line=self.dealComments(line)
ifline!="":
entry=line.split(":")
iflen(entry) >=2:
items[entry[0].strip()] =entry[1].strip()
fobj.close()
else:
items= {}
print(rfile+" existiert nicht!")
returnitems
defdealComments(self, line):
entry=line.split("#")
returnentry[0]
defmain(ConfigFile):
mc=makeConfig()
configdict=mc.fileRead(ConfigFile)
returnconfigdict
if__name__=='__main__':
# a = main("style.txt")
b=main("config.txt")
# c = main("lexikon.txt")
# print(a)
print(b)
# print(c)