shakecities/sites/website.py

19 lines
570 B
Python
Raw Normal View History

from flask import Flask, make_response, redirect, render_template_string, request, jsonify, render_template, send_from_directory
2023-11-08 22:51:39 +11:00
from bs4 import BeautifulSoup
2023-11-08 23:25:01 +11:00
import bleach
def render(data):
2023-11-08 22:32:00 +11:00
if data == "":
return "No data found for this domain"
2023-11-08 22:51:39 +11:00
try:
soup = BeautifulSoup(data, 'html.parser')
for script in soup.find_all('script'):
script.extract()
2023-11-08 23:25:01 +11:00
modified = str(soup)
return render_template_string(bleach.clean(modified))
2023-11-08 22:51:39 +11:00
except Exception as e:
return "<h1>Invalid HTML</h1><br>" + str(e)