Greetings ;
To make a PyBrowser :
what packages do I need to install :
latest Python , PySidesQT , WebEngine , and WebView ?
Thanks for your Help…
Greetings ;
To make a PyBrowser :
what packages do I need to install :
latest Python , PySidesQT , WebEngine , and WebView ?
Thanks for your Help…
PyQT or PySides (there is no package named PySidesQT) has a widget called QWebEngineView
that you can use to put a browser in your Python desktop web app. This page has a minimal example: WebEngine Widgets Minimal Example | Qt WebEngine 5.15.17
Thanks Al Sweigart ;
Once Py is snstalled ,
can you show me what I need in terms of
“pip ***”
“pip ***”
“pip ***”
Thanks
PySide-vs-PyQt
from PySide6.QtCore import QUrl, QTimer, Slot
from PySide6.QtWidgets import QApplication, QMainWindow, QToolBar, QLineEdit, QTabWidget, QLabel, QPushButton
from PySide6.QtGui import QAction
from PySide6.QtWebEngineWidgets import QWebEngineView
vs
from PyQt6.QtCore import QUrl, QTimer, pyqtSlot
from PyQt6.QtWidgets import QApplication, QMainWindow, QToolBar, QLineEdit, QTabWidget, QLabel, QPushButton
from PyQt6.QtGui import QAction
from PyQt6.QtWebEngineWidgets import QWebEngineView
I ran a separate version for PySide6.QtCore
and one for PyQt6.QtCore .
PyQt6.QtCore is faster and has a lot more warning msgs .
I don’t know why that is , anyone ?