mirror of
https://github.com/3minbe/DBC_Converter.git
synced 2026-05-17 01:23:58 +09:00
commit
4634538927
Binary file not shown.
126
DBC_Converter.py
126
DBC_Converter.py
@ -1,23 +1,100 @@
|
||||
"""
|
||||
MainView 클래스는 PyQt5를 사용하여 DBC 파일을 C 파일로 변환하는 GUI 애플리케이션을 구현합니다.
|
||||
메서드:
|
||||
__init__(self):
|
||||
MainView 클래스의 초기화 메서드입니다. UI 설정 및 초기값을 설정합니다.
|
||||
loadSettings(self):
|
||||
설정 파일을 로드하고, 기본 저장 경로 및 마지막 열린 디렉토리를 설정합니다.
|
||||
saveSettings(self):
|
||||
현재 설정을 설정 파일에 저장합니다.
|
||||
setupUI(self):
|
||||
UI를 설정하고 메뉴, 툴바, 상태바, 파일 리스트 및 기타 위젯을 추가합니다.
|
||||
selectSavePath(self):
|
||||
저장 경로를 선택하는 파일 다이얼로그를 엽니다.
|
||||
openSavePath(self):
|
||||
현재 설정된 저장 경로를 엽니다.
|
||||
openCalculator(self):
|
||||
계산기를 엽니다.
|
||||
centerWindow(self):
|
||||
창을 화면 중앙에 위치시킵니다.
|
||||
centerDialog(self, dialog):
|
||||
다이얼로그를 부모 창의 중앙에 위치시킵니다.
|
||||
FilesOpen(self):
|
||||
파일 열기 다이얼로그를 열고 선택된 파일을 파일 리스트에 추가합니다.
|
||||
deleteSelectedFiles(self):
|
||||
선택된 파일을 파일 리스트에서 삭제합니다.
|
||||
deleteAllFiles(self):
|
||||
파일 리스트의 모든 파일을 삭제합니다.
|
||||
removeChannelInfo(self, file_path):
|
||||
설정 파일에서 특정 파일의 채널 정보를 제거합니다.
|
||||
clearAlerts(self):
|
||||
알림창의 내용을 지웁니다.
|
||||
showWarning(self, title, message):
|
||||
경고 메시지 박스를 표시합니다.
|
||||
showDuplicateFilesWarning(self, duplicate_files, new_files, new_files_names):
|
||||
중복 파일 경고 메시지 박스를 표시합니다.
|
||||
sortTreeView(self, col, reverse):
|
||||
파일 리스트를 특정 열을 기준으로 정렬합니다.
|
||||
selectAllFiles(self):
|
||||
파일 리스트의 모든 파일을 선택합니다.
|
||||
invertSelection(self):
|
||||
파일 리스트의 선택을 반전시킵니다.
|
||||
setWindowSize(self, size):
|
||||
창의 크기를 설정합니다.
|
||||
openSettings(self):
|
||||
설정 다이얼로그를 엽니다.
|
||||
openAbout(self):
|
||||
프로그램 정보 다이얼로그를 엽니다.
|
||||
populateTreeView(self, file_paths):
|
||||
파일 리스트에 파일을 추가하고 채널 정보를 업데이트합니다.
|
||||
updateAlertText(self, message, file_list):
|
||||
알림창에 메시지를 추가합니다.
|
||||
convertFiles(self):
|
||||
파일을 변환하고 변환 상태를 업데이트합니다.
|
||||
onHeaderClicked(self, logicalIndex):
|
||||
파일 리스트의 헤더를 클릭했을 때 정렬을 수행합니다.
|
||||
onItemDoubleClicked(self, item, column):
|
||||
파일 리스트의 항목을 더블클릭했을 때 파일을 열거나 경로를 엽니다.
|
||||
openChannelDialog(self, item):
|
||||
채널 선택 다이얼로그를 엽니다.
|
||||
applyChannelSelection(self, item, combo, dialog):
|
||||
선택된 채널을 파일 리스트에 적용하고 다이얼로그를 닫습니다.
|
||||
updateChannelInfo(self, directory, filename, channel):
|
||||
설정 파일에 채널 정보를 업데이트합니다.
|
||||
setupCloseEvent(self):
|
||||
프로그램 종료 이벤트를 설정합니다.
|
||||
onClose(self, event):
|
||||
프로그램 종료 시 설정을 초기화하고 저장합니다.
|
||||
"""
|
||||
import os
|
||||
import sys
|
||||
from PyQt5 import QtWidgets, QtGui, QtCore
|
||||
from datetime import datetime
|
||||
import json
|
||||
import subprocess
|
||||
import shutil # 파일 복사를 위해 shutil 모듈 추가
|
||||
|
||||
class MainView(QtWidgets.QMainWindow):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
self.setWindowIcon(QtGui.QIcon("icon/icon.ico")) # 프로그램 아이콘 설정
|
||||
|
||||
if hasattr(sys, '_MEIPASS'):
|
||||
base_path = sys._MEIPASS # 실행 파일 내에서 파일 경로 설정
|
||||
else:
|
||||
base_path = os.path.abspath(".") # 실행 파일이 아닌 경우 현재 디렉토리로 설정
|
||||
|
||||
icon_path = os.path.join(base_path, "icon/icon.ico") # 아이콘 경로 설정
|
||||
self.setWindowIcon(QtGui.QIcon(icon_path)) # 프로그램 아이콘 설정
|
||||
self.version = "1.0.0" # 프로그램 버전 설정
|
||||
self.default_save_path = os.path.join(os.path.expanduser("~"), "Desktop") # 바탕화면 경로 설정
|
||||
self.file_paths = [] # 파일 경로 저장 리스트
|
||||
self.channel_info = {} # 채널 정보 초기화
|
||||
self.loadSettings() # 설정 로드
|
||||
self.setupUI() # UI 설정
|
||||
self.setupUI(base_path) # UI 설정
|
||||
self.centerWindow() # 창을 화면 중앙에 위치
|
||||
self.sortTreeView(0, True) # 기본 파일명 오름차순 정렬
|
||||
self.channel_options = ["CH0", "CH1", "CH2", "CH3", "CH4", "CH5"] # 채널 옵션 설정
|
||||
self.setupCloseEvent() # 프로그램 종료 이벤트 설정
|
||||
|
||||
def loadSettings(self):
|
||||
self.settings_file = "settings.json"
|
||||
@ -42,7 +119,7 @@ class MainView(QtWidgets.QMainWindow):
|
||||
with open(self.settings_file, "w", encoding="utf-8") as file:
|
||||
json.dump(self.settings, file, ensure_ascii=False, indent=4) # 설정 파일 저장
|
||||
|
||||
def setupUI(self):
|
||||
def setupUI(self, base_path):
|
||||
self.setWindowTitle("DBC to C Converter")
|
||||
self.setGeometry(100, 100, 1000, 600) # 창 크기 조정
|
||||
|
||||
@ -117,23 +194,28 @@ class MainView(QtWidgets.QMainWindow):
|
||||
# 툴바 추가
|
||||
self.toolbar = self.addToolBar("Main Toolbar")
|
||||
|
||||
add_file_action = QtWidgets.QAction(QtGui.QIcon("img/add_file.png"), "파일 추가\n(Ctrl+O)", self)
|
||||
add_file_action_img_path = os.path.join(base_path, "img/add_file.png") # 파일 추가 아이콘 경로 설정
|
||||
add_file_action = QtWidgets.QAction(QtGui.QIcon(add_file_action_img_path), "파일 추가\n(Ctrl+O)", self)
|
||||
add_file_action.triggered.connect(self.FilesOpen)
|
||||
self.toolbar.addAction(add_file_action)
|
||||
|
||||
delete_file_action = QtWidgets.QAction(QtGui.QIcon("img/delete_file.png"), "선택 파일 삭제\n(Delete)", self)
|
||||
delete_file_action_img_path = os.path.join(base_path, "img/delete_file.png") # 파일 삭제 아이콘 경로 설정
|
||||
delete_file_action = QtWidgets.QAction(QtGui.QIcon(delete_file_action_img_path), "선택 파일 삭제\n(Delete)", self)
|
||||
delete_file_action.triggered.connect(self.deleteSelectedFiles)
|
||||
self.toolbar.addAction(delete_file_action)
|
||||
|
||||
delete_all_action = QtWidgets.QAction(QtGui.QIcon("img/delete_all.png"), "모든 파일 삭제\n(Ctrl+Shift+Delete)", self)
|
||||
delete_all_action_img_path = os.path.join(base_path, "img/delete_all.png") # 모든 파일 삭제 아이콘 경로 설정
|
||||
delete_all_action = QtWidgets.QAction(QtGui.QIcon(delete_all_action_img_path), "모든 파일 삭제\n(Ctrl+Shift+Delete)", self)
|
||||
delete_all_action.triggered.connect(self.deleteAllFiles)
|
||||
self.toolbar.addAction(delete_all_action)
|
||||
|
||||
delete_description_action = QtWidgets.QAction(QtGui.QIcon("img/delete_description.png"), "알림창 내용 삭제\n(Ctrl+Shift+D)", self)
|
||||
delete_description_action_img_path = os.path.join(base_path, "img/delete_description.png") # 메시지 창 내용 삭제 아이콘 경로 설정
|
||||
delete_description_action = QtWidgets.QAction(QtGui.QIcon(delete_description_action_img_path), "메시지 창 내용 삭제\n(Ctrl+Shift+D)", self)
|
||||
delete_description_action.triggered.connect(self.clearAlerts)
|
||||
self.toolbar.addAction(delete_description_action)
|
||||
|
||||
convert_action = QtWidgets.QAction(QtGui.QIcon("img/convert.png"), "변환\n(Ctrl+R)", self)
|
||||
convert_action_img_path = os.path.join(base_path, "img/convert.png") # 변환 아이콘 경로 설정
|
||||
convert_action = QtWidgets.QAction(QtGui.QIcon(convert_action_img_path), "변환\n(Ctrl+R)", self)
|
||||
convert_action.triggered.connect(self.convertFiles)
|
||||
self.toolbar.addAction(convert_action)
|
||||
|
||||
@ -239,7 +321,7 @@ class MainView(QtWidgets.QMainWindow):
|
||||
for item in selected_items:
|
||||
index = self.tree.indexOfTopLevelItem(item)
|
||||
file_path = os.path.join(item.text(1), item.text(0))
|
||||
self.removeChannelInfo(file_path) # 추가된 부분
|
||||
self.removeChannelInfo(file_path) # 채널 정보 제거
|
||||
self.tree.takeTopLevelItem(index)
|
||||
self.file_paths = [self.tree.topLevelItem(i).text(1) + '/' + self.tree.topLevelItem(i).text(0) for i in range(self.tree.topLevelItemCount())]
|
||||
self.updateAlertText(f"파일 삭제 완료", deleted_files)
|
||||
@ -254,7 +336,7 @@ class MainView(QtWidgets.QMainWindow):
|
||||
for i in range(self.tree.topLevelItemCount()):
|
||||
item = self.tree.topLevelItem(i)
|
||||
file_path = os.path.join(item.text(1), item.text(0))
|
||||
self.removeChannelInfo(file_path) # 추가된 부분
|
||||
self.removeChannelInfo(file_path) # 채널 정보 제거
|
||||
self.tree.clear()
|
||||
self.file_paths = []
|
||||
self.updateAlertText(f"모든 파일 삭제 완료", deleted_files)
|
||||
@ -359,7 +441,7 @@ class MainView(QtWidgets.QMainWindow):
|
||||
fsize = format_file_size(os.path.getsize(file_path))
|
||||
item = QtWidgets.QTreeWidgetItem([file, directory, self.channel_options[0], fsize])
|
||||
self.tree.addTopLevelItem(item)
|
||||
self.updateChannelInfo(directory, file, self.channel_options[0]) # Set default channel to 0
|
||||
self.updateChannelInfo(directory, file, self.channel_options[0]) # 기본 채널을 0으로 설정
|
||||
self.file_paths = [self.tree.topLevelItem(i).text(1) + '/' + self.tree.topLevelItem(i).text(0) for i in range(self.tree.topLevelItemCount())]
|
||||
self.saveSettings()
|
||||
|
||||
@ -379,15 +461,19 @@ class MainView(QtWidgets.QMainWindow):
|
||||
self.progress_bar.setVisible(True)
|
||||
self.progress_bar.setValue(0)
|
||||
total_files = len(self.file_paths)
|
||||
timestamp = datetime.now().strftime("%y-%m-%d")
|
||||
timestamp = datetime.now().strftime("%y-%m-%d-%a-%H-%M-%S") # 날짜 및 시간 형식 변경
|
||||
base_output_dir = os.path.join(self.default_save_path, "DBC 변환", timestamp)
|
||||
for index, file_path in enumerate(self.file_paths):
|
||||
file_name = os.path.splitext(os.path.basename(file_path))[0]
|
||||
rx_output_dir = os.path.join(self.default_save_path, "DBC 변환", timestamp, file_name, "RX")
|
||||
tx_output_dir = os.path.join(self.default_save_path, "DBC 변환", timestamp, file_name, "TX")
|
||||
rx_output_dir = os.path.join(base_output_dir, file_name, "RX")
|
||||
tx_output_dir = os.path.join(base_output_dir, file_name, "TX")
|
||||
dbc_output_dir = os.path.join(base_output_dir, "#DBC") # DBC 파일 저장 경로 설정
|
||||
os.makedirs(rx_output_dir, exist_ok=True)
|
||||
os.makedirs(tx_output_dir, exist_ok=True)
|
||||
os.makedirs(dbc_output_dir, exist_ok=True) # DBC 파일 저장 경로 생성
|
||||
channel_info = self.settings.get("channel_info", {}).get(os.path.basename(file_path), "CH0")
|
||||
try:
|
||||
shutil.copy(file_path, dbc_output_dir) # DBC 파일 복사
|
||||
subprocess.run(["python", "DBC_to_C_RX.py", file_path, rx_output_dir, json.dumps({os.path.basename(file_path): channel_info})], check=True)
|
||||
subprocess.run(["python", "DBC_to_C_TX.py", file_path, tx_output_dir, json.dumps({os.path.basename(file_path): channel_info})], check=True)
|
||||
self.updateAlertText(f"변환 성공", [file_path])
|
||||
@ -440,7 +526,7 @@ class MainView(QtWidgets.QMainWindow):
|
||||
|
||||
def applyChannelSelection(self, item, combo, dialog):
|
||||
item.setText(2, combo.currentText())
|
||||
self.updateChannelInfo(item.text(1), item.text(0), combo.currentText()) # 추가된 부분
|
||||
self.updateChannelInfo(item.text(1), item.text(0), combo.currentText()) # 채널 정보 업데이트
|
||||
dialog.close()
|
||||
|
||||
def updateChannelInfo(self, directory, filename, channel):
|
||||
@ -453,6 +539,16 @@ class MainView(QtWidgets.QMainWindow):
|
||||
self.saveSettings()
|
||||
print(f"[INFO] Updated channel info for {file_name} to {channel}")
|
||||
|
||||
def setupCloseEvent(self):
|
||||
self.closeEvent = self.onClose # 종료 이벤트 핸들러 설정
|
||||
|
||||
def onClose(self, event):
|
||||
self.file_paths = [] # 파일 경로 초기화
|
||||
self.settings["file_paths"] = [] # 설정 파일 경로 초기화
|
||||
self.settings["channel_info"] = {} # 채널 정보 초기화
|
||||
self.saveSettings() # 설정 저장
|
||||
event.accept() # 종료 이벤트 수락
|
||||
|
||||
if __name__ == '__main__':
|
||||
app = QtWidgets.QApplication(sys.argv)
|
||||
main_view = MainView()
|
||||
|
||||
@ -1,14 +1,27 @@
|
||||
# -*- mode: python ; coding: utf-8 -*-
|
||||
|
||||
added_files = [("./img/*", './img'),
|
||||
("./icon/*", '.icon'),
|
||||
("./icon.ico", '.')]
|
||||
|
||||
added_files = [("./img/*", './img')]
|
||||
|
||||
a = Analysis(
|
||||
['DBC_Converter.py'],
|
||||
a = Analysis(['DBC_Converter.py'],
|
||||
pathex=[],
|
||||
binaries=[],
|
||||
datas=added_files,
|
||||
hiddenimports=[PyQt5],
|
||||
hiddenimports=[
|
||||
'PyQt5',
|
||||
'PyQt5.QtCore',
|
||||
'PyQt5.QtGui',
|
||||
'PyQt5.QtWidgets',
|
||||
'PyQt5.QtPrintSupport',
|
||||
'PyQt5.QtSvg',
|
||||
'PyQt5.QtNetwork',
|
||||
'PyQt5.QtWebEngineWidgets',
|
||||
'PyQt5.QtWebEngineCore',
|
||||
'PyQt5.QtWebChannel',
|
||||
'PyQt5.QtWebSockets',
|
||||
'cantools',
|
||||
],
|
||||
hookspath=[],
|
||||
hooksconfig={},
|
||||
runtime_hooks=[],
|
||||
@ -18,25 +31,21 @@ a = Analysis(
|
||||
)
|
||||
pyz = PYZ(a.pure)
|
||||
|
||||
exe = EXE(
|
||||
pyz,
|
||||
exe = EXE(pyz,
|
||||
a.scripts,
|
||||
a.binaries,
|
||||
a.datas,
|
||||
[],
|
||||
name='DBC_Converter',
|
||||
exclude_binaries=True,
|
||||
name='DBC Converter',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
runtime_tmpdir=None,
|
||||
console=True,
|
||||
console=False,
|
||||
disable_windowed_traceback=False,
|
||||
argv_emulation=False,
|
||||
target_arch=None,
|
||||
codesign_identity=None,
|
||||
entitlements_file=None,
|
||||
icon='./icon.ico'
|
||||
)
|
||||
|
||||
coll = COLLECT(exe,
|
||||
@ -46,5 +55,5 @@ coll = COLLECT(exe,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
name=dist안 폴더이름
|
||||
name='DBC Converter'
|
||||
)
|
||||
@ -3,7 +3,6 @@ import sys
|
||||
import cantools
|
||||
from datetime import datetime
|
||||
import json
|
||||
import os
|
||||
|
||||
def parse_dbc_file(file_path):
|
||||
signals = []
|
||||
@ -96,12 +95,12 @@ def parse_dbc_file(file_path):
|
||||
return signals
|
||||
|
||||
|
||||
def generate_vcu_rx_function_with_factors(dbc_path, output_file):
|
||||
def generate_vcu_rx_function_with_factors(dbc_path, output_file, channel_info):
|
||||
# Load the DBC file
|
||||
db = cantools.database.load_file(dbc_path)
|
||||
|
||||
# Initialize the header of the C file
|
||||
c_file_content = """
|
||||
c_file_content = f"""
|
||||
#include "can.h"
|
||||
|
||||
// Declare Factors and Offsets for signals
|
||||
@ -131,9 +130,10 @@ def generate_vcu_rx_function_with_factors(dbc_path, output_file):
|
||||
# Check if "VCU" is in the receivers list
|
||||
if "VCU" in message.receivers:
|
||||
# Define the temporary struct
|
||||
temp_struct_name = f"CH0_MV1_0x{message.frame_id:X}_temp"
|
||||
channel = channel_info.get(str(message.frame_id), "CH0") # 기본 채널 설정
|
||||
temp_struct_name = f"{channel}_MV1_0x{message.frame_id:X}_temp"
|
||||
c_file_content += f"""
|
||||
void Receive_{message.name}_CH0_0x{message.frame_id:X}(void)
|
||||
void Receive_{message.name}_{channel}_0x{message.frame_id:X}(void)
|
||||
{{
|
||||
struct {{
|
||||
"""
|
||||
@ -153,16 +153,16 @@ void Receive_{message.name}_CH0_0x{message.frame_id:X}(void)
|
||||
start_byte = signal.start // 8
|
||||
start_bit = signal.start % 8
|
||||
signal_length = signal.length
|
||||
shift_expr = f"(CAN_ch[0].rx.buf[{start_byte}] >> shift{start_bit})"
|
||||
shift_expr = f"(CAN_ch[{channel}].rx.buf[{start_byte}] >> shift{start_bit})"
|
||||
if signal_length > 8:
|
||||
# Handle multi-byte signals
|
||||
multi_byte_expr = []
|
||||
for i in range((signal_length + 7) // 8):
|
||||
byte_shift = i * 8
|
||||
if i == 0:
|
||||
multi_byte_expr.append(f"(CAN_ch[0].rx.buf[{start_byte + i}] >> shift{start_bit})")
|
||||
multi_byte_expr.append(f"(CAN_ch[{channel}].rx.buf[{start_byte + i}] >> shift{start_bit})")
|
||||
else:
|
||||
multi_byte_expr.append(f"(CAN_ch[0].rx.buf[{start_byte + i}] << shift{byte_shift})")
|
||||
multi_byte_expr.append(f"(CAN_ch[{channel}].rx.buf[{start_byte + i}] << shift{byte_shift})")
|
||||
shift_expr = " | ".join(multi_byte_expr)
|
||||
c_file_content += f" {temp_struct_name}.{signal.name}_temp = ({shift_expr}) & _{signal_length}bit;\n"
|
||||
|
||||
@ -171,14 +171,14 @@ void Receive_{message.name}_CH0_0x{message.frame_id:X}(void)
|
||||
# Assign to final ECU variables
|
||||
for signal in message.signals:
|
||||
factor_name = f"Factor_{str(signal.scale).replace('.', '_')}"
|
||||
offset_name = f"Offset_m_{abs(signal.offset):.0f}"
|
||||
offset_name = f"Offset_m_{abs(signal.offset)::.0f}"
|
||||
factor = f" * {factor_name}" if signal.scale != 1 else ""
|
||||
offset = f" + {offset_name}" if signal.offset != 0 else ""
|
||||
temp_var = f"{temp_struct_name}.{signal.name}_temp"
|
||||
if signal.is_signed:
|
||||
c_file_content += f" ECU3.RX.CH0_{message.name}_0x{message.frame_id:X}.{signal.name} = ({temp_var}{factor}){offset};\n"
|
||||
c_file_content += f" VCU.RX.{channel}_{message.name}_0x{message.frame_id:X}.{signal.name} = ({temp_var}{factor}){offset};\n"
|
||||
else:
|
||||
c_file_content += f" ECU3.RX.CH0_{message.name}_0x{message.frame_id:X}.{signal.name} = {temp_var}{factor}{offset};\n"
|
||||
c_file_content += f" VCU.RX.{channel}_{message.name}_0x{message.frame_id:X}.{signal.name} = {temp_var}{factor}{offset};\n"
|
||||
|
||||
c_file_content += "}\n"
|
||||
|
||||
@ -188,7 +188,7 @@ void Receive_{message.name}_CH0_0x{message.frame_id:X}(void)
|
||||
print(f"Generated RX function C file with Factors and Offsets: {output_file}")
|
||||
|
||||
|
||||
def generate_input_functions(signals, output_file):
|
||||
def generate_input_functions(signals, output_file, channel_info):
|
||||
if not signals:
|
||||
print("[WARNING] No signals to generate Input functions for.")
|
||||
return
|
||||
@ -196,15 +196,16 @@ def generate_input_functions(signals, output_file):
|
||||
with open(output_file, 'w') as f:
|
||||
for message in signals:
|
||||
hex_id = f"0x{int(message['id']):X}"
|
||||
function_name = f"void Input_Data_Set_{message['name']}_CH0_{hex_id}(void)"
|
||||
channel = channel_info.get(str(message['id']), "CH0")
|
||||
function_name = f"void Input_Data_Set_{message['name']}_{channel}_{hex_id}(void)"
|
||||
f.write(f"{function_name}\n{{\n")
|
||||
for signal in message["signals"]:
|
||||
f.write(f" GV_{signal['name']} = ECU3.RX.CH0_RX_{message['name']}_{hex_id}.{signal['name']};\n")
|
||||
f.write(f" GV_{signal['name']} = VCU.RX.{channel}_RX_{message['name']}_{hex_id}.{signal['name']};\n")
|
||||
f.write("}\n\n")
|
||||
print(f"[INFO] Input functions written to {output_file}")
|
||||
|
||||
|
||||
def generate_structs(signals, output_file):
|
||||
def generate_structs(signals, output_file, channel_info):
|
||||
if not signals:
|
||||
print("[WARNING] No signals to generate structs for.")
|
||||
return
|
||||
@ -216,18 +217,19 @@ def generate_structs(signals, output_file):
|
||||
|
||||
for message in signals:
|
||||
hex_id = f"0x{int(message['id']):X}"
|
||||
channel = channel_info.get(str(message['id']), "CH0")
|
||||
f.write(f"typedef struct\n{{\n")
|
||||
for signal in message["signals"]:
|
||||
if signal["size"] <= 32:
|
||||
f.write(f" uint32_t {signal['name']} : {signal['size']};\n")
|
||||
else:
|
||||
f.write(f" float {signal['name']};\n")
|
||||
f.write(f"}} CH0_RX_{message['name']}_{hex_id};\n\n")
|
||||
f.write(f"}} {channel}_RX_{message['name']}_{hex_id};\n\n")
|
||||
f.write("#endif // GENERATED_STRUCTS_H\n")
|
||||
print(f"[INFO] Structs written to {output_file}")
|
||||
|
||||
|
||||
def generate_globals(signals, output_file, header_file):
|
||||
def generate_globals(signals, output_file, header_file, channel_info):
|
||||
if not signals:
|
||||
print("[WARNING] No signals to generate globals for.")
|
||||
return
|
||||
@ -236,6 +238,7 @@ def generate_globals(signals, output_file, header_file):
|
||||
f.write("#include <generated_globals.h>\n")
|
||||
|
||||
for message in signals:
|
||||
channel = channel_info.get(str(message['id']), "CH0")
|
||||
for signal in message["signals"]:
|
||||
if signal["size"] > 32:
|
||||
f.write(f"float GV_{signal['name']} = 0.0f;\n")
|
||||
@ -247,6 +250,7 @@ def generate_globals(signals, output_file, header_file):
|
||||
f.write("#define GENERATED_GLOBALS_H\n\n")
|
||||
f.write("#include <stdint.h>\n\n")
|
||||
for message in signals:
|
||||
channel = channel_info.get(str(message['id']), "CH0")
|
||||
for signal in message["signals"]:
|
||||
if signal["size"] > 32:
|
||||
f.write(f"extern float GV_{signal['name']};\n")
|
||||
@ -256,16 +260,17 @@ def generate_globals(signals, output_file, header_file):
|
||||
print(f"[INFO] Globals and extern declarations written to {output_file} and {header_file}")
|
||||
|
||||
|
||||
def generate_initialization(signals, output_file):
|
||||
def generate_initialization(signals, output_file, channel_info):
|
||||
if not signals:
|
||||
print("[WARNING] No signals to generate initialization for.")
|
||||
return
|
||||
|
||||
with open(output_file, 'w') as f:
|
||||
f.write("void ECU3_Data_Init(void)\n{\n")
|
||||
f.write("void VCU_Data_Init(void)\n{\n")
|
||||
for message in signals:
|
||||
hex_id = f"0x{int(message['id']):X}"
|
||||
struct_prefix = f"ECU3.RX.CH0_RX_{message['name']}_{hex_id}"
|
||||
channel = channel_info.get(str(message['id']), "CH0")
|
||||
struct_prefix = f"VCU.RX.{channel}_RX_{message['name']}_{hex_id}"
|
||||
for signal in message["signals"]:
|
||||
if signal["offset"] != 0.0:
|
||||
if signal["size"] <= 32:
|
||||
@ -285,6 +290,20 @@ def generate_initialization(signals, output_file):
|
||||
if __name__ == "__main__":
|
||||
dbc_file_path = sys.argv[1]
|
||||
output_dir = sys.argv[2]
|
||||
channel_info_path = sys.argv[3]
|
||||
|
||||
with open(channel_info_path, 'r', encoding='cp1252') as f:
|
||||
try:
|
||||
channel_info = json.load(f)
|
||||
# Convert channel info to int
|
||||
for key in channel_info:
|
||||
channel_info[key] = int(channel_info[key].replace("CH", ""))
|
||||
except json.JSONDecodeError as e:
|
||||
print(f"[ERROR] Error decoding JSON: {e}")
|
||||
sys.exit(1)
|
||||
except Exception as e:
|
||||
print(f"[ERROR] Error reading channel info file: {e}")
|
||||
sys.exit(1)
|
||||
|
||||
output_c_file = f"{output_dir}/generated_receive.c"
|
||||
output_input_file = f"{output_dir}/generated_input.c"
|
||||
@ -294,8 +313,8 @@ if __name__ == "__main__":
|
||||
output_initialization_file = f"{output_dir}/generated_init.c"
|
||||
|
||||
signals = parse_dbc_file(dbc_file_path)
|
||||
generate_vcu_rx_function_with_factors(dbc_file_path, output_c_file)
|
||||
generate_input_functions(signals, output_input_file)
|
||||
generate_structs(signals, output_structs_file)
|
||||
generate_globals(signals, output_globals_file, output_globals_header)
|
||||
generate_initialization(signals, output_initialization_file)
|
||||
generate_vcu_rx_function_with_factors(dbc_file_path, output_c_file, channel_info)
|
||||
generate_input_functions(signals, output_input_file, channel_info)
|
||||
generate_structs(signals, output_structs_file, channel_info)
|
||||
generate_globals(signals, output_globals_file, output_globals_header, channel_info)
|
||||
generate_initialization(signals, output_initialization_file, channel_info)
|
||||
@ -1,6 +1 @@
|
||||
@echo off
|
||||
REM 실행 파일 생성
|
||||
pyinstaller -w --onefile --distpath . DBC_Converter.py
|
||||
|
||||
echo 실행 파일 생성 완료
|
||||
pause
|
||||
pyinstaller DBC_Converter.spec
|
||||
File diff suppressed because it is too large
Load Diff
773
build/DBC_Converter/COLLECT-00.toc
Normal file
773
build/DBC_Converter/COLLECT-00.toc
Normal file
@ -0,0 +1,773 @@
|
||||
([('DBC Converter.exe',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\DBC '
|
||||
'Converter.exe',
|
||||
'EXECUTABLE'),
|
||||
('python313.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\python313.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\bearer\\qgenericbearer.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\bearer\\qgenericbearer.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\libcrypto-1_1-x64.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libcrypto-1_1-x64.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\libssl-1_1-x64.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libssl-1_1-x64.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\printsupport\\windowsprintersupport.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\printsupport\\windowsprintersupport.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qico.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qico.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\libEGL.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libEGL.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\opengl32sw.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\opengl32sw.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\libGLESv2.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libGLESv2.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\d3dcompiler_47.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\d3dcompiler_47.dll',
|
||||
'BINARY'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('_queue.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('_ctypes.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_ctypes.pyd',
|
||||
'EXTENSION'),
|
||||
('_wmi.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_wmi.pyd',
|
||||
'EXTENSION'),
|
||||
('_overlapped.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_overlapped.pyd',
|
||||
'EXTENSION'),
|
||||
('_ssl.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_ssl.pyd',
|
||||
'EXTENSION'),
|
||||
('_asyncio.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_asyncio.pyd',
|
||||
'EXTENSION'),
|
||||
('_multiprocessing.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_multiprocessing.pyd',
|
||||
'EXTENSION'),
|
||||
('pyexpat.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\pyexpat.pyd',
|
||||
'EXTENSION'),
|
||||
('bitstruct\\c.cp313-win_amd64.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\bitstruct\\c.cp313-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('_elementtree.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_elementtree.pyd',
|
||||
'EXTENSION'),
|
||||
('_sqlite3.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_sqlite3.pyd',
|
||||
'EXTENSION'),
|
||||
('wrapt\\_wrappers.cp313-win_amd64.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\_wrappers.cp313-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtWebSockets.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtWebSockets.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtWebChannel.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtWebChannel.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtNetwork.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtNetwork.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtSvg.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtSvg.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtPrintSupport.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtPrintSupport.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtCore.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtCore.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtGui.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtGui.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtWidgets.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtWidgets.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\sip.cp313-win_amd64.pyd',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\sip.cp313-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('api-ms-win-crt-heap-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-heap-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-string-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-string-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-convert-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-convert-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-math-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-math-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-runtime-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-runtime-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-stdio-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-stdio-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-locale-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-locale-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-time-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-time-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-environment-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-environment-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-conio-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-conio-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-process-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-process-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Core.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Core.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Network.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Network.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-utility-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-crt-utility-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\VCRUNTIME140.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Gui.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Gui.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5PrintSupport.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5PrintSupport.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Svg.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Svg.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\MSVCP140.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Quick.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Quick.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5WebSockets.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebSockets.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5DBus.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5DBus.dll',
|
||||
'BINARY'),
|
||||
('VCRUNTIME140_1.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\VCRUNTIME140_1.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Widgets.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Widgets.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll',
|
||||
'BINARY'),
|
||||
('libcrypto-3.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\libcrypto-3.dll',
|
||||
'BINARY'),
|
||||
('libffi-8.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\libffi-8.dll',
|
||||
'BINARY'),
|
||||
('libssl-3.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\libssl-3.dll',
|
||||
'BINARY'),
|
||||
('sqlite3.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\sqlite3.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\python3.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5WebChannel.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebChannel.dll',
|
||||
'BINARY'),
|
||||
('ucrtbase.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\ucrtbase.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\MSVCP140_1.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140_1.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Qml.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Qml.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5QmlModels.dll',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5QmlModels.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-processthreads-l1-1-1.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-processthreads-l1-1-1.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-localization-l1-2-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-localization-l1-2-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-synch-l1-2-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-synch-l1-2-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-heap-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-heap-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-util-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-util-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-debug-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-debug-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-memory-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-memory-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-handle-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-handle-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-datetime-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-datetime-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-file-l2-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-file-l2-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-interlocked-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-interlocked-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-processthreads-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-processthreads-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-timezone-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-timezone-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-profile-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-profile-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-synch-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-synch-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-file-l1-2-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-file-l1-2-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-string-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-string-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-console-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-console-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-file-l1-1-0.dll',
|
||||
'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance '
|
||||
'Toolkit\\api-ms-win-core-file-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('.icon\\icon(org).ico',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon(org).ico',
|
||||
'DATA'),
|
||||
('.icon\\icon(org).png',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon(org).png',
|
||||
'DATA'),
|
||||
('.icon\\icon.png',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon.png',
|
||||
'DATA'),
|
||||
('.icon\\icon.pptx',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon.pptx',
|
||||
'DATA'),
|
||||
('icon.ico',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon.ico',
|
||||
'DATA'),
|
||||
('img\\add_file.png',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\add_file.png',
|
||||
'DATA'),
|
||||
('img\\add_folder.png',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\add_folder.png',
|
||||
'DATA'),
|
||||
('img\\convert.png',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\convert.png',
|
||||
'DATA'),
|
||||
('img\\delete_all.png',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\delete_all.png',
|
||||
'DATA'),
|
||||
('img\\delete_description.png',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\delete_description.png',
|
||||
'DATA'),
|
||||
('img\\delete_file.png',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\delete_file.png',
|
||||
'DATA'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\base_library.zip',
|
||||
'DATA'),
|
||||
('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\top_level.txt',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\INSTALLER',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\RECORD',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\RECORD',
|
||||
'DATA'),
|
||||
('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\REQUESTED',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\REQUESTED',
|
||||
'DATA'),
|
||||
('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\METADATA',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\WHEEL',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\LICENSE',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\LICENSE',
|
||||
'DATA'),
|
||||
('setuptools\\_vendor\\jaraco\\text\\Lorem ipsum.txt',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\text\\Lorem '
|
||||
'ipsum.txt',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtwebsockets_ja.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_ja.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtwebsockets_pl.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_pl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtwebsockets_ru.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_ru.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtwebsockets_fr.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_fr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtwebsockets_es.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_es.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtwebsockets_de.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_de.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtwebsockets_en.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_en.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtwebsockets_ca.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_ca.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtwebsockets_ko.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_ko.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtwebsockets_uk.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_uk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_fi.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fi.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_tr.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_tr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ca.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ca.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_sk.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_sk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_uk.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_uk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_hu.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_hu.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_bg.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_bg.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_da.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_da.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_gd.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gd.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_tr.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_tr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_it.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_it.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_en.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_en.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_it.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_it.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_gl.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ru.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ru.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_de.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_de.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ar.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ar.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_sl.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_da.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_da.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_pl.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_hu.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_hu.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ja.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ja.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ko.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ko.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_lv.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_lv.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_cs.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_cs.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_he.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_he.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_zh_CN.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_CN.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_sk.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ru.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ru.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_hu.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_hu.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_de.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_de.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_gd.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_gd.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_he.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_he.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ko.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ko.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_fr.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ca.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ca.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_sl.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_zh_TW.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_TW.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_it.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_it.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ar.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ar.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ja.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ja.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_pt.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pt.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_uk.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_uk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_da.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_da.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_cs.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_cs.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_es.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_es.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ja.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ja.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_lt.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lt.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_de.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_de.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_fi.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fi.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_sk.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_pl.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_pl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_fa.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fa.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_en.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_en.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_bg.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_bg.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_gl.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_gl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_es.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_es.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_lv.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lv.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_es.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_es.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_tr.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_tr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_pl.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_pl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_uk.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_uk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_fr.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_fr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_sv.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sv.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_cs.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_cs.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_bg.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_bg.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_fr.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ko.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ko.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ca.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ca.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ru.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ru.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_en.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_en.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ar.qm',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ar.qm',
|
||||
'DATA'),
|
||||
('cantools-40.0.0.dist-info\\REQUESTED',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\REQUESTED',
|
||||
'DATA'),
|
||||
('cantools-40.0.0.dist-info\\METADATA',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('python_can-4.5.0.dist-info\\WHEEL',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('wheel-0.45.1.dist-info\\REQUESTED',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\REQUESTED',
|
||||
'DATA'),
|
||||
('python_can-4.5.0.dist-info\\METADATA',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('cantools-40.0.0.dist-info\\WHEEL',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('wheel-0.45.1.dist-info\\WHEEL',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('python_can-4.5.0.dist-info\\entry_points.txt',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\entry_points.txt',
|
||||
'DATA'),
|
||||
('cantools-40.0.0.dist-info\\RECORD',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\RECORD',
|
||||
'DATA'),
|
||||
('python_can-4.5.0.dist-info\\RECORD',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\RECORD',
|
||||
'DATA'),
|
||||
('cantools-40.0.0.dist-info\\top_level.txt',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('python_can-4.5.0.dist-info\\LICENSE.txt',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\LICENSE.txt',
|
||||
'DATA'),
|
||||
('cantools-40.0.0.dist-info\\entry_points.txt',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\entry_points.txt',
|
||||
'DATA'),
|
||||
('cantools-40.0.0.dist-info\\INSTALLER',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('wheel-0.45.1.dist-info\\entry_points.txt',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\entry_points.txt',
|
||||
'DATA'),
|
||||
('python_can-4.5.0.dist-info\\top_level.txt',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('cantools-40.0.0.dist-info\\LICENSE',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\LICENSE',
|
||||
'DATA'),
|
||||
('wheel-0.45.1.dist-info\\INSTALLER',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('wheel-0.45.1.dist-info\\METADATA',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('wheel-0.45.1.dist-info\\LICENSE.txt',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\LICENSE.txt',
|
||||
'DATA'),
|
||||
('python_can-4.5.0.dist-info\\INSTALLER',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('wheel-0.45.1.dist-info\\RECORD',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\RECORD',
|
||||
'DATA')],)
|
||||
BIN
build/DBC_Converter/DBC Converter.exe
Normal file
BIN
build/DBC_Converter/DBC Converter.exe
Normal file
Binary file not shown.
BIN
build/DBC_Converter/DBC Converter.pkg
Normal file
BIN
build/DBC_Converter/DBC Converter.pkg
Normal file
Binary file not shown.
@ -1,8 +1,9 @@
|
||||
('C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.exe',
|
||||
('C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\DBC '
|
||||
'Converter.exe',
|
||||
False,
|
||||
False,
|
||||
True,
|
||||
False,
|
||||
False,
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-console.ico',
|
||||
['C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\./icon.ico'],
|
||||
None,
|
||||
False,
|
||||
False,
|
||||
@ -29,541 +30,56 @@
|
||||
None,
|
||||
None,
|
||||
None,
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\DBC_Converter.pkg',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\DBC '
|
||||
'Converter.pkg',
|
||||
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||
('PYZ-00.pyz',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\PYZ-00.pyz',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\struct.pyc',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod01_archive.pyc',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod02_importers.pyc',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pyqt5',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgres',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgres.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_setuptools',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_setuptools.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pyqt5',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py',
|
||||
'PYSOURCE'),
|
||||
('DBC_Converter',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.py',
|
||||
'PYSOURCE'),
|
||||
('python310.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\python310.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qico.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qico.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\libGLESv2.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libGLESv2.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\libEGL.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libEGL.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\d3dcompiler_47.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\d3dcompiler_47.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\opengl32sw.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\opengl32sw.dll',
|
||||
'BINARY'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtCore.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtCore.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtGui.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtGui.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtWidgets.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtWidgets.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\sip.cp310-win_amd64.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\sip.cp310-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('api-ms-win-crt-string-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-string-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-locale-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-locale-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-math-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-math-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-process-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-process-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\VCRUNTIME140.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-convert-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-convert-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-runtime-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-runtime-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-stdio-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-stdio-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-heap-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-heap-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-time-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-time-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-conio-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-conio-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-environment-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-environment-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Core.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Core.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Gui.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Gui.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-utility-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-utility-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5DBus.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5DBus.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Svg.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Svg.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Quick.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Quick.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5WebSockets.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebSockets.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Network.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Network.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\MSVCP140.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Widgets.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Widgets.dll',
|
||||
'BINARY'),
|
||||
('libcrypto-1_1.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\libcrypto-1_1.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\python3.dll',
|
||||
'BINARY'),
|
||||
('ucrtbase.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\ucrtbase.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\MSVCP140_1.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140_1.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5QmlModels.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5QmlModels.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Qml.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Qml.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-handle-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-handle-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-file-l1-2-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l1-2-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-heap-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-heap-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-util-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-util-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-localization-l1-2-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-localization-l1-2-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-debug-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-debug-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-memory-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-memory-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-interlocked-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-interlocked-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-profile-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-profile-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-fibers-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-fibers-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-file-l2-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l2-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-synch-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-synch-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-datetime-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-datetime-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-processthreads-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processthreads-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-synch-l1-2-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-synch-l1-2-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-file-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-processthreads-l1-1-1.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processthreads-l1-1-1.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-console-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-console-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-timezone-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-timezone-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-string-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-string-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\base_library.zip',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ca.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ca.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ru.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ru.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_fi.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fi.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_it.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_it.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_pt.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pt.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_gd.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_gd.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_he.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_he.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ar.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ar.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_es.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_es.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_de.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_de.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_fi.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fi.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_gl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_cs.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_cs.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_bg.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_bg.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_cs.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_cs.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_es.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_es.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ru.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ru.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_tr.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_tr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_sl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_zh_TW.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_TW.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ca.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ca.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_uk.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_uk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_uk.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_uk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_lv.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lv.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_fr.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_fr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_fa.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fa.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ko.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ko.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ar.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ar.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_bg.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_bg.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_pl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_pl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_da.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_da.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_de.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_de.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_sv.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sv.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_it.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_it.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_en.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_en.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_sl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_fr.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_sk.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_hu.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_hu.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ar.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ar.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_lt.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lt.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_cs.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_cs.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_he.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_he.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_es.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_es.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_pl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_en.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_en.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ko.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ko.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_hu.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_hu.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_it.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_it.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_uk.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_uk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_gl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_gl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_fr.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_zh_CN.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_CN.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_pl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_pl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_de.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_de.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ko.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ko.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ru.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ru.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_tr.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_tr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_en.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_en.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_da.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_da.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ja.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ja.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ca.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ca.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_da.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_da.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_sk.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_sk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_lv.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_lv.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_hu.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_hu.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_gd.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gd.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_tr.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_tr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ja.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ja.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_bg.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_bg.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ja.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ja.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_sk.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sk.qm',
|
||||
'DATA')],
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.py',
|
||||
'PYSOURCE')],
|
||||
[],
|
||||
False,
|
||||
False,
|
||||
1736169528,
|
||||
[('run.exe',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe',
|
||||
1736310056,
|
||||
[('runw.exe',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\runw.exe',
|
||||
'EXECUTABLE')],
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\python310.dll')
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\python313.dll')
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
('C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\DBC_Converter.pkg',
|
||||
('C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\DBC '
|
||||
'Converter.pkg',
|
||||
{'BINARY': True,
|
||||
'DATA': True,
|
||||
'EXECUTABLE': True,
|
||||
@ -10,535 +11,49 @@
|
||||
'SYMLINK': False},
|
||||
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||
('PYZ-00.pyz',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\PYZ-00.pyz',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\struct.pyc',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod01_archive.pyc',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod02_importers.pyc',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pyqt5',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgres',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgres.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_setuptools',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_setuptools.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pyqt5',
|
||||
'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py',
|
||||
'PYSOURCE'),
|
||||
('DBC_Converter',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.py',
|
||||
'PYSOURCE'),
|
||||
('python310.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\python310.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qico.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qico.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\libGLESv2.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libGLESv2.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\libEGL.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libEGL.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\d3dcompiler_47.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\d3dcompiler_47.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\opengl32sw.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\opengl32sw.dll',
|
||||
'BINARY'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtCore.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtCore.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtGui.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtGui.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\QtWidgets.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtWidgets.pyd',
|
||||
'EXTENSION'),
|
||||
('PyQt5\\sip.cp310-win_amd64.pyd',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\sip.cp310-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('api-ms-win-crt-string-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-string-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-locale-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-locale-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-math-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-math-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-process-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-process-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\VCRUNTIME140.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-convert-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-convert-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-runtime-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-runtime-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-stdio-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-stdio-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-heap-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-heap-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-time-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-time-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-conio-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-conio-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-environment-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-environment-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Core.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Core.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Gui.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Gui.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-crt-utility-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-utility-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5DBus.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5DBus.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Svg.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Svg.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Quick.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Quick.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5WebSockets.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebSockets.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Network.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Network.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\MSVCP140.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Widgets.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Widgets.dll',
|
||||
'BINARY'),
|
||||
('libcrypto-1_1.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\libcrypto-1_1.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\python3.dll',
|
||||
'BINARY'),
|
||||
('ucrtbase.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\ucrtbase.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\MSVCP140_1.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140_1.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5QmlModels.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5QmlModels.dll',
|
||||
'BINARY'),
|
||||
('PyQt5\\Qt5\\bin\\Qt5Qml.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Qml.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-handle-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-handle-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-file-l1-2-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l1-2-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-heap-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-heap-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-util-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-util-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-localization-l1-2-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-localization-l1-2-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-debug-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-debug-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-memory-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-memory-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-interlocked-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-interlocked-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-profile-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-profile-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-fibers-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-fibers-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-file-l2-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l2-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-synch-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-synch-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-datetime-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-datetime-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-processthreads-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processthreads-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-synch-l1-2-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-synch-l1-2-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-file-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-processthreads-l1-1-1.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processthreads-l1-1-1.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-console-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-console-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-timezone-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-timezone-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('api-ms-win-core-string-l1-1-0.dll',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-string-l1-1-0.dll',
|
||||
'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\base_library.zip',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ca.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ca.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ru.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ru.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_fi.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fi.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_it.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_it.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_pt.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pt.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_gd.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_gd.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_he.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_he.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ar.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ar.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_es.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_es.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_de.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_de.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_fi.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fi.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_gl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_cs.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_cs.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_bg.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_bg.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_cs.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_cs.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_es.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_es.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ru.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ru.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_tr.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_tr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_sl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_zh_TW.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_TW.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ca.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ca.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_uk.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_uk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_uk.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_uk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_lv.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lv.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_fr.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_fr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_fa.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fa.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ko.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ko.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ar.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ar.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_bg.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_bg.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_pl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_pl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_da.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_da.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_de.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_de.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_sv.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sv.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_it.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_it.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_en.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_en.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_sl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_fr.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_sk.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_hu.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_hu.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ar.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ar.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_lt.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lt.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_cs.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_cs.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_he.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_he.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_es.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_es.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_pl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_en.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_en.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ko.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ko.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_hu.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_hu.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_it.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_it.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_uk.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_uk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_gl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_gl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_fr.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_zh_CN.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_CN.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_pl.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_pl.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_de.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_de.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ko.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ko.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ru.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ru.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_tr.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_tr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_en.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_en.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_da.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_da.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_ja.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ja.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ca.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ca.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_da.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_da.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_sk.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_sk.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qtbase_lv.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_lv.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_hu.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_hu.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_gd.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gd.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_tr.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_tr.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_ja.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ja.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_bg.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_bg.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_ja.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ja.qm',
|
||||
'DATA'),
|
||||
('PyQt5\\Qt5\\translations\\qt_help_sk.qm',
|
||||
'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sk.qm',
|
||||
'DATA')],
|
||||
'python310.dll',
|
||||
False,
|
||||
'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.py',
|
||||
'PYSOURCE')],
|
||||
'python313.dll',
|
||||
True,
|
||||
False,
|
||||
False,
|
||||
[],
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -14,15 +14,50 @@ Types if import:
|
||||
IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
|
||||
tracking down the missing module yourself. Thanks!
|
||||
|
||||
missing module named pyimod02_importers - imported by C:\Users\blueb\AppData\Local\Programs\Python\Python310\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed)
|
||||
missing module named pep517 - imported by importlib.metadata (delayed)
|
||||
missing module named 'org.python' - imported by copy (optional)
|
||||
missing module named org - imported by pickle (optional)
|
||||
missing module named pwd - imported by posixpath (delayed, conditional), shutil (delayed, optional), tarfile (optional), pathlib (delayed, optional), subprocess (delayed, conditional, optional)
|
||||
missing module named grp - imported by shutil (delayed, optional), tarfile (optional), pathlib (delayed, optional), subprocess (delayed, conditional, optional)
|
||||
missing module named posix - imported by shutil (conditional), importlib._bootstrap_external (conditional), os (conditional, optional)
|
||||
missing module named 'collections.abc' - imported by traceback (top-level), inspect (top-level), logging (top-level), typing (top-level), selectors (top-level), tracemalloc (top-level), cantools.tester (top-level), typing_extensions (top-level), configparser (top-level), can.exceptions (conditional), asyncio.base_events (top-level), http.client (top-level), asyncio.coroutines (top-level), sqlite3.dbapi2 (top-level), pkg_resources (top-level), setuptools (top-level), setuptools._vendor.jaraco.functools (top-level), setuptools._vendor.more_itertools.more (top-level), setuptools._vendor.more_itertools.recipes (top-level), setuptools._reqs (top-level), setuptools.discovery (top-level), setuptools.dist (top-level), setuptools._distutils.dist (top-level), setuptools.config.setupcfg (top-level), setuptools.config.expand (top-level), setuptools.config.pyprojecttoml (top-level), setuptools.config._apply_pyprojecttoml (top-level), tomllib._parser (top-level), setuptools._vendor.tomli._parser (top-level), setuptools.command.egg_info (top-level), setuptools.glob (top-level), setuptools.command._requirestxt (top-level), setuptools.command.bdist_wheel (top-level), wheel.cli.convert (top-level), wheel.cli.tags (top-level), setuptools._vendor.platformdirs.windows (conditional), diskcache.persistent (top-level), cantools.typechecking (top-level), cantools.database.utils (top-level), xml.etree.ElementTree (top-level), cantools.database.can.formats.sym (conditional), _pyrepl.types (top-level), _pyrepl.readline (top-level)
|
||||
missing module named grp - imported by shutil (delayed, optional), tarfile (optional), pathlib._local (optional), subprocess (delayed, conditional, optional), setuptools._distutils.archive_util (optional), setuptools._vendor.backports.tarfile (optional)
|
||||
missing module named pwd - imported by posixpath (delayed, conditional, optional), shutil (delayed, optional), tarfile (optional), pathlib._local (optional), subprocess (delayed, conditional, optional), setuptools._distutils.util (delayed, conditional, optional), setuptools._distutils.archive_util (optional), netrc (delayed, conditional), getpass (delayed, optional), setuptools._vendor.backports.tarfile (optional), http.server (delayed, optional)
|
||||
missing module named posix - imported by os (conditional, optional), posixpath (optional), shutil (conditional), importlib._bootstrap_external (conditional), _pyrepl.unix_console (delayed, optional)
|
||||
missing module named resource - imported by posix (top-level)
|
||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
missing module named _posixsubprocess - imported by subprocess (optional)
|
||||
missing module named fcntl - imported by subprocess (optional)
|
||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
missing module named vms_lib - imported by platform (delayed, optional)
|
||||
missing module named 'java.lang' - imported by platform (delayed, optional)
|
||||
missing module named java - imported by platform (delayed)
|
||||
missing module named asyncio.DefaultEventLoopPolicy - imported by asyncio (delayed, conditional), asyncio.events (delayed, conditional)
|
||||
missing module named _posixshmem - imported by multiprocessing.resource_tracker (conditional), multiprocessing.shared_memory (conditional)
|
||||
missing module named multiprocessing.set_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level)
|
||||
missing module named multiprocessing.get_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level)
|
||||
missing module named _posixsubprocess - imported by subprocess (conditional), multiprocessing.util (delayed)
|
||||
missing module named multiprocessing.get_context - imported by multiprocessing (top-level), multiprocessing.pool (top-level), multiprocessing.managers (top-level), multiprocessing.sharedctypes (top-level)
|
||||
missing module named multiprocessing.TimeoutError - imported by multiprocessing (top-level), multiprocessing.pool (top-level)
|
||||
missing module named _scproxy - imported by urllib.request (conditional)
|
||||
missing module named termios - imported by getpass (optional), tty (top-level), _pyrepl.pager (delayed, optional), _pyrepl.unix_console (top-level), _pyrepl.fancy_termios (top-level), _pyrepl.unix_eventqueue (top-level)
|
||||
missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||
missing module named multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||
missing module named usercustomize - imported by site (delayed, optional)
|
||||
missing module named sitecustomize - imported by site (delayed, optional)
|
||||
missing module named _curses - imported by curses (top-level), curses.has_key (top-level), _pyrepl.curses (optional)
|
||||
missing module named fcntl - imported by subprocess (optional), _pyrepl.unix_console (top-level)
|
||||
missing module named readline - imported by cmd (delayed, conditional, optional), code (delayed, conditional, optional), rlcompleter (optional), pdb (delayed, optional), site (delayed, optional), sqlite3.__main__ (delayed, conditional, optional)
|
||||
missing module named '_typeshed.importlib' - imported by pkg_resources (conditional)
|
||||
missing module named _typeshed - imported by setuptools.glob (conditional), setuptools.compat.py311 (conditional), pkg_resources (conditional)
|
||||
missing module named jnius - imported by setuptools._vendor.platformdirs.android (delayed, conditional, optional)
|
||||
missing module named android - imported by setuptools._vendor.platformdirs.android (delayed, conditional, optional)
|
||||
missing module named importlib_resources - imported by setuptools._vendor.jaraco.text (optional)
|
||||
missing module named jaraco.text.yield_lines - imported by setuptools._vendor.jaraco.text (top-level), setuptools._entry_points (top-level), setuptools.command._requirestxt (top-level)
|
||||
missing module named _manylinux - imported by packaging._manylinux (delayed, optional), setuptools._vendor.packaging._manylinux (delayed, optional), wheel.vendored.packaging._manylinux (delayed, optional)
|
||||
missing module named trove_classifiers - imported by setuptools.config._validate_pyproject.formats (optional)
|
||||
missing module named pyimod02_importers - imported by C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed), C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgres.py (delayed)
|
||||
missing module named cantools.database.Database - imported by cantools.database (conditional), cantools.database.utils (conditional)
|
||||
missing module named cantools.database.Signal - imported by cantools.database (conditional), cantools.typechecking (conditional)
|
||||
missing module named cantools.database.Message - imported by cantools.database (conditional), cantools.typechecking (conditional)
|
||||
missing module named 'django.core' - imported by diskcache.djangocache (optional)
|
||||
missing module named django - imported by diskcache.djangocache (top-level)
|
||||
missing module named 'asammdf.mdf' - imported by can.io.mf4 (optional)
|
||||
missing module named 'asammdf.blocks' - imported by can.io.mf4 (optional)
|
||||
missing module named numpy - imported by can.io.mf4 (optional)
|
||||
missing module named asammdf - imported by can.io.mf4 (optional)
|
||||
missing module named win32event - imported by can.broadcastmanager (delayed)
|
||||
missing module named pywintypes - imported by can.broadcastmanager (delayed)
|
||||
missing module named _suggestions - imported by traceback (delayed, optional)
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
BIN
dist/DBC Converter/DBC Converter.exe
vendored
Normal file
BIN
dist/DBC Converter/DBC Converter.exe
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/.icon/icon(org).ico
vendored
Normal file
BIN
dist/DBC Converter/_internal/.icon/icon(org).ico
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.0 KiB |
BIN
dist/DBC Converter/_internal/.icon/icon(org).png
vendored
Normal file
BIN
dist/DBC Converter/_internal/.icon/icon(org).png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 74 KiB |
BIN
dist/DBC Converter/_internal/.icon/icon.png
vendored
Normal file
BIN
dist/DBC Converter/_internal/.icon/icon.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 50 KiB |
BIN
dist/DBC Converter/_internal/.icon/icon.pptx
vendored
Normal file
BIN
dist/DBC Converter/_internal/.icon/icon.pptx
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/MSVCP140.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/MSVCP140.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/MSVCP140_1.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/MSVCP140_1.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Core.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Core.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5DBus.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5DBus.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Gui.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Gui.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Network.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Network.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5PrintSupport.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5PrintSupport.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Qml.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Qml.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5QmlModels.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5QmlModels.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Quick.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Quick.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Svg.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Svg.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5WebChannel.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5WebChannel.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5WebSockets.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5WebSockets.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Widgets.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Widgets.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/VCRUNTIME140.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/VCRUNTIME140.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/VCRUNTIME140_1.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/VCRUNTIME140_1.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/d3dcompiler_47.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/d3dcompiler_47.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/libEGL.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/libEGL.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/libGLESv2.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/libGLESv2.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/libcrypto-1_1-x64.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/libcrypto-1_1-x64.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/libssl-1_1-x64.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/libssl-1_1-x64.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/opengl32sw.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/bin/opengl32sw.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/bearer/qgenericbearer.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/bearer/qgenericbearer.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/generic/qtuiotouchplugin.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/generic/qtuiotouchplugin.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/iconengines/qsvgicon.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/iconengines/qsvgicon.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qgif.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qgif.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qicns.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qicns.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qico.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qico.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qjpeg.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qjpeg.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qsvg.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qsvg.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qtga.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qtga.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qtiff.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qtiff.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qwbmp.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qwbmp.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qwebp.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qwebp.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qminimal.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qminimal.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qoffscreen.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qoffscreen.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qwebgl.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qwebgl.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qwindows.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qwindows.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platformthemes/qxdgdesktopportal.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platformthemes/qxdgdesktopportal.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/printsupport/windowsprintersupport.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/printsupport/windowsprintersupport.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/styles/qwindowsvistastyle.dll
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/plugins/styles/qwindowsvistastyle.dll
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_ar.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_ar.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_bg.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_bg.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_ca.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_ca.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_cs.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_cs.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_da.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_da.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_de.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_de.qm
vendored
Normal file
Binary file not shown.
1
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_en.qm
vendored
Normal file
1
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_en.qm
vendored
Normal file
@ -0,0 +1 @@
|
||||
<クdハ<>箆!ソ`。スン
|
||||
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_es.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_es.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_fa.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_fa.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_fi.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_fi.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_fr.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_fr.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_gd.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_gd.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_gl.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_gl.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_he.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_he.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_ar.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_ar.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_bg.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_bg.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_ca.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_ca.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_cs.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_cs.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_da.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_da.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_de.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_de.qm
vendored
Normal file
Binary file not shown.
1
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_en.qm
vendored
Normal file
1
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_en.qm
vendored
Normal file
@ -0,0 +1 @@
|
||||
<クdハ<>箆!ソ`。スン
|
||||
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_es.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_es.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_fr.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_fr.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_gl.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_gl.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_hu.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_hu.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_it.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_it.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_ja.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_ja.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_ko.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_ko.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_pl.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_pl.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_ru.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_ru.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_sk.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_sk.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_sl.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_sl.qm
vendored
Normal file
Binary file not shown.
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_tr.qm
vendored
Normal file
BIN
dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_help_tr.qm
vendored
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user