An open API service indexing awesome lists of open source software.

https://github.com/wizardous/file-manager

A simple Python 3 application using Tkinter GUI Framework to demonstrate the basic CRUD operation on local files.
https://github.com/wizardous/file-manager

files python3 tkinter

Last synced: about 1 year ago
JSON representation

A simple Python 3 application using Tkinter GUI Framework to demonstrate the basic CRUD operation on local files.

Awesome Lists containing this project

README

          

# File-Manager
A simple Python 3 application using Tkinter GUI Framework to demonstrate the basic CRUD operation on local files.

### Setup
To run this application the list of required dependencies are as follows:
- **Requests** *(optional)*
The requests module is required to get the login auth data from the online server. However its optional and can be bypassed in the login api.
- **Passlib**
Passlib module is used to encrypt the password field in each entry. This is also an experimental feature I added to try data encryption.

## GUI
Here are some previews of the GUI implemented.

**Login**

![Window](/Screenshots/Login.png)

**View**

![Window](/Screenshots/View.png)
![Window](/Screenshots/view_2.png)

**Add**

![Window](/Screenshots/Add.png)

**Update**

![Window](/Screenshots/Update.png)

**Delete**

![Window](/Screenshots/Delete.png)

**Exit**

![Window](/Screenshots/Exit.png)