aboutsummaryrefslogtreecommitdiffstats
path: root/settings.py
blob: 499b32bf933813096369e468a838ae44afe74d12 (plain)
1
2
3
4
5
6
7
8
9
10
11
default_settings = '''route_tor = False
port_number = 80
allow_foreign_addresses = False
'''
exec(default_settings)
try:
    with open('settings.txt', 'r', encoding='utf-8') as file:
        exec(file.read())
except FileNotFoundError:
    with open('settings.txt', 'a', encoding='utf-8') as file:
        file.write(default_settings)