python-eel / Eel

A little Python library for making simple Electron-like HTML/JS GUI apps
MIT License
6.44k stars 587 forks source link

Can Eel be used to make apps which require internet connection? #463

Closed Adeel-Intizar closed 3 years ago

Adeel-Intizar commented 3 years ago

Hello, I want to develop an application which will require internet connection for a short period of time, is it possible to develop it using eel?

rahmatagungj commented 3 years ago

of course you can, you can use the method of checking the internet connection when the EEL is loaded. if the user's status is online, the EEL operation will continue and when offline, the EEL will stop.

Adeel-Intizar commented 3 years ago

Thank you for your help

Adeel-Intizar commented 3 years ago

@rahmatagungj how to check online status with eel?