-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
51 lines (45 loc) · 814 Bytes
/
Copy path.gitignore
File metadata and controls
51 lines (45 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Secrets — never commit
.env
.env.local
proxies.txt
*.pem
*.key
*_token
# Python
venv/
.venv/
__pycache__/
*.pyc
*.pyo
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Yelp Open Dataset (~3 GB; download separately, see README)
review/yelp_dataset/yelp_academic_dataset_*.json
review/yelp_dataset/yelp_academic_dataset_*.json.gz
review/yelp_dataset/yelp_business_index.json
# Runtime artifacts
review/review.log
review/review_output*.csv
review/review_progress.json
review/test_output.csv
review/test_progress.json
review/test.log
review/hvac_reviews.dump
*.bak
*.bak.*
# Input list — user-provided, not part of the codebase
hvac_companies_cleaned.csv
input.csv
*.csv.gz
# Browser / Selenium runtime
downloaded_files/
chromedriver*
geckodriver*
# IDE / OS
.vscode/
.idea/
*.swp
.DS_Store
Thumbs.db