remi icon indicating copy to clipboard operation
remi copied to clipboard

Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.

Results 121 remi issues
Sort by recently updated
recently updated
newest added

I am impressed with the work you have done so far. To me, it seems you are very close to a new concept web framework (stand-alone web applets). That being...

Hello, The feature to export widget o widget for app template do not work correctly. Only "widget for app template" works partially, but the editor crush: ``` There were an...

As of now the button labels on GenericDialog are hard coded as "Cancel" and "Ok". It would be very nice if it was possible to change them, e.g. ```py dialog...

Here is the code for two simple files, "main.py" and "custom.js", living in the same directory. The purpose is to simulate loading of a 3rd party javascript library. In this...

1. https://github.com/rawpython/remi/pull/330 as the post says, maybe we can change `remi.gui.py`: from ```python import cgi escape = cgi.escape ``` to ```python try: import cgi escape = cgi.escape except: import html...

Fixed broken 'oninput'-event for slider

Can I call GenericDialog confirm function by pressing Enter key? Like we can do with InputDialog. Thanks in advance!

I wrote some code on the backend to change color of a tab item. I copy paste the original table & table item and added the code to it via...

I have a text widget that I use for logging. hence each time a log entry is made this text is extended. to have it nicely working for the end...