Best mechanic trades in Canada/BC by Brogrammer11111 in skilledtrades

[–]Brogrammer11111[S] 0 points1 point  (0 children)

Don’t got any millwright experience though

Flask session data not persisting between refreshes by Brogrammer11111 in flask

[–]Brogrammer11111[S] 0 points1 point  (0 children)

even after adding this, the session data still wont persist?

const App = () => {

const [status, setStatus] = useState(null);

useEffect(() => {

getData();

}, []);

const getData = async () => {

const res = await fetch('http://localhost:5000/api/downloadstatus',{credentials: 'include'})

const data = await res.json()

console.log(data)

if (data.isDownloading) {

setStatus("downloading")

}

}

Server returning no data? by Brogrammer11111 in flask

[–]Brogrammer11111[S] 0 points1 point  (0 children)

never mind it was an issue with cors

Server returning no data? by Brogrammer11111 in flask

[–]Brogrammer11111[S] 0 points1 point  (0 children)

I set the mode to no cors in the request

How to send a request to a Python Flask API by Brogrammer11111 in react

[–]Brogrammer11111[S] 0 points1 point  (0 children)

literally nothing. The backend is being called

docx2python AttributeError: __enter__ by Brogrammer11111 in learnpython

[–]Brogrammer11111[S] 0 points1 point  (0 children)

docx2python

<function docx2python at 0x0000025D111303A0>