PySimpleGUI

Results 1145 comments of PySimpleGUI

Right!! This is absolutely correct. The flickering has been FIXED according the the code on my GitHub that is using the SuperImageNew above. But it seems to have broken the...

Any update on this. This specific issue is holding up the release to PyPI. This delayed release is an important one as it contains the PEP8 bindings that are available...

Wow, I SO appreciate you taking the time to look at the PySimpleGUIWeb code! That's going above and beyond what I would expect. PySimpleGUI tries to give the user access...

This is FANTASTIC information to learn. Once again you've taught me something not about your package alone, but for all Python packages. I'm wondering how you handle "unreleased" versions. How...

I've been working this weekend and today on the example application. Would it be possible for you to create something that doesn't create this special Matplotlib class? With my tkinter...

What I would like is another `draw_figure` function for my Remi port. I tried doing this, but it's not quite enough: ```python import PySimpleGUIWeb as sg import numpy as np...

One clear difference between my code and the sample you provided is that I'm missing this function: ```python def get_image_data(self, update_index): with self._buflock: if self._buf is None: return None self._buf.seek(0)...

I got something to work! ```python import PySimpleGUIWeb as sg import numpy as np from matplotlib.backends.backend_tkagg import FigureCanvasAgg import matplotlib.figure import io import threading buflock = None buf = None...

Here's about the most simple I can make it: ```python import PySimpleGUIWeb as sg import numpy as np from matplotlib.backends.backend_tkagg import FigureCanvasAgg import matplotlib.figure import io def create_figure(): # -------------------------------...

Well, the victory was short lived. It took less than a week before the solution wasn't ultimately 'good enough'. Now the request is for the Matplotlib plots to be interactive...