В прошлом посте говоря "Все вызовы теперь одинаковы" я несколько слукавил. Всё-таки есть в этом зоопарке версий некоторая несовместимость вызов которой просто так не унифицировать. Эти моменты вынесены в отдельный модуль 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
🚨 $ETH Liquidation Map Analysis 🚨
1️⃣ Main Liquidation Zones:
*⬇️ Longs: Big cluster around 2000-2400. Ouch!
*⬆️ Shorts: Noticeable stacks building up starting from 2800 up to 3200
2️⃣ Key Liquidation Levels:
* 2000: Major Long liquidation zone🤯
* 3000-3200: Accumulation of short liquidations 🤔
3️⃣ Imbalance:
*More significant Long liquidations below current price vs. shorts above. Bearish signal?🐻
4️⃣ Potential Price Moves:
* Price could drop to grab liquidity at 2000-2400 before any potential bounce.
* If price goes up, it could trigger a cascade of short liquidations towards 3000-3200🚀
5️⃣ Trader Takeaways:
* Avoid placing stops near 2000, potential for stop hunts! 🚫
* Watch price action around 3000-3200 for breakout/reversal signals.👀
* Consider front-running potential moves near major liquidation zones. 🎯
#ETH#Crypto#Trading#Liquidation#Kingfisher
Kingfishers are small, vibrant birds famous for their impressive fishing skills. With sharp, pointed beaks, they catch fish by diving into the water from a perch or while hovering. These birds are often found near rivers, lakes, and coastal areas, where they hunt for food. They have excellent vision, helping them spot fish from a distance. Kingfishers are also known for their bright, colorful plumage, which can include shades of blue, green, and orange, making them easy to recognize. While some species of kingfishers live in tropical areas, others can be found in temperate zones. They are solitary birds, usually perched alone while hunting, and their diet mainly consists of fish, but they also eat insects and small amphibians. Kingfishers play a crucial role in their ecosystems by controlling fish populations and helping to maintain healthy water environments.
🦜💧🎯
[Read more]
@googlefactss
#Kingfisher#Birds#Nature#Wildlife#Fishing#Conservation