Add Forbes Finance grabber.
This commit is contained in:
parent
2bbad41655
commit
5b36f594ef
2
run.py
2
run.py
|
@ -8,6 +8,7 @@ from sources.BBCTechnology import BBCTechnology
|
|||
from sources.Engadget import Engadget
|
||||
from sources.FinancialTimes import FinancialTimes
|
||||
from sources.ForbesBusiness import ForbesBusiness
|
||||
from sources.ForbesFinance import ForbesFinance
|
||||
from sources.ForbesTechnology import ForbesTechnology
|
||||
from sources.HuffingtonPostBusiness import HuffingtonPostBusiness
|
||||
from sources.HuffingtonPostTechnology import HuffingtonPostTechnology
|
||||
|
@ -39,6 +40,7 @@ def main():
|
|||
Engadget(db),
|
||||
FinancialTimes(db),
|
||||
ForbesBusiness(db),
|
||||
ForbesFinance(db),
|
||||
ForbesTechnology(db),
|
||||
HuffingtonPostBusiness(db),
|
||||
HuffingtonPostTechnology(db),
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
from grabber import Grabber
|
||||
|
||||
|
||||
class ForbesFinance(Grabber):
|
||||
feed_url = "http://www.forbes.com/finance/feed/"
|
Loading…
Reference in New Issue