Skip to content

Commit ce4c314

Browse files
committed
workbook 자동화
1 parent f14b6ff commit ce4c314

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workbook/actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ def get_problem_info(workbook_url):
2323
txt = requests.get(workbook_url, headers=headers).text
2424
pattern = '/problem/'
2525
ret = []
26-
print(txt)
2726
while True:
2827
x = txt.find(pattern)
28+
print(f'Parsing {workbook_url}... {x}')
2929
if x == -1: break
3030
txt = txt[x+9:]
3131
prob_id, prob_name = '', ''

0 commit comments

Comments
 (0)