You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+37-10Lines changed: 37 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ Table of contents:
15
15
*[Changes in API during updates](#changes-in-api-during-updates)
16
16
*[Donate](#donate)
17
17
18
+
18
19
## Important notes
19
20
20
21
* Branches cefpython51/52/53+ with latest Chrome are tested and work only
@@ -31,31 +32,55 @@ Table of contents:
31
32
32
33
## Introduction
33
34
34
-
CEF Python is an open source project founded by [Czarek Tomczak](http://www.linkedin.com/in/czarektomczak) in 2012 to provide python bindings for the [Chromium Embedded Framework](https://bitbucket.org/chromiumembedded/cef). See the growing list of [applications using CEF](http://en.wikipedia.org/wiki/Chromium_Embedded_Framework#Applications_using_CEF) on wikipedia. Examples of embedding CEF browser are available for many popular GUI toolkits including: [wxPython](../../wiki/wxPython), [PyGTK](../../wiki/PyGTK), [PyQt](../../wiki/PyQt), [PySide](../../wiki/PySide), [Kivy](../../wiki/Kivy), [Panda3D](../../wiki/Panda3D) and [PyWin32](src/windows/binaries_32bit/pywin32.py).
and [PyWin32](src/windows/binaries_32bit/pywin32.py).
35
47
36
48
Some use cases for CEF:
37
49
38
50
* Embed a web browser control with great HTML5 support (based on Chromium)
39
-
* Use it to create a HTML5 based GUI in an application. This can act as a replacement for GUI toolkits like wxWidgets/Qt/Gtk. For native communication between javascript and python use [javascript bindings](../../wiki/JavascriptBindings). Another option is to run an internal python web server and use websockets/XMLHttpRequest for js<>python communication. This way you can write a desktop app in the same way you write web apps.
40
-
* Render web content off-screen in applications that use custom drawing frameworks. See the [Kivy](../../wiki/Kivy) and [Panda3D](../../wiki/Panda3D) examples.
41
-
* Use it for automated testing of existing web applications. Use it for web scraping, or as a web crawler or other kind of internet bots.
51
+
* Use it to create a HTML5 based GUI in an application. This can act as a
52
+
replacement for GUI toolkits like wxWidgets/Qt/Gtk. For native communication
53
+
between javascript and python use
54
+
[javascript bindings](api/JavascriptBindings.md).
55
+
Another option is to run an internal python web server and use
56
+
websockets/XMLHttpRequest for js<>python communication. This way you
57
+
can write a desktop app in the same way you write web apps.
58
+
* Render web content off-screen in applications that use custom drawing
59
+
frameworks. See the [Kivy](../../wiki/Kivy)
60
+
and [Panda3D](../../wiki/Panda3D) examples.
61
+
* Use it for automated testing of existing web applications. Use it for web
62
+
scraping, or as a web crawler or other kind of internet bots.
42
63
43
64
44
65
## Compatibility
45
66
46
67
* Supported Python versions: 2.7
47
68
(for Python 3.4 / 3.5 support see [Issue #121](../../issues/121)).
48
-
* Supported platforms: Windows, Linux, Mac. Both 32bit and 64bit binaries are available for all platforms.
69
+
* Supported platforms: Windows, Linux, Mac.<br>
70
+
Both 32-bit and 64-bit binaries are available for all platforms.
49
71
50
72
51
73
## Downloads
52
74
53
75
On Win/Mac you can install from PyPI using this command:
54
76
`pip install cefpython3`.
55
77
56
-
* For Windows: see the [Download_CEF3_Windows](../../wiki/Download_CEF3_Windows) wiki page.
57
-
* For Linux: see the [Download_CEF3_Linux](../../wiki/Download_CEF3_Linux) wiki page.
58
-
* For Mac: see the [Download_CEF3_Mac](../../wiki/Download_CEF3_Mac) wiki page.
78
+
* For Windows: see the
79
+
[Download_CEF3_Windows](../../wiki/Download_CEF3_Windows) wiki page.
80
+
* For Linux: see the
81
+
[Download_CEF3_Linux](../../wiki/Download_CEF3_Linux) wiki page.
82
+
* For Mac: see the
83
+
[Download_CEF3_Mac](../../wiki/Download_CEF3_Mac) wiki page.
59
84
60
85
To be notified when new downloads are available see the
61
86
[Notifications on new releases](#notifications-on-new-releases) section.
@@ -66,7 +91,8 @@ To be notified when new downloads are available see the
66
91
* Documentation:
67
92
* See [API docs](api/) in the api/ directory
68
93
* See [Wiki Pages](../../wiki)
69
-
* See issues with the [Knowledge Base](../../issues?q=is%3Aissue+is%3Aopen+label%3A%22Knowledge+Base%22)
0 commit comments