We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 716b827 commit 73fbe67Copy full SHA for 73fbe67
src/fundus/publishers/us/__init__.py
@@ -21,6 +21,7 @@
21
from .washington_times import WashingtonTimesParser
22
from .wired import WiredParser
23
from .world_truth import WorldTruthParser
24
+from .rest_of_world import RestOfWorldParser
25
26
27
class US(metaclass=PublisherGroup):
@@ -274,3 +275,14 @@ class US(metaclass=PublisherGroup):
274
275
Sitemap("https://www.wired.com/sitemap-archive-1.xml"),
276
],
277
)
278
+
279
+ RestOfWorld = Publisher(
280
+ name="Rest of World",
281
+ domain="https://restofworld.org/",
282
+ parser=RestOfWorldParser,
283
+ sources=[
284
+ RSSFeed("https://restofworld.org/feed/latest/"),
285
+ Sitemap("https://restofworld.org/sitemap.xml"),
286
+ ]
287
288
+ )
0 commit comments