TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #175 · 30 окт.

В прошлом посте говоря "Все вызовы теперь одинаковы" я несколько слукавил. Всё-таки есть в этом зоопарке версий некоторая несовместимость вызов которой просто так не унифицировать. Эти моменты вынесены в отдельный модуль QtCompat (compatibility). Там не так много функций но они довольно полезны. Этот модуль содержит унификаци модуля shiboken2, функций loadUi, translate и несколько переименованных функций классов или изменённую сигнатуру аргументов и возвращаемых значений. Это единственное исключение из правила когда вам потребуется где-то изменить свой код кроме импортов и этот код не похож на обычный код PySide2. Например, в PyQt4 и PySide есть метод QHeaderView.setResizeMode Для PyQt5 и PySide2 они были благополучно переименованы в QHeaderView.setSectionResizeMode Чтобы применить этот метод следует использовать такой код from Qt import QtCompath header = self.horizontalHeader() QtCompat.QHeaderView.setSectionResizeMode(header, QtWidgets.QHeaderView.Fixed) Унификация загрузки UI файлов: # PySide2 from PySide2.QtUiTools import QUiLoader loader = QUiLoader() widget = loader.load(ui_file) # PyQt5 from PyQt5 import uic widget = uic.loadUi(ui_file) # Qt.py from Qt import QtCompat widget = QtCompat.loadUi(ui_file) Хорошо что таких моментов не много и их легко запомнить. Полный список можно посмотреть в таблице. #qt#tricks

Hashtags

Резултати

Пронајдени 1 слични објави

Пребарај: #professionalresponsibility

当前筛选 #professionalresponsibility清除筛选
AI & Law

@ai_and_law · Post #733 · 29.12.2025 г., 08:04

🇺🇸NYC Bar: Ethical Limits on AI Recording of Client Conversations The New York City Bar Association has issued Formal Opinion 2025-6 on the use of AI tools to record, transcribe, and summarize attorney-client conversations. The opinion analyzes how the New York Rules of Professional Conduct apply to audio and video calls where either party uses AI for capture and post-processing. While lawyers may choose not to use such tools, opting in triggers specific ethical duties. The Opinion states that attorneys should obtain client consent before recording a conversation and assess whether recording, transcription, or summarization is tactically appropriate in the circumstances, particularly in light of confidentiality and attorney-client privilege. Where AI-generated transcripts or summaries may be retained or relied upon, lawyers must review them for accuracy. If a lawyer knows that a client is using AI to record a call, the lawyer should advise the client of the potential disadvantages of doing so. The Opinion positions AI recording tools not as neutral utilities, but as practices that require active ethical judgment and informed consent. #AIandLaw#LegalEthics#ProfessionalResponsibility#AttorneyClientPrivilege#AICompliance