https://github.com/kivy-garden/garden.cefpython
CEFPython Kivy widget
https://github.com/kivy-garden/garden.cefpython
Last synced: 2 months 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 (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-29T15:05:52.000Z (about 11 years ago)
- Last Synced: 2025-05-08T01:43:23.469Z (2 months ago)
- Language: JavaScript
- Size: 51.3 MB
- Stars: 65
- Watchers: 19
- Forks: 31
- 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.