I am trying to make a flask web application that can download a whole web page and render it on localhost to crop elements.The requests module takes all of the data from the site except some as it says
from origin 'http://127.0.0.1:5000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
Following is the code that I have for the flask app. I have tried flask_cros too but it doesn't seem to help.
from flask_socketio import SocketIO, emit
from flask_session import Session
import requests
from bs4 import BeautifulSoup
from urllib.parse import urlparse
from flask_cors import CORS,cross_origin
app= Flask(__name__)
app.config["SECRET_KEY"] = os.getenv("SECRET_KEY")
app.config["CORS_HEADERS"]="Content-Type"
socketio=SocketIO(app)
session=Session(app)
cors = CORS(app)
dir= os.path.abspath(os.getcwd())
@app.route("/")
def index():
return render_template("index.html")
@app.route("/crop",methods=["POST"])
@cross_origin()
def crop():
if request.method=="POST":
outfile=open("result.txt","w")
outfile.write("<iframe>")
outfile.close()
dummy= open("templates/down.html",'w')
dummy.close()
global link
link = str(request.form.get("url"))
r= requests.get(link,allow_redirects=True,headers={"User-Agent":"Chrome/42.0.2311.135"})
if r.status_code==405:
return render_template("exception.html")
soup = BeautifulSoup(r.content,"html.parser")
outfile=open("links.html","w")
for a in soup.findAll("link",attrs={'href':True},rel="stylesheet"):
if a['href'][0:4]!="http":
dom= urlparse(link)
wurl=dom.scheme+"://"+dom.netloc
r1=requests.get(wurl+a['href'],headers={"User-Agent":"Chrome/42.0.2311.135"})
if r1.status_code==200:
a['href']= wurl + a['href']
print(a)
outfile.write(str(a))
else:
a['href']= link + a['href']
outfile.write(str(a))
else:
outfile.write(str(a))
outfile.close()
body= soup.prettify("utf-8")
with open("templates/down.html",'wb') as file:
file.write(body)
return render_template("base.html") ```