File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,17 +45,20 @@ Runtime Screenshot
4545```
4646GitHubUserDataExtractor/
4747│
48- ├── src/
49- │ ├── cli/ # Terminal input/output logic
50- │ ├── core/ # API and HTML generation logic
51- │ └── ui/htmlviewers/ # Platform-specific GUI viewers
48+ ├── .temp/ # Temporary files (auto-cleaned)
49+ ├── .vscode/ # VS Code workspace settings
50+ ├── src/ # Source code directory
51+ | ├── main.py # Main.py
52+ │ ├── core/ # API and utility logic
53+ │ │ └── utils.py # Helper functions for API and data processing
54+ │ ├── htmlviewers/ # Platform-specific GUI viewers
55+ │ │ ├── linux.py # HTML viewer for Linux (PyWebView)
56+ │ │ └── windows.py # HTML viewer for Windows (PyQt5)
5257│
53- ├── assets/
54- │ └── templates/ # HTML/CSS/JS templates
55- │
56- ├── tests/ # Unit tests
57- ├── requirements.txt
58- ├── README.md
58+ ├── .gitignore # Git ignore rules
59+ ├── LICENSE.md # License information
60+ ├── README.md # Project documentation
61+ ├── requirements.txt # Python dependencies
5962```
6063
6164## Output
You can’t perform that action at this time.
0 commit comments