Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kivymd-extensions/filemanager
File manager for desktop
https://github.com/kivymd-extensions/filemanager
kivymd kivymd-extensions
Last synced: 23 days ago
JSON representation
File manager for desktop
- Host: GitHub
- URL: https://github.com/kivymd-extensions/filemanager
- Owner: kivymd-extensions
- License: mit
- Created: 2020-11-01T10:19:28.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-03T21:08:52.000Z (2 months ago)
- Last Synced: 2024-10-01T08:41:25.522Z (about 1 month ago)
- Topics: kivymd, kivymd-extensions
- Language: Python
- Homepage:
- Size: 187 KB
- Stars: 29
- Watchers: 6
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# File Manager
Desktop file manager developed on the Kivy platform using the KivyMD library.
Perhaps the file manager will work on mobile devices, but we are not even trying to check if this is the case.
We are not testing this library on mobile devices or adapting it for mobile devices.
Because, as the name suggests, we are developing this module for desktop use.[![Documentation Status](https://readthedocs.org/projects/file-manager/badge/?version=latest)](https://file-manager.readthedocs.io/en/latest/?badge=latest)
## Installation
```bash
pip install kivymd_extensions.filemanager
```### Dependencies:
- [KivyMD](https://github.com/kivymd/KivyMD) >= master version
- [Kivy](https://github.com/kivy/kivy) >= 2.0.0 ([Installation](https://kivy.org/doc/stable/gettingstarted/installation.html))
- [Python 3.6+](https://www.python.org/)## Documentation
See documentation at https://file-manager.readthedocs.io/en/latest/components/file-manager/### Usage
```python
from kivymd.app import MDAppfrom kivymd_extensions.filemanager import FileManager
class MainApp(MDApp):
def on_start(self):
FileManager().open()if __name__ == "__main__":
MainApp().run()
```### Customization
```python
FileManager(path_to_skin="/Users/macbookair/data/images").open()
```## Examples
```bash
git clone https://github.com/kivymd-extensions/filemanager.git
cd filemanager
cd examples/full_example
python main.py
```### Support
If you need assistance or you have a question, you can ask for help on our mailing list:
- **Discord server:** https://discord.gg/wu3qBST
- _Email:_ [email protected]