Skip to content

Instantly share code, notes, and snippets.

@altilunium
Last active September 1, 2022 10:36
Show Gist options
  • Save altilunium/fded7ecf71023d1a9e81e630d526e736 to your computer and use it in GitHub Desktop.
Save altilunium/fded7ecf71023d1a9e81e630d526e736 to your computer and use it in GitHub Desktop.
Quarry Wikitable Linker
f = open('usren.wikitable','r', encoding="utf-8")
l = f.readlines()
for x in l:
if '/' not in x:
if '|-' not in x:
n = x.split('|')
#print(n)
try:
print("|{{no ping|"+n[1]+"}}||"+n[3].rstrip('\n'))
print("|-")
except:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment