We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38b9d02 commit 123f944Copy full SHA for 123f944
linux_foundation.py
@@ -48,7 +48,8 @@ def parse_events_page():
48
def fetch_smapply_json():
49
has_next = True
50
page = 1
51
- while has_next:
+ # Ten page limit to deal with errors I guess?
52
+ while has_next and page < 10:
53
data = requests.get(f'https://linuxfoundation.smapply.io/prog/ds/?page={page}&base_query=all').json()
54
has_next = data['has_next']
55
page += 1
0 commit comments