check-blogs/blog_rss_urls.py (36 lines of code) (raw):
# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Description: This file contains the list of RSS URLs for each blog category.
rss_urls = [
"https://cloudblog.withgoogle.com/" + blog_feed
for blog_feed in [
"products/ai-machine-learning/rss/",
"products/api-management/rss/",
"products/application-development/rss/",
"products/application-modernization/rss/",
"products/chrome-enterprise/rss/",
"products/compute/rss/",
"products/containers-kubernetes/rss/",
"products/data-analytics/rss/",
"products/databases/rss/",
"products/devops-sre/rss/",
"products/identity-security/rss/",
"products/infrastructure-modernization/rss/",
"products/infrastructure/rss/",
"products/media-entertainment/rss/",
"products/networking/rss/",
"products/productivity-collaboration/rss/",
"products/sap-google-cloud/rss/",
"products/storage-data-transfer/rss/",
"topics/consulting/rss/",
"topics/financial-services/rss/",
"topics/healthcare-life-sciences/rss/",
"topics/inside-google-cloud/rss/",
"topics/manufacturing/rss/",
"topics/partners/rss/",
"topics/public-sector/rss/",
"topics/retail/rss/",
"topics/startups/rss/",
"topics/supply-chain-logistics/rss/",
"topics/sustainability/rss/",
"topics/telecommunications/rss/",
"topics/threat-intelligence/rss/",
]
]