Skip to content

Commit cd7eccf

Browse files
Update
1 parent 70d59d0 commit cd7eccf

1 file changed

Lines changed: 13 additions & 10 deletions

File tree

README.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,20 @@ Runtime Screenshot
4545
```
4646
GitHubUserDataExtractor/
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

0 commit comments

Comments
 (0)