We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f14b6ff commit ce4c314Copy full SHA for ce4c314
workbook/actions.py
@@ -23,9 +23,9 @@ def get_problem_info(workbook_url):
23
txt = requests.get(workbook_url, headers=headers).text
24
pattern = '/problem/'
25
ret = []
26
- print(txt)
27
while True:
28
x = txt.find(pattern)
+ print(f'Parsing {workbook_url}... {x}')
29
if x == -1: break
30
txt = txt[x+9:]
31
prob_id, prob_name = '', ''
0 commit comments