Add Wired grabber.
This commit is contained in:
parent
970607ab18
commit
a928a4beee
2
run.py
2
run.py
@ -13,6 +13,7 @@ from sources.ForbesBusiness import ForbesBusiness
|
||||
from sources.ForbesTechnology import ForbesTechnology
|
||||
from sources.FinancialTimes import FinancialTimes
|
||||
from sources.MacWorld import MacWorld
|
||||
from sources.Wired import Wired
|
||||
|
||||
DATABASE_PATH = Path("storage.db")
|
||||
GRAB_FREQUENCY = 15
|
||||
@ -37,6 +38,7 @@ def main():
|
||||
ForbesTechnology(db),
|
||||
FinancialTimes(db),
|
||||
MacWorld(db),
|
||||
Wired(db),
|
||||
]
|
||||
|
||||
while True:
|
||||
|
5
sources/Wired.py
Normal file
5
sources/Wired.py
Normal file
@ -0,0 +1,5 @@
|
||||
from grabber import Grabber
|
||||
|
||||
|
||||
class Wired(Grabber):
|
||||
feed_url = "http://www.wired.com/feed"
|
Loading…
x
Reference in New Issue
Block a user