You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Organize the project into a clearer Python package structure.
Why
The project is growing from a calculator/API experiment into a small data application. A clean structure helps separate CLI, API access, conversion logic, GUI experiments and future analysis code.
Move reusable logic from scripts into package modules
Keep temp/ only for experiments and learning code
Separate API access, conversion logic and user interaction
Add minimal README note explaining the structure
Acceptance criteria
Main reusable code lives under src/fx_converter_lab/
Experimental code is clearly separated in temp/
Imports work from the new structure
README briefly explains the main folders
Existing basic functionality still work
Note
Type: Chore / Refactor
Priority: Must
Area: Project Structure
Goal
Organize the project into a clearer Python package structure.
Why
The project is growing from a calculator/API experiment into a small data application. A clean structure helps separate CLI, API access, conversion logic, GUI experiments and future analysis code.
Suggested structure
Scope
Move reusable logic from scripts into package modules
Keep temp/ only for experiments and learning code
Separate API access, conversion logic and user interaction
Add minimal README note explaining the structure
Acceptance criteria
Note
Type: Chore / Refactor
Priority: Must
Area: Project Structure