Python

Python plyer macOS ネイティブのファイル選択ダイアログを使う

インストールはこちらを確認。

サンプルコード

filechooser.open_file()でネイティブのファイル選択ダイアログを表示し、選択されたファイルのパスを取得できる。

from plyer import filechooser


_selection = []

def handle_selection(selection):
    _selection.append(selection)

filechooser.open_file(on_selection=handle_selection)

print(_selection)