import requests import os import json # Replace with a known-404 page for whatever you want. Doing this so the nginx version is accurate. url_404 = 'https://askiiart.net/sdlfjsadljfs' html_404 = str(requests.get(url_404).text) boykisser_url = 'https://askiiart.net/assets/boykisser.png' try: os.mkdir('pages') except FileExistsError: pass with open('status-codes.json', 'r') as codes_file: codes_dict = json.load(codes_file) for code in codes_dict: new_html = html_404.replace('404 Not Found', f'{code} {codes_dict[code]}') if code == "404": new_html = new_html.replace("

404 You Made A Typo In The URL, Didn't You?

", f"

404 You Made A Typo In The URL, Didn't You?


\"boykisser\"300 Poll', '

300 Poll


57% Yes, 43% No
(300 Multiple Choices is the actual error code? Geddit?)') with open(f'pages/{code}.html', 'w') as new_file: new_file.write(new_html) exit()