Skip to content

Latest commit

 

History

History
75 lines (50 loc) · 2.11 KB

README.md

File metadata and controls

75 lines (50 loc) · 2.11 KB

FileManager

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

File Manager

Build Status PyPI version Python Downloads Maintainability

Simple method

filemanager.open_file(path='.', callback=callback)

filemanager.save_file(path='.', callback=callback)

filemanager.choose_dir(path='.', callback=callback)

Installation

garden install garden.filemanager

FileManager being used in Kivy Studio

Quickstart

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()

FileManager Showcase

Please contact us via pull request or project issue if you would like your app featured in this README and the documentation.

Other

Mahart Studio