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.Engadget import Engadget
|
||||||
from sources.FinancialTimes import FinancialTimes
|
from sources.FinancialTimes import FinancialTimes
|
||||||
from sources.ForbesBusiness import ForbesBusiness
|
from sources.ForbesBusiness import ForbesBusiness
|
||||||
|
from sources.ForbesFinance import ForbesFinance
|
||||||
from sources.ForbesTechnology import ForbesTechnology
|
from sources.ForbesTechnology import ForbesTechnology
|
||||||
from sources.HuffingtonPostBusiness import HuffingtonPostBusiness
|
from sources.HuffingtonPostBusiness import HuffingtonPostBusiness
|
||||||
from sources.HuffingtonPostTechnology import HuffingtonPostTechnology
|
from sources.HuffingtonPostTechnology import HuffingtonPostTechnology
|
||||||
|
@ -39,6 +40,7 @@ def main():
|
||||||
Engadget(db),
|
Engadget(db),
|
||||||
FinancialTimes(db),
|
FinancialTimes(db),
|
||||||
ForbesBusiness(db),
|
ForbesBusiness(db),
|
||||||
|
ForbesFinance(db),
|
||||||
ForbesTechnology(db),
|
ForbesTechnology(db),
|
||||||
HuffingtonPostBusiness(db),
|
HuffingtonPostBusiness(db),
|
||||||
HuffingtonPostTechnology(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