Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 692 Bytes

File metadata and controls

23 lines (18 loc) · 692 Bytes

Version 1: Basic Data Handling

Overview

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.

Features

  • Read data from a CSV file located in the current directory.
  • Display data in a PyQt6 table view.
  • Export data back to CSV.

How to Run

python basic_data_handling.py

Dependencies

  • PyQt6
    • pandas
      • matplotlib

      • Code Structure

        • MainWindow - Generated UI class defining widgets and layout
          • ApplicationWindow - Runtime controller that loads data and handles user interactions