-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp_info.py
26 lines (26 loc) · 1.38 KB
/
app_info.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class AppInfo:
def __init__(self):
self.APP_NAME = 'Vision'
self.APP_ICON = 'ico/webcam.png'
self.GEOMETRY = '600x400'
self.CONSOLE_TITLE = 'title Vision Network Log'
self.FORE_THEME = '#ffffff'
self.BACK_THEME = "#ffffff"
self.CASCADE = 'cascades//haarcascade_fullbody.xml'
self.IP_WEBCAM = 'https://play.google.com/store/search?q=ip%20webcam&c=apps'
self.CONFIG_FILE = 'config//config.ini'
self.SETTING_FILE = 'config//settings.ini'
self.HELP = 'Download \'IP Webcam\' from PlayStore and install it on your phone to use this ' \
'software.\n\n' \
'Instructions:\n' \
'1). First connect to the internet on both devices.\n' \
'2). Start the IP Webcam server.\n' \
f'3). Note the \'IP Webcam\' IP Address, and insert that IP address into \'{self.APP_NAME}\' IP ' \
'text field.\n' \
'4). Click on the capture button! '
self.AUTHOR = 'mediocre9'
self.EMAIL = '[email protected]'
self.GITHUB = 'https://github.com/mediocre9'
self.SKYLINE_VR = 'https://skyline.github.com/mediocre9/2022'
self.ABOUT = f'If you have found any bugs ' \
f'or issues, please contact us here at {self.EMAIL}.'