A comprehensive file chooser intensively designed for the for desktop platform The widget was originaly design and used for **kivy Studios **but is now available on kivy garden
Simple method
filemanager.open_file(path='.', callback=callback)
filemanager.save_file(path='.', callback=callback)
filemanager.choose_dir(path='.', callback=callback)
garden install garden.filemanager
from kivy.uix.button import Button
from kivy.garden.filemanager import filemanager
def callback(path):
(path)
def open_file(*a):
filemanager.open_file(path='.', callback=callback)
btn = Button(text='Push Me')
btn.bind(on_release=open_file)
if __name__ == '__main__':
MyApp().run()
Please contact us via pull request or project issue if you would like your app featured in this README and the documentation.
Mahart Studio