10 lines
179 B
Python
10 lines
179 B
Python
|
import shelve
|
||
|
from os.path import isfile
|
||
|
|
||
|
class Main:
|
||
|
def __init__(self):
|
||
|
if not isfile("Settings.conf"):
|
||
|
setup()
|
||
|
else:
|
||
|
isconnection()
|