All Questions
Tagged with chromium-embedded python
53 questions
1
vote
1
answer
73
views
White Screen When Loading Flash Plugin with CEF in GoLang
I am developing a desktop application using Energy (a GUI framework for Go based on LCL and CEF (Chromium Embedded Framework), used for developing cross-platform desktop applications for Windows, ...
0
votes
1
answer
912
views
How to use CEF (Chromium Embedded Framework) in Python 3.12.0?
How to use CEF in Python 3.12.0? Because when I try to use CEF in Python, it tells me that the version is not supported. Is there any version of CEF for Python 3.12.0 or any equivalent?
Versions:
...
0
votes
1
answer
2k
views
Chromium Embedded Framework - ModuleNotFoundError: No module named 'six.moves'
I'm trying to run CMAKE -G "Visual Studio 17" -A x64 .. as indicated in https://bitbucket.org/chromiumembedded/java-cef.git.
But this results in the error:
-- Downloading clang-format from ...
0
votes
1
answer
41
views
Program paused while thread is being executed
I have a program that should start a web server (as the thread), and then display it in a CEF Browser (not a thread). But when I start it, it just waits for the thread to stop executing, which it will ...
0
votes
0
answers
222
views
python webbrowser module and query string with file:// protocol
I have an application that uses Chromium Embedded Framework.
As an alternative for a setup where CEF is not usable (Python 3.10+ for example), I would like to fallback to a webbrowser to launch a ...
1
vote
1
answer
329
views
cefpython3 with an offline plotly chart
I'm looking for an example of embedding an offline plotly chart within cefpython3. It's my understanding that cefpython3 is built for projects just like this. However, I haven't had any success ...
0
votes
1
answer
803
views
How to build our custom chromium based lightweight browser with does not require installation to launch
I need to create a browser which is chromium based and do not require any kind of dependencies or installation to launch, and do not allow browser specific functionalities like reloading, open in new ...
0
votes
1
answer
462
views
CEFPython unable to embed inside pyqt5 application
I am new to Cefpython and PyQt5 both. I have tried to follow the tutorial in the cefpython repository.
I was trying to embed cefpython inside a pyqt application and haven't achieved any success, what'...
0
votes
1
answer
536
views
Setting frames on tkinter with cef
Can someone help with this?
I have my page defined with frames but when i run the code it only shows the browser window.
This issue is a continuation from Load CEF in labelframe
Its basicly a window ...
0
votes
1
answer
253
views
Load CEF in labelframe
How can i put this inside a frame or a labelframe?
Been trying everything and nothing.
i need to put it inside a labelframe or frame in tkinter.
Been trying with this https://github.com/cztomczak/...
0
votes
1
answer
400
views
Python 3, concurrent.futures.ProcessPoolExecutor and CEF crashes after pool size is reached
I'm on Win 10 with Python 3.9.6 and am trying to create a concurrent.futures.ProcessPoolExecutor pool with a small size and add a lot of tasks to it which use CEF.
This always works for the first ...
0
votes
0
answers
425
views
Python Tkinter app using Threading crashes
I've created a tkinter app which shows dash plots as tabs using ttk.Notebbok. The app contains a new button, when the it's clicked a dash plot is started in a new daemon thread (because I want my Tk ...
0
votes
1
answer
343
views
The proxy you are connecting is not in your list error in GetAuthCredentials callback function
I get white screen on the chromium instance, while trying to make callback function to authenticate my proxies. Here is my code for that:
def main():
check_versions()
sys.excepthook = cef.ExceptHook #...
2
votes
1
answer
3k
views
How to use CEFPython to add a WebBrowser widget in a Tkinter window?
I want to display a WebBrowser inside my tkinter app. Per the example below:
##############
# label #
#————————————#
# webbrowser #
##############
Here is what I have tried:
https://github.com/...
0
votes
1
answer
389
views
How to disable same origin policy in cefpython?
I want to disable same-origin policy in cefpython while using pywebview. I tried below code according to this page:
from webview.platforms.cef import command_line_switches
command_line_switches....