Add signatures from #837
parent
98a1956dcd
commit
417908130a
@ -0,0 +1,2 @@ |
||||
name: Domosed |
||||
link: https://github.com/Domosed-gamin |
@ -0,0 +1,2 @@ |
||||
name: J.Y.Amihud ( Blender Dumbass ) |
||||
link: https://odysee.com/@blenderdumbass:f/ |
@ -0,0 +1,2 @@ |
||||
name: James Stone |
||||
link: mailto:jstone@jnet-it.com |
@ -0,0 +1,2 @@ |
||||
name: vasily boytsov |
||||
link: https://repo.or.cz/projlist.cgi?name=e991afe644e3fcbc2b92e01a5f474a3d |
@ -0,0 +1,2 @@ |
||||
name: Tagiev Bayram |
||||
link: https://github.com/LLIAJIYH |
@ -0,0 +1,2 @@ |
||||
name: jair wang |
||||
link: https://github.com/LdBeth |
@ -0,0 +1,2 @@ |
||||
name: Adrien Bourmault |
||||
link: mailto:neox@os-k.eu |
@ -0,0 +1,2 @@ |
||||
name: Brian Beckman |
||||
link: https://github.com/axceron |
@ -0,0 +1,2 @@ |
||||
name: birdboy2000 |
||||
link: mailto:b1rdboy2000@msn.com |
@ -0,0 +1,2 @@ |
||||
name: Comrade Skeleton |
||||
link: https://github.com/comrade-skeleton |
@ -0,0 +1,2 @@ |
||||
name: Daveout |
||||
link: https://github.com/daveout |
@ -0,0 +1,2 @@ |
||||
name: your real name |
||||
link: https://github.com/demansr/ |
@ -0,0 +1,2 @@ |
||||
name: Christian Elsner |
||||
link: mailto:elsner@mpe.mpg.de |
@ -0,0 +1,2 @@ |
||||
name: Ken Fyrstenberg |
||||
link: https://github.com/epistemex |
@ -0,0 +1,2 @@ |
||||
name: Nikita Manzin |
||||
link: https://github.com/i-just-lizard |
@ -0,0 +1,2 @@ |
||||
name: Jed Eckert |
||||
link: https://none |
@ -0,0 +1,2 @@ |
||||
name: Jim |
||||
link: https://github.com/jimrs |
@ -0,0 +1,2 @@ |
||||
name: Nestor Diaz Valencia |
||||
link: https://github.com/n3storm |
@ -0,0 +1,2 @@ |
||||
name: Joe Hill |
||||
link: mailto:joe@joeth.uk |
@ -0,0 +1,2 @@ |
||||
name: Pedro Esteves Pinto |
||||
link: https://github.com/pedro-esteves-pinto/ |
@ -0,0 +1,2 @@ |
||||
name: Kirill Afonshin |
||||
link: https://github.com/pmvd |
@ -0,0 +1,2 @@ |
||||
name: Paul White |
||||
link: https://github.com/psxxx |
@ -0,0 +1,2 @@ |
||||
name: Ivan Kuzmenko |
||||
link: https://github.com/rndtrash |
@ -0,0 +1,2 @@ |
||||
name: Siduck |
||||
link: https://github.com/siduck76 |
@ -0,0 +1,2 @@ |
||||
name: Sreejith Subhash |
||||
link: https://github.com/sjith7 |
@ -0,0 +1,2 @@ |
||||
name: Joshua Jacob |
||||
link: https://github.com/sunnyjim5 |
@ -0,0 +1,2 @@ |
||||
name: Carlo |
||||
link: https://github.com/unbearableDarkness |
@ -0,0 +1,2 @@ |
||||
name: Evgeny Ermakov |
||||
link: https://github.com/unspecd |
@ -0,0 +1,20 @@ |
||||
import subprocess |
||||
import os |
||||
|
||||
|
||||
parts = subprocess.run(["gh", "issue", "view", "837", "-c"], capture_output=True).stdout.split(b"\n--\n") |
||||
|
||||
for info, content in zip(parts[::2], parts[1::2]): |
||||
info_dict = {} |
||||
for line in info.decode().split("\n"): |
||||
key, value = line.split(":\t") |
||||
info_dict[key] = value |
||||
|
||||
author = info_dict["author"] |
||||
|
||||
content_lines = [line.strip() for line in content.decode().replace("`", "").strip().split("\n")] |
||||
for i in range(len(content_lines) - 1): |
||||
if content_lines[i].startswith("name:") and content_lines[i + 1].startswith("link:"): |
||||
if not os.path.isfile(f"_data/signed/{author}.yaml"): |
||||
with open(f"_data/signed/{author}.yaml", "w") as f: |
||||
f.write(content_lines[i] + "\n" + content_lines[i + 1] + "\n") |
Loading…
Reference in new issue