Sebastian Serfling 2023-08-08 12:38:46 +02:00
parent fa45afa837
commit 4fe1520fce
46 changed files with 1113 additions and 135 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -68,3 +68,9 @@ def add_user(query,name,user):
def get_user(query,name,user): def get_user(query,name,user):
return database(query,name,user) return database(query,name,user)
def get_cpu(query,name,cpu):
return database(query,name,cpu)
def update_cpu(query,name,cpu):
return database(query,name,cpu)

30
Controller/system_info.py Normal file
View File

@ -0,0 +1,30 @@
from Controller import mysql_connect
import psutil
import platform
import math
ipadress = "'172.18.1.6'"
def get_cpu_sql(cpu):
query = f"SELECT `Prozessor-Anzahl` FROM `CPU-Liste` WHERE `CPU-Name`='{cpu}'"
return mysql_connect.get_cpu(query,"Stines-GmbH",cpu)
def get_ram_info():
ram_info = psutil.virtual_memory()
total_ram = ram_info.total / (1024 ** 3) # In Gigabytes
return math.ceil(total_ram)
def get_hdd_info():
total_disk_size = 0
disk_partitions = psutil.disk_partitions()
for partition in disk_partitions:
# Wenn du das Laufwerk C: ignorieren möchtest
if partition.device != 'C:\\':
partition_info = psutil.disk_usage(partition.mountpoint)
total_disk_size += partition_info.total / (1024 ** 3)
return math.ceil(total_disk_size)
# Informationen über die CPU
def set_system_info(name,cpu,ipadress):
query = f"UPDATE {name} SET RAM={get_ram_info()}, Prozessor={get_cpu_sql()}, CPU='{platform.processor()}' WHERE `IP-Adresse`={ipadress}"
return mysql_connect.update_cpu(query,"Stines-GmbH",get_cpu_sql())

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -331,6 +331,30 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ast.py', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ast.py',
'PYMODULE'), 'PYMODULE'),
('subprocess',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\subprocess.py',
'PYMODULE'),
('selectors',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\selectors.py',
'PYMODULE'),
('signal',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\signal.py',
'PYMODULE'),
('tracemalloc',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\tracemalloc.py',
'PYMODULE'),
('stringprep',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\stringprep.py',
'PYMODULE'),
('_py_abc',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_py_abc.py',
'PYMODULE'),
('getpass', ('getpass',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\getpass.py', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\getpass.py',
@ -371,30 +395,6 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\client.py', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\client.py',
'PYMODULE'), 'PYMODULE'),
('stringprep',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\stringprep.py',
'PYMODULE'),
('tracemalloc',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\tracemalloc.py',
'PYMODULE'),
('_py_abc',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_py_abc.py',
'PYMODULE'),
('subprocess',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\subprocess.py',
'PYMODULE'),
('selectors',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\selectors.py',
'PYMODULE'),
('signal',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\signal.py',
'PYMODULE'),
('Controller.mysql_connect', ('Controller.mysql_connect',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\Controller\\mysql_connect.py', 'Serfling\\PycharmProjects\\server-info\\Controller\\mysql_connect.py',
@ -1112,6 +1112,82 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\mysql\\connector\\locales\\eng\\__init__.py', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\mysql\\connector\\locales\\eng\\__init__.py',
'PYMODULE'), 'PYMODULE'),
('Controller.system_info',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\Controller\\system_info.py',
'PYMODULE'),
('psutil',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\__init__.py',
'PYMODULE'),
('psutil._psaix',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psaix.py',
'PYMODULE'),
('glob',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\glob.py',
'PYMODULE'),
('psutil._pssunos',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_pssunos.py',
'PYMODULE'),
('psutil._psbsd',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psbsd.py',
'PYMODULE'),
('xml.etree.ElementTree',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\etree\\ElementTree.py',
'PYMODULE'),
('xml.etree.cElementTree',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\etree\\cElementTree.py',
'PYMODULE'),
('xml.etree.ElementInclude',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\etree\\ElementInclude.py',
'PYMODULE'),
('xml.etree.ElementPath',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\etree\\ElementPath.py',
'PYMODULE'),
('xml.etree',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\etree\\__init__.py',
'PYMODULE'),
('psutil._psosx',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psosx.py',
'PYMODULE'),
('psutil._pswindows',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_pswindows.py',
'PYMODULE'),
('psutil._pslinux',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_pslinux.py',
'PYMODULE'),
('psutil._psposix',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psposix.py',
'PYMODULE'),
('psutil._compat',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_compat.py',
'PYMODULE'),
('psutil._common',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_common.py',
'PYMODULE'),
('curses',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\curses\\__init__.py',
'PYMODULE'),
('curses.has_key',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\curses\\has_key.py',
'PYMODULE'),
('Controller.zammad', ('Controller.zammad',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\Controller\\zammad.py', 'Serfling\\PycharmProjects\\server-info\\Controller\\zammad.py',
@ -1440,14 +1516,14 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\socket.py', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\socket.py',
'PYMODULE')], 'PYMODULE')],
[('python39.dll', [('VCRUNTIME140.dll',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
'BINARY'),
('VCRUNTIME140.dll',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
'BINARY'), 'BINARY'),
('python39.dll',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
'BINARY'),
('pywin32_system32\\pywintypes39.dll', ('pywin32_system32\\pywintypes39.dll',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\pywin32_system32\\pywintypes39.dll', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\pywin32_system32\\pywintypes39.dll',
@ -1468,17 +1544,17 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
'EXTENSION'), 'EXTENSION'),
('_ssl.pyd', ('select.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
'EXTENSION'), 'EXTENSION'),
('unicodedata.pyd', ('unicodedata.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
'EXTENSION'), 'EXTENSION'),
('select.pyd', ('_ssl.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
'EXTENSION'), 'EXTENSION'),
('_queue.pyd', ('_queue.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
@ -1524,6 +1600,14 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_mysql_connector.cp39-win_amd64.pyd', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_mysql_connector.cp39-win_amd64.pyd',
'EXTENSION'), 'EXTENSION'),
('_elementtree.pyd',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_elementtree.pyd',
'EXTENSION'),
('psutil\\_psutil_windows.pyd',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psutil_windows.pyd',
'EXTENSION'),
('psycopg2\\_psycopg.cp39-win_amd64.pyd', ('psycopg2\\_psycopg.cp39-win_amd64.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psycopg2\\_psycopg.cp39-win_amd64.pyd', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psycopg2\\_psycopg.cp39-win_amd64.pyd',
@ -1579,33 +1663,21 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\build\\main\\base_library.zip', 'Serfling\\PycharmProjects\\server-info\\build\\main\\base_library.zip',
'DATA'), 'DATA'),
('certifi\\cacert.pem',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
'DATA'),
('cryptography-41.0.2.dist-info\\LICENSE.APACHE', ('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE', 'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
'DATA'), 'DATA'),
('certifi\\py.typed',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
'DATA'),
('cryptography-41.0.2.dist-info\\LICENSE',
'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
'DATA'),
('cryptography-41.0.2.dist-info\\top_level.txt',
'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
'DATA'),
('cryptography-41.0.2.dist-info\\WHEEL', ('cryptography-41.0.2.dist-info\\WHEEL',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL', 'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
'DATA'), 'DATA'),
('cryptography-41.0.2.dist-info\\METADATA', ('cryptography-41.0.2.dist-info\\top_level.txt',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA', 'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
'DATA'),
('cryptography-41.0.2.dist-info\\INSTALLER',
'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
'DATA'), 'DATA'),
('cryptography-41.0.2.dist-info\\RECORD', ('cryptography-41.0.2.dist-info\\RECORD',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
@ -1619,8 +1691,20 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\py.typed', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\py.typed',
'DATA'), 'DATA'),
('cryptography-41.0.2.dist-info\\INSTALLER', ('cryptography-41.0.2.dist-info\\METADATA',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER', 'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
'DATA'),
('certifi\\cacert.pem',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
'DATA'),
('certifi\\py.typed',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
'DATA'),
('cryptography-41.0.2.dist-info\\LICENSE',
'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
'DATA')], 'DATA')],
[]) [])

