В прошлом посте говоря "Все вызовы теперь одинаковы" я несколько слукавил. Всё-таки есть в этом зоопарке версий некоторая несовместимость вызов которой просто так не унифицировать. Эти моменты вынесены в отдельный модуль 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
Municipal elections are underway in Venezuela to renew 335 mayoral seats and 2,471 local council posts.
Venezuelanalysis' Andreína Chávez files this report from the Libertador municipality in Caracas.
#MunicipalElections#Venezuela#LocalPolitics
📰 AI’s New Frontier Is a Small Town’s Backyard
Archbald, Pennsylvania has become the kind of place where “progress” arrives with chainsaws, diesel generators, and a brochure. Developers want six data center campuses on about 14 percent of the town’s land, and residents are left wondering why an AI boom has to look like a land grab.
The pitch is classic corporate folklore: jobs, tax revenue, future, optimism. The reality is less glossy — forests cut down, neighbors pushed close to massive warehouses, and a community suddenly asked to absorb the noise, water demand, and grid strain for an industry that won’t even say which tech firms will move in.
What makes Archbald interesting is that the backlash is not just environmental. It is political, emotional, and deeply local, with residents flooding meetings, forcing resignations, and turning a sleepy borough into a referendum on who gets to decide the future of a town.
That’s why the fight keeps spreading. Data centers are being sold as invisible infrastructure, but people living next to them are discovering they are anything but invisible once the stumps, generators, and property lines show up.
So the AI economy’s clean little slogan runs into the oldest American response: not here, not on our land, and not without a real answer about who pays the price.
#AI#dataCenters#Pennsylvania#Archbald#development#localpolitics
📱American Оbserver - Stay up to date on all important events
🇺🇸