This initial version introduces the basics of PyQt6 by loading data from the current directory and displaying it in a table. Users can export this data to a CSV file using 'Save' or 'Save As' buttons.
- Read data from a CSV file located in the current directory.
- Display data in a PyQt6 table view.
- Export data back to CSV.
python basic_data_handling.py- PyQt6
-
- pandas
-
-
matplotlib
-
MainWindow- Generated UI class defining widgets and layout-
ApplicationWindow- Runtime controller that loads data and handles user interactions
-