diff --git a/rss-generator.py b/rss-generator.py index 2121e36..ef297a4 100644 --- a/rss-generator.py +++ b/rss-generator.py @@ -13,17 +13,17 @@ from feedgen.feed import FeedGenerator # Define your feeds here FEEDS = [ { - 'url': 'https://repebblesearch.com/api/v1/apps?sort=release_date&order=desc&new_only=true', + 'url': 'https://repebblesearch.com/api/v1/apps?sort=release_date&order=desc&new_only=true&limit=50', 'name': 'New Apps', 'description': 'Latest new Pebble apps' }, { - 'url': 'https://repebblesearch.com/api/v1/apps?sort=release_date&order=desc&recently_updated=true', + 'url': 'https://repebblesearch.com/api/v1/apps?sort=release_date&order=desc&recently_updated=true&limit=50', 'name': 'Updated Apps', 'description': 'Recently updated Pebble apps' }, { - 'url': 'https://repebblesearch.com/api/v1/apps?sort=release_date&order=desc&categories=Games', + 'url': 'https://repebblesearch.com/api/v1/apps?sort=release_date&order=desc&categories=Games' 'name': 'Games', 'description': 'Pebble games' },