You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
433 B
14 lines
433 B
import requests
|
|
from _importer import parse_and_import_signature
|
|
|
|
|
|
page = 1
|
|
while True:
|
|
comments = requests.get(f"https://codeberg.org/api/v1/repos/rms-support-letter/rms-support-letter/issues/comments?page={page}").json()
|
|
if not comments:
|
|
break
|
|
for comment in comments:
|
|
author = comment["user"]["login"]
|
|
content = comment["body"]
|
|
parse_and_import_signature(content, author)
|
|
page += 1
|
|
|