Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
flet / utils / browser.py
Size: Mime:
from flet.utils.platform_utils import is_mobile


def open_in_browser(url):
    if not is_mobile():
        import webbrowser

        webbrowser.open(url)