Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
smartlock/Core.py

10 lines
179 B
Python
Raw Normal View History

2019-03-15 11:56:33 +01:00
import shelve
from os.path import isfile
class Main:
def __init__(self):
if not isfile("Settings.conf"):
setup()
else:
isconnection()