mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
Deleted Configuration.py
This commit is contained in:
parent
aeab20b215
commit
bdd604e791
|
@ -1,27 +0,0 @@
|
|||
# Primitive config
|
||||
import configparser
|
||||
import os
|
||||
|
||||
|
||||
def createConfig(path="Settings.ini"):
|
||||
config = configparser.ConfigParser()
|
||||
config.add_section("Settings")
|
||||
config.add_section("Defaults")
|
||||
config.set("Settings", "Language", "en")
|
||||
config.set("Settings", "DidBackground", "True")
|
||||
config.set("Defaults", "webPage", "Facebook")
|
||||
config.set("Defaults", "additionalOption", "1")
|
||||
config.set("Defaults", "theme", "anaglyph")
|
||||
with open(path, 'w') as configFile:
|
||||
config.write(configFile)
|
||||
|
||||
|
||||
def readConfig(path="Settings.ini"):
|
||||
config = configparser.ConfigParser()
|
||||
config.read(path)
|
||||
return config
|
||||
|
||||
|
||||
def ifSettingsNotExists():
|
||||
if not os.path.exists("Settings.ini"):
|
||||
createConfig()
|
Loading…
Reference in New Issue
Block a user