diff --git a/py/proxies.py b/py/proxies.py deleted file mode 100644 index 859809b..0000000 --- a/py/proxies.py +++ /dev/null @@ -1,24 +0,0 @@ -import json - -with open('json/proxies.json') as f: - x = json.load(f) - -text = "" -for i in x["cards"]: - text += f""" -
-

{i["name"]}

-

{i["description"]}

- - """ - if i["tor"] != "#": - text += f'' - - text += "
" - -with open('_site/proxies/index.html') as f: - y = f.read() - -y = y.replace('', text) -with open('_site/proxies/index.html', 'w') as f: - f.write(y)