Skip to content
Snippets Groups Projects

Linker with transformer

Closed Caroline de Pourtalès requested to merge linker-with-transformer into main
38 files
+ 1844
0
Compare changes
  • Side-by-side
  • Inline
Files
38
+ 13
0
 
import os
 
from configparser import ConfigParser
 
 
 
def read_config():
 
# Read configuration file
 
path_current_directory = os.path.dirname(__file__)
 
path_config_file = os.path.join(path_current_directory, 'config.ini')
 
config = ConfigParser()
 
config.read(path_config_file)
 
 
return config
 
Loading