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
|
# Define your feeds here
|
||||||
FEEDS = [
|
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',
|
'name': 'New Apps',
|
||||||
'description': 'Latest new Pebble 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',
|
'name': 'Updated Apps',
|
||||||
'description': 'Recently updated Pebble 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',
|
'name': 'Games',
|
||||||
'description': 'Pebble games'
|
'description': 'Pebble games'
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user