Welcome to WebIpy web-docs !

What is WebIpy ?

WebIpy is a python module that can render your web-apps into desktop apps under PyQt5 WebEngine.

User Notice:

This part of the documentation will help you to install and use WebIpy. Follow the steps behavior:

Downlaoding & Installing WebIpy:

To install WebIpy follow the steps behavior:

Using WebIpy module:

To use WebIpy follow the steps behavior:

import webipywebipy.APP_ENGINE.setApplicationName('[app name]')webipy.APP_ENGINE.setApplicationVersion('[app version]')webipy.APP_ENGINE.setWindowIcon(webipy.QIcon('[icon]'))root = webipy.WebIPyAppEngine(width=1080, height=700, main_url="[html file path]")if __name__ == '__main__': webipy.APP_ENGINE.exec()<<<
Copied !