Update feed limit (20 is too little)
This commit is contained in:
+3
-3
@@ -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'
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user