Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kivy-garden/garden.cefpython
CEFPython Kivy widget
https://github.com/kivy-garden/garden.cefpython
Last synced: about 1 month ago
JSON representation
CEFPython Kivy widget
- Host: GitHub
- URL: https://github.com/kivy-garden/garden.cefpython
- Owner: kivy-garden
- License: mit
- Created: 2013-09-17T16:14:52.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-29T15:05:52.000Z (over 10 years ago)
- Last Synced: 2023-10-20T21:01:00.195Z (about 1 year ago)
- Language: JavaScript
- Size: 51.3 MB
- Stars: 63
- Watchers: 20
- Forks: 32
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CEF widget
This is a widget that embed https://code.google.com/p/cefpython into a Kivy widget.
Works currently on Linux and Windows 64bit with python 2.7.This project shouldn't considered stable. There are major things (ex. popups) which aren't implemented or causing proplems.
Tested on Ubuntu 12.04 with the follwoing debian packages installed: libnss3-1d libnspr4-0dThere's another project which wraps cefpython into kivy but isn't installable in the garden way, which may be further developed: https://github.com/rentouch/cefkivy
# Example
from kivy.garden.cefpython import CefBrowser, cefpython
from kivy.app import Appclass CefBrowserApp(App):
def build(self):
return CefBrowser(start_url='http://kivy.org')CefBrowserApp().run()
cefpython.Shutdown()# Hints
Don't use browser.Navigate() to chang the url. Use the function change_url(url) instead.
Read in '__init__.py' at function change_url() why.