some test as usual
This commit is contained in:
parent
f1b6232841
commit
e2a917925e
|
@ -1,6 +1,5 @@
|
||||||
/old
|
/old
|
||||||
geckodriver.log
|
geckodriver.log
|
||||||
config.cfg
|
|
||||||
.vscode/
|
.vscode/
|
||||||
update.sh
|
update.sh
|
||||||
/Git
|
/Git
|
||||||
|
@ -10,4 +9,4 @@ login.csv
|
||||||
requirements.txt
|
requirements.txt
|
||||||
data
|
data
|
||||||
**/__pycache__
|
**/__pycache__
|
||||||
config
|
/user_data
|
||||||
|
|
8
main.py
8
main.py
|
@ -2,8 +2,12 @@
|
||||||
|
|
||||||
import configparser
|
import configparser
|
||||||
import os
|
import os
|
||||||
print
|
import shutil
|
||||||
config_path = f"{os.path.abspath( os.path.dirname( __file__ ) )}/user_data/config.cfg"
|
|
||||||
|
default_config = f"{os.path.abspath( os.path.dirname( __file__ ) )}/user_data/config.default"
|
||||||
|
new = f"{os.path.abspath( os.path.dirname( __file__ ) )}/user_data/config.cfg"
|
||||||
|
shutil.copyfile(default_config, config_path)
|
||||||
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(config_path)
|
config.read(config_path)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue