-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModuleHelper.py
33 lines (29 loc) · 1.01 KB
/
ModuleHelper.py
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
#!/usr/bin/python3
# -*- coding: utf-8 -*-
## Notes : https://docs.python.org/3/library/configparser.html
import configparser
def readFileToList( filePath ) :
"""Read file from path indicated in parameter and return it as a list of lines. """
listToReturn = []
with open(filePath, 'r') as file :
data = file.read()
listToReturn = data.split( "\n" )
return listToReturn
def loadFileConfig( nameOfRSC ) :
""" To read file resources ! """
## Use a configuration file ! 'sources.ini' !
parser = configparser.ConfigParser()
parser.read( "sources.ini" )
if parser.has_option('paths', nameOfRSC):
return readFileToList( parser[ "paths" ].get( nameOfRSC ) )
else:
return []
def loadDataConfig( nameOfRSC ) :
""" To read data resources ! """
## Use a configuration file ! 'sources.ini' !
parser = configparser.ConfigParser()
parser.read( "sources.ini" )
if parser.has_option('data', nameOfRSC):
return parser[ "data" ].get( nameOfRSC )[2:-2].split( ", " )
else:
return []