From a3bd5d1388034d993f7fecad6c6fd8dd0465d488 Mon Sep 17 00:00:00 2001 From: Devyn Keeney Date: Mon, 3 Jun 2024 09:17:22 -0500 Subject: [PATCH] Update FRC/FTC blogs to new URLs --- dozer/sources/RSSSources.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dozer/sources/RSSSources.py b/dozer/sources/RSSSources.py index a1f025df..14e8fa64 100644 --- a/dozer/sources/RSSSources.py +++ b/dozer/sources/RSSSources.py @@ -154,8 +154,8 @@ def generate_plain_text(self, data): class FRCBlogPosts(RSSSource): """Official blog posts from the FIRST Robotics Competition""" - url: str = "https://www.firstinspires.org/robotics/frc/blog-rss" - base_url: str = "https://www.firstinspires.org/robotics/frc/blog/" + url: str = "https://community.firstinspires.org/topic/frc/rss.xml" + base_url: str = "https://community.firstinspires.org/topic/frc" full_name = "FRC Blog Posts" short_name = "frc" description = "Official blog posts from the FIRST Robotics Competition" @@ -204,8 +204,8 @@ class FTCQA(RSSSource): class FTCBlogPosts(RSSSource): """The official FTC Blogspot blog""" - url = "http://firsttechchallenge.blogspot.com//feeds/posts/default" - base_url = "http://firsttechchallenge.blogspot.com/" + url = "https://community.firstinspires.org/topic/ftc/rss.xml" + base_url = "https://community.firstinspires.org/topic/ftc" full_name = "FTC Blog Posts" short_name = "ftc" description = "Official blog posts from the FIRST Tech Challenge"