plyer icon indicating copy to clipboard operation
plyer copied to clipboard

Plyer is a platform-independent Python wrapper for platform-dependent APIs

Results 162 plyer issues
Sort by recently updated
recently updated
newest added

**Correct:** `zenity --file-selection --title='My title'` **Incorrect:** `zenity --file-selection --text='My title'`

The filechooser on ios return a path to a png https://github.com/kivy/plyer/blob/c9e73f395e2b51d46ada68119abfae2973591c00/plyer/platforms/ios/filechooser.py#L76 This works however this method strips the EXIF data. Without the EXIF data the image will likely be upside...

[`distutils` is not included in newer python versions](https://docs.python.org/3.11/whatsnew/3.10.html#distutils-deprecated), in python `3.12` it throws `ImportError`, so it is good to migrate to `shutil` > The entire distutils package is deprecated, to...

Testing on Android 13 File "jnius/jnius_export_class.pxi", line 1163, in jnius.jnius.JavaMultipleMethod.__call__ 07-18 19:54:04.338 28943 29039 I python : File "jnius/jnius_export_class.pxi", line 877, in jnius.jnius.JavaMethod.__call__ 07-18 19:54:04.338 28943 29039 I python :...

This pull request introduces a new feature to return the macOS desktop path for use in the StoragePath module. This addition allows access to the user's desktop directory on macOS...

Your current `_start_scanning` function does not accept an `interface` argument для macos и windows windows and macos ``` def _start_scanning(self): ``` linux ``` def _start_scanning(self, interface=None): ```

Can you add `is_connected` for Macos? It seems we can find out whether we are connected or not by checking ssid ``` def _is_connected(self, interface=None): return CWInterface.interface().ssid() is not None...

I'm trying to set the app name of the notification but it still shows up as 'Python' ![image](https://github.com/user-attachments/assets/9acfc523-e206-4e76-81a0-a4935123fd51) ```py notification.notify( title="New Update Available", app_name='MyAsus', message=get_response(q), app_icon="asus.ico", timeout=5 ) ``` ![image](https://github.com/user-attachments/assets/ab9a08b1-92fa-4f55-a0b6-08a3c2a6d259)