wrote python script to decode html entities in scraped text
parent
07caa27fce
commit
70f0b7cb3b
|
@ -0,0 +1,13 @@
|
|||
import html
|
||||
|
||||
def main():
|
||||
|
||||
# read in the file
|
||||
with open("../data/yaml/monsters.yaml", 'r') as content_file:
|
||||
content = content_file.read()
|
||||
# print(html.unescape(content))
|
||||
with open("../data/yaml/monsters-fixed.yaml", 'w') as outfile:
|
||||
outfile.write(html.unescape(content))
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
Loading…
Reference in New Issue