refactor: replace customtkinter with wxPython and implement tree-based navigation

This commit is contained in:
Martin Tranberg
2026-03-30 19:11:51 +02:00
parent 4e028aaf66
commit 125e9e8232
2 changed files with 328 additions and 165 deletions

View File

@@ -18,7 +18,7 @@ A modern Python-based file browser for Microsoft SharePoint, specifically design
## Tech Stack
- **Language:** Python 3.x
- **GUI Framework:** [CustomTkinter](https://github.com/TomSchimansky/CustomTkinter) (Modern, responsive UI)
- **GUI Framework:** [wxPython](https://www.wxpython.org/) (Native Windows UI)
- **Authentication:** [MSAL (Microsoft Authentication Library)](https://github.com/AzureAD/microsoft-authentication-library-for-python)
- **API Interaction:** Microsoft Graph API via `requests`
- **File Monitoring:** Local file lock polling
@@ -30,7 +30,7 @@ A modern Python-based file browser for Microsoft SharePoint, specifically design
Ensure you have Python installed. You will also need to install the following dependencies:
```bash
pip install customtkinter msal requests
pip install wxPython msal requests
```
### Running the Application