View File

@ -55,14 +55,14 @@
('main', ('main',
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\main.py', 'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\main.py',
'PYSOURCE'), 'PYSOURCE'),
('python39.dll',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
'BINARY'),
('VCRUNTIME140.dll', ('VCRUNTIME140.dll',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
'BINARY'), 'BINARY'),
('python39.dll',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
'BINARY'),
('pywin32_system32\\pywintypes39.dll', ('pywin32_system32\\pywintypes39.dll',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\pywin32_system32\\pywintypes39.dll', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\pywin32_system32\\pywintypes39.dll',
@ -83,17 +83,17 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
'EXTENSION'), 'EXTENSION'),
('_ssl.pyd', ('select.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
'EXTENSION'), 'EXTENSION'),
('unicodedata.pyd', ('unicodedata.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
'EXTENSION'), 'EXTENSION'),
('select.pyd', ('_ssl.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
'EXTENSION'), 'EXTENSION'),
('_queue.pyd', ('_queue.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
@ -139,6 +139,14 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_mysql_connector.cp39-win_amd64.pyd', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_mysql_connector.cp39-win_amd64.pyd',
'EXTENSION'), 'EXTENSION'),
('_elementtree.pyd',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_elementtree.pyd',
'EXTENSION'),
('psutil\\_psutil_windows.pyd',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psutil_windows.pyd',
'EXTENSION'),
('psycopg2\\_psycopg.cp39-win_amd64.pyd', ('psycopg2\\_psycopg.cp39-win_amd64.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psycopg2\\_psycopg.cp39-win_amd64.pyd', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psycopg2\\_psycopg.cp39-win_amd64.pyd',
@ -192,33 +200,21 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\build\\main\\base_library.zip', 'Serfling\\PycharmProjects\\server-info\\build\\main\\base_library.zip',
'DATA'), 'DATA'),
('certifi\\cacert.pem',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
'DATA'),
('cryptography-41.0.2.dist-info\\LICENSE.APACHE', ('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE', 'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
'DATA'), 'DATA'),
('certifi\\py.typed',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
'DATA'),
('cryptography-41.0.2.dist-info\\LICENSE',
'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
'DATA'),
('cryptography-41.0.2.dist-info\\top_level.txt',
'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
'DATA'),
('cryptography-41.0.2.dist-info\\WHEEL', ('cryptography-41.0.2.dist-info\\WHEEL',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL', 'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
'DATA'), 'DATA'),
('cryptography-41.0.2.dist-info\\METADATA', ('cryptography-41.0.2.dist-info\\top_level.txt',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA', 'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
'DATA'),
('cryptography-41.0.2.dist-info\\INSTALLER',
'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
'DATA'), 'DATA'),
('cryptography-41.0.2.dist-info\\RECORD', ('cryptography-41.0.2.dist-info\\RECORD',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
@ -232,14 +228,26 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\py.typed', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\py.typed',
'DATA'), 'DATA'),
('cryptography-41.0.2.dist-info\\INSTALLER', ('cryptography-41.0.2.dist-info\\METADATA',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER', 'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
'DATA'),
('certifi\\cacert.pem',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
'DATA'),
('certifi\\py.typed',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
'DATA'),
('cryptography-41.0.2.dist-info\\LICENSE',
'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
'DATA')], 'DATA')],
[], [],
False, False,
False, False,
1691020652, 1691491043,
[('run.exe', [('run.exe',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe',

View File

@ -47,14 +47,14 @@
('main', ('main',
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\main.py', 'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\main.py',
'PYSOURCE'), 'PYSOURCE'),
('python39.dll',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
'BINARY'),
('VCRUNTIME140.dll', ('VCRUNTIME140.dll',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
'BINARY'), 'BINARY'),
('python39.dll',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
'BINARY'),
('pywin32_system32\\pywintypes39.dll', ('pywin32_system32\\pywintypes39.dll',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\pywin32_system32\\pywintypes39.dll', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\pywin32_system32\\pywintypes39.dll',
@ -75,17 +75,17 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
'EXTENSION'), 'EXTENSION'),
('_ssl.pyd', ('select.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
'EXTENSION'), 'EXTENSION'),
('unicodedata.pyd', ('unicodedata.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
'EXTENSION'), 'EXTENSION'),
('select.pyd', ('_ssl.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
'EXTENSION'), 'EXTENSION'),
('_queue.pyd', ('_queue.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
@ -131,6 +131,14 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_mysql_connector.cp39-win_amd64.pyd', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_mysql_connector.cp39-win_amd64.pyd',
'EXTENSION'), 'EXTENSION'),
('_elementtree.pyd',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_elementtree.pyd',
'EXTENSION'),
('psutil\\_psutil_windows.pyd',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psutil_windows.pyd',
'EXTENSION'),
('psycopg2\\_psycopg.cp39-win_amd64.pyd', ('psycopg2\\_psycopg.cp39-win_amd64.pyd',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psycopg2\\_psycopg.cp39-win_amd64.pyd', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psycopg2\\_psycopg.cp39-win_amd64.pyd',
@ -184,33 +192,21 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\build\\main\\base_library.zip', 'Serfling\\PycharmProjects\\server-info\\build\\main\\base_library.zip',
'DATA'), 'DATA'),
('certifi\\cacert.pem',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
'DATA'),
('cryptography-41.0.2.dist-info\\LICENSE.APACHE', ('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE', 'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
'DATA'), 'DATA'),
('certifi\\py.typed',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
'DATA'),
('cryptography-41.0.2.dist-info\\LICENSE',
'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
'DATA'),
('cryptography-41.0.2.dist-info\\top_level.txt',
'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
'DATA'),
('cryptography-41.0.2.dist-info\\WHEEL', ('cryptography-41.0.2.dist-info\\WHEEL',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL', 'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
'DATA'), 'DATA'),
('cryptography-41.0.2.dist-info\\METADATA', ('cryptography-41.0.2.dist-info\\top_level.txt',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA', 'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
'DATA'),
('cryptography-41.0.2.dist-info\\INSTALLER',
'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
'DATA'), 'DATA'),
('cryptography-41.0.2.dist-info\\RECORD', ('cryptography-41.0.2.dist-info\\RECORD',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
@ -224,9 +220,21 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\py.typed', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\py.typed',
'DATA'), 'DATA'),
('cryptography-41.0.2.dist-info\\INSTALLER', ('cryptography-41.0.2.dist-info\\METADATA',
'c:\\users\\sebastian ' 'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER', 'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
'DATA'),
('certifi\\cacert.pem',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
'DATA'),
('certifi\\py.typed',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
'DATA'),
('cryptography-41.0.2.dist-info\\LICENSE',
'c:\\users\\sebastian '
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
'DATA')], 'DATA')],
False, False,
False, False,

Binary file not shown.

View File

@ -24,6 +24,10 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\Controller\\smtp_export.py', 'Serfling\\PycharmProjects\\server-info\\Controller\\smtp_export.py',
'PYMODULE'), 'PYMODULE'),
('Controller.system_info',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\Controller\\system_info.py',
'PYMODULE'),
('Controller.zammad', ('Controller.zammad',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\Controller\\zammad.py', 'Serfling\\PycharmProjects\\server-info\\Controller\\zammad.py',
@ -380,6 +384,14 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ctypes\\wintypes.py', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ctypes\\wintypes.py',
'PYMODULE'), 'PYMODULE'),
('curses',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\curses\\__init__.py',
'PYMODULE'),
('curses.has_key',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\curses\\has_key.py',
'PYMODULE'),
('dataclasses', ('dataclasses',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\dataclasses.py', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\dataclasses.py',
@ -496,6 +508,10 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\gettext.py', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\gettext.py',
'PYMODULE'), 'PYMODULE'),
('glob',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\glob.py',
'PYMODULE'),
('gzip', ('gzip',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\gzip.py', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\gzip.py',
@ -1036,6 +1052,46 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\pprint.py', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\pprint.py',
'PYMODULE'), 'PYMODULE'),
('psutil',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\__init__.py',
'PYMODULE'),
('psutil._common',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_common.py',
'PYMODULE'),
('psutil._compat',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_compat.py',
'PYMODULE'),
('psutil._psaix',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psaix.py',
'PYMODULE'),
('psutil._psbsd',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psbsd.py',
'PYMODULE'),
('psutil._pslinux',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_pslinux.py',
'PYMODULE'),
('psutil._psosx',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psosx.py',
'PYMODULE'),
('psutil._psposix',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psposix.py',
'PYMODULE'),
('psutil._pssunos',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_pssunos.py',
'PYMODULE'),
('psutil._pswindows',
'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_pswindows.py',
'PYMODULE'),
('psycopg2', ('psycopg2',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psycopg2\\__init__.py', 'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psycopg2\\__init__.py',
@ -1357,6 +1413,26 @@
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\__init__.py', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\__init__.py',
'PYMODULE'), 'PYMODULE'),
('xml.etree',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\etree\\__init__.py',
'PYMODULE'),
('xml.etree.ElementInclude',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\etree\\ElementInclude.py',
'PYMODULE'),
('xml.etree.ElementPath',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\etree\\ElementPath.py',
'PYMODULE'),
('xml.etree.ElementTree',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\etree\\ElementTree.py',
'PYMODULE'),
('xml.etree.cElementTree',
'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\etree\\cElementTree.py',
'PYMODULE'),
('xml.parsers', ('xml.parsers',
'C:\\Users\\Sebastian ' 'C:\\Users\\Sebastian '
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\parsers\\__init__.py', 'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\parsers\\__init__.py',

Binary file not shown.

Binary file not shown.

View File

@ -14,23 +14,23 @@ Types if import:
IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
tracking down the missing module yourself. Thanks! tracking down the missing module yourself. Thanks!
missing module named org - imported by pickle (optional) missing module named 'org.python' - imported by pickle (optional), xml.sax (delayed, conditional)
missing module named 'org.python' - imported by copy (optional), xml.sax (delayed, conditional) missing module named org - imported by copy (optional)
missing module named posix - imported by shutil (conditional), importlib._bootstrap_external (conditional), os (conditional, optional) missing module named posix - imported by os (conditional, optional), shutil (conditional), importlib._bootstrap_external (conditional)
missing module named resource - imported by posix (top-level) missing module named resource - imported by posix (top-level), psutil._pslinux (optional)
missing module named grp - imported by shutil (optional), tarfile (optional), pathlib (delayed, optional), subprocess (optional) missing module named grp - imported by shutil (optional), tarfile (optional), pathlib (delayed, optional), subprocess (optional)
missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), pathlib (delayed, conditional, optional), subprocess (optional), netrc (delayed, conditional), getpass (delayed) missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), pathlib (delayed, conditional, optional), subprocess (optional), netrc (delayed, conditional), getpass (delayed), psutil (optional)
missing module named pep517 - imported by importlib.metadata (delayed) missing module named pep517 - imported by importlib.metadata (delayed)
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional) missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional)
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional) excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional)
missing module named _scproxy - imported by urllib.request (conditional)
missing module named termios - imported by getpass (optional)
missing module named _posixsubprocess - imported by subprocess (optional) missing module named _posixsubprocess - imported by subprocess (optional)
missing module named _scproxy - imported by urllib.request (conditional)
missing module named termios - imported by getpass (optional), psutil._compat (delayed, optional)
missing module named SocketServer - imported by sshtunnel (conditional) missing module named SocketServer - imported by sshtunnel (conditional)
missing module named Queue - imported by mysql.connector.pooling (optional), sshtunnel (conditional) missing module named Queue - imported by mysql.connector.pooling (optional), sshtunnel (conditional)
missing module named invoke - imported by paramiko.config (optional) missing module named invoke - imported by paramiko.config (optional)
missing module named cryptography.x509.UnsupportedExtension - imported by cryptography.x509 (optional), urllib3.contrib.pyopenssl (optional) missing module named cryptography.x509.UnsupportedExtension - imported by cryptography.x509 (optional), urllib3.contrib.pyopenssl (optional)
missing module named fcntl - imported by paramiko.agent (delayed) missing module named fcntl - imported by paramiko.agent (delayed), psutil._compat (delayed, optional)
missing module named 'pyasn1.codec' - imported by paramiko.ssh_gss (delayed) missing module named 'pyasn1.codec' - imported by paramiko.ssh_gss (delayed)
missing module named pyasn1 - imported by paramiko.ssh_gss (delayed) missing module named pyasn1 - imported by paramiko.ssh_gss (delayed)
missing module named gssapi - imported by paramiko.ssh_gss (optional) missing module named gssapi - imported by paramiko.ssh_gss (optional)
@ -42,8 +42,14 @@ missing module named httplib - imported by mysql.connector.fabric.connection (co
missing module named urllib2 - imported by mysql.connector.fabric.connection (optional) missing module named urllib2 - imported by mysql.connector.fabric.connection (optional)
missing module named xmlrpclib - imported by mysql.connector.fabric.connection (optional) missing module named xmlrpclib - imported by mysql.connector.fabric.connection (optional)
missing module named ConfigParser - imported by mysql.connector.optionfiles (conditional) missing module named ConfigParser - imported by mysql.connector.optionfiles (conditional)
missing module named psutil._psutil_aix - imported by psutil (top-level), psutil._psaix (top-level)
missing module named psutil._psutil_sunos - imported by psutil (top-level), psutil._pssunos (top-level)
missing module named psutil._psutil_bsd - imported by psutil (top-level), psutil._psbsd (top-level)
missing module named psutil._psutil_linux - imported by psutil (top-level), psutil._pslinux (top-level)
missing module named psutil._psutil_osx - imported by psutil (conditional), psutil._psposix (conditional), psutil._psosx (top-level)
missing module named dummy_threading - imported by requests.cookies (optional), psutil._compat (optional)
missing module named _curses - imported by curses (top-level), curses.has_key (top-level)
missing module named simplejson - imported by requests.compat (conditional, optional) missing module named simplejson - imported by requests.compat (conditional, optional)
missing module named dummy_threading - imported by requests.cookies (optional)
missing module named typing_extensions - imported by urllib3.connection (conditional), urllib3.util.timeout (conditional), urllib3._base_connection (conditional), urllib3.util.request (conditional), urllib3._collections (conditional), urllib3.util.ssl_ (conditional), urllib3.util.ssltransport (conditional), urllib3.connectionpool (conditional), urllib3.response (conditional), urllib3.poolmanager (conditional) missing module named typing_extensions - imported by urllib3.connection (conditional), urllib3.util.timeout (conditional), urllib3._base_connection (conditional), urllib3.util.request (conditional), urllib3._collections (conditional), urllib3.util.ssl_ (conditional), urllib3.util.ssltransport (conditional), urllib3.connectionpool (conditional), urllib3.response (conditional), urllib3.poolmanager (conditional)
missing module named zstandard - imported by urllib3.response (optional), urllib3.util.request (optional) missing module named zstandard - imported by urllib3.response (optional), urllib3.util.request (optional)
missing module named brotli - imported by urllib3.response (optional), urllib3.util.request (optional) missing module named brotli - imported by urllib3.response (optional), urllib3.util.request (optional)

File diff suppressed because it is too large Load Diff

BIN
dist/main.exe vendored

Binary file not shown.

View File

@ -1,5 +1,5 @@
import socket import socket
from Controller import adcontroller_export, exchange_export, rds_export, smtp_export, zammad, mysql_connect from Controller import adcontroller_export, exchange_export, rds_export, smtp_export, zammad,system_info,mysql_connect
def get_local_ip(): def get_local_ip():
try: try:
@ -18,6 +18,9 @@ def get_local_ip():
print(f"Fehler beim Abrufen der lokalen IP-Adresse: {e}") print(f"Fehler beim Abrufen der lokalen IP-Adresse: {e}")
return None return None
def system_info_get(ip,name):
system_info.set_system_info(name,ip)
def adcontroller(ip,name): def adcontroller(ip,name):
adcontroller_export.adcontroller(ip, name) adcontroller_export.adcontroller(ip, name)
@ -70,7 +73,7 @@ def gucamole(ip,servername):
print("" + ip + servername) print("" + ip + servername)
query = "SELECT * FROM `Stines-GmbH`.`Kunden-Server` WHERE `IP-Adresse` = ""'{}'""".format(get_local_ip()) query = "SELECT * FROM `Stines-GmbH`.`Kunden-Server` WHERE `IP-Adresse` = ""'{}'""".format(get_local_ip())
# query = "SELECT * FROM `Stines-GmbH`.`Kunden-Server` WHERE `IP-Adresse` = ""'{}'""".format("172.19.1.3") # query = "SELECT * FROM `Stines-GmbH`.`Kunden-Server` WHERE `IP-Adresse` = ""'{}'""".format("172.18.1.6")
list = mysql_connect.get_ip(query) list = mysql_connect.get_ip(query)
@ -106,5 +109,6 @@ for row in list:
eval(funktion + '("' + ipadress + '","' + name + '","' + token + '")') eval(funktion + '("' + ipadress + '","' + name + '","' + token + '")')
else: else:
eval(funktion + '("' + ipadress + '","' + name + '")') eval(funktion + '("' + ipadress + '","' + name + '")')
eval(system_info + '("' + ipadress + '","' + name + '")')
except NameError: except NameError:
print("Die Funktion existiert nicht.") print("Die Funktion existiert nicht.")