Commit
·
7f79b44
1
Parent(s):
809a55c
Update data/scrape_real_news.py
Browse filesModified to write scraped data to a writable location instead of `data`
- data/scrape_real_news.py +2 -1
data/scrape_real_news.py
CHANGED
|
@@ -5,7 +5,8 @@ import datetime
|
|
| 5 |
|
| 6 |
# Output path
|
| 7 |
BASE_DIR = Path(__file__).resolve().parent
|
| 8 |
-
OUTPUT_PATH = BASE_DIR / "scraped_real.csv"
|
|
|
|
| 9 |
|
| 10 |
# News sources
|
| 11 |
NEWS_SITES = [
|
|
|
|
| 5 |
|
| 6 |
# Output path
|
| 7 |
BASE_DIR = Path(__file__).resolve().parent
|
| 8 |
+
# OUTPUT_PATH = BASE_DIR / "scraped_real.csv"
|
| 9 |
+
OUTPUT_PATH = Path("/tmp/scraped_real.csv")
|
| 10 |
|
| 11 |
# News sources
|
| 12 |
NEWS_SITES = [
|