pycefsharp

python binding for CefSharp


Keywords
pythonnet, cef
License
MIT
Install
pip install pycefsharp==0.2.1.post4

Documentation

pycefsharp



Install

using pip

pip install pycefsharp


Usage

open url from cli

python -m pycefsharp "http://www.google.com" --title="hey, google!" --icon="[iconFile]" --geometry=[x],[y],[width],[height]

use in script

from pycefsharp.cef import CefApp, CefView

CefApp().Run(CefView("https://github.com/eseunghwan/pycefsharp", "simple_test"))


License

pycefsharp is MIT license

Release History

  • V 0.1.0 [2020/07/23]

    • initial version
  • V 0.2.0 [2020/07/23]

    • add properties of url, title, icon, geometry
  • V 0.2.1 [2020/07/23]

    • make winform object private
    • form can be invoked by properties
  • V 0.2.1.Rev2 [2020/07/23]

    • revoked changes and upgrade to 0.2.1.Rev2
  • V 0.2.1.Rev2 [2020/07/23]

    • bug fixed
      • find install dependencies properly
    • add show, close functions
  • V 0.2.1.Rev3 [2020/07/23]

    • bug fixed
      • window moves to center when geometry's x and y are -1 properly
  • V 0.2.1.Rev4 [2020/07/23]

    • window appears when page is loaded