用cef Python打造自己的浏览器

背景

项目需要做一个客户端的壳,内置浏览器,访问指定 的url

采用技术

开始吧!

python环境配置省略

安装cefpython

pip install cefpython3==66.0

hello world

from cefpython3 import cefpython as cef
import platform
import sys


def main():
    check_versions()
    sys.excepthook = cef.ExceptHook  # To shutdown all CEF processes on error
    cef.Initialize()
    cef.CreateBrowserSync(url="http://www.baidu.com",
                          window_title="Hello World!")
    cef.MessageLoop()
    cef.Shutdown()


def check_versions():
    ver = cef.GetVersion()
    print("[hello_world.py] CEF Python {ver}".format(ver=ver["version"]))
    print("[hello_world.py] Chromium {ver}".format(ver=ver["chrome_version"]))
    print("[hello_world.py] CEF {ver}".format(ver=ver["cef_version"]))
    print("[hello_world.py] Python {ver} {arch}".format(
           ver=platform.python_version(),
           arch=platform.architecture()[0]))
    assert cef.__version__ >= "57.0", "CEF Python v57.0+ required to run this"


if __name__ == '__main__':
    main()

cef打包请查看

https://www.cnblogs.com/qingmiaokeji/p/10893915.html

效果

posted @ 2019-05-20 14:12  程序员石磊  阅读(6621)  评论(1编辑  收藏  举报