diff --git a/run.py b/run.py index 5d07667..b7c3cfe 100644 --- a/run.py +++ b/run.py @@ -14,6 +14,7 @@ from sources.ForbesTechnology import ForbesTechnology from sources.FinancialTimes import FinancialTimes from sources.MacWorld import MacWorld from sources.Wired import Wired +from sources.Engadget import Engadget DATABASE_PATH = Path("storage.db") GRAB_FREQUENCY = 15 @@ -39,6 +40,7 @@ def main(): FinancialTimes(db), MacWorld(db), Wired(db), + Engadget(db), ] while True: diff --git a/sources/Engadget.py b/sources/Engadget.py new file mode 100644 index 0000000..8492730 --- /dev/null +++ b/sources/Engadget.py @@ -0,0 +1,5 @@ +from grabber import Grabber + + +class Engadget(Grabber): + feed_url = "https://www.engadget.com/rss.xml"