This repository has been archived by the owner on Jul 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge: Add fireside-scraper that pulls all JB episodes #30
- Loading branch information
Showing
14 changed files
with
607 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
public/ | ||
.github/ | ||
.git/ | ||
.git/ | ||
fireside-scraper | ||
scraped-data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,7 @@ $RECYCLE.BIN/ | |
|
||
# Editor | ||
.idea | ||
.vscode | ||
|
||
# Ignore all the scraped data | ||
scraped-data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM python:3.10-alpine | ||
|
||
RUN mkdir /data && chown -R 1000:1000 /data | ||
|
||
COPY ./src/ / | ||
RUN chown 1000:1000 /scraper.py | ||
RUN pip install -U -r requirements.txt | ||
|
||
USER 1000 | ||
CMD [ "python3", "scraper.py" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
shows: | ||
selfhosted: | ||
fireside_url: https://selfhosted.show | ||
header_image: /images/shows/selfhosted.png | ||
acronym: SSH | ||
name: Self-Hosted | ||
coderradio: | ||
fireside_url: https://coder.show | ||
header_image: /images/shows/coderradio.png | ||
acronym: CR | ||
name: Coder Radio | ||
linux-action-news: | ||
fireside_url: https://linuxactionnews.com | ||
header_image: /images/shows/linux-action-news.png | ||
acronym: LAN | ||
name: Linux Action News | ||
linuxun: | ||
fireside_url: https://linuxunplugged.com | ||
header_image: /images/shows/linuxun.png | ||
acronym: LUP | ||
name: LINUX Unplugged | ||
extras: | ||
fireside_url: https://extras.show | ||
header_image: /images/shows/extras.png | ||
acronym: JE | ||
name: Jupiter EXTRAS | ||
officehours: | ||
fireside_url: https://www.officehours.hair | ||
header_image: /images/shows/officehours.png | ||
acronym: JE | ||
name: Office Hours |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
beautifulsoup4==4.9.3 | ||
requests==2.25.1 | ||
jinja2==3.0.1 | ||
pymdown-extensions==8.2 | ||
html2text==2020.1.16 | ||
pyyaml==5.4.1 | ||
python-dateutil==2.8.2 |
Oops, something went wrong.