Hi guys,
Hoping someone can provide some help. So far what my Wix site does is:
- A user inputs a URL into the #userinput box.
- The user then hits the Export button which sends the url to my Flask App off-site which scrapes data and turns into a csv. (Image 1)
Right now, when the Flask app sends that data back, it is sent back as csv style free text. Ideally, I’d want it to automatically load on the user side or create a #hyperlink they can save as a csv.
In the Returned CSV...
hyperlink below, I was able to hardcode a url that a user could save as a CSV. (image 2)
My question is, does anyone know how I can have that url be dynamically generated instead of hard-coded? So that the user input could be passed into my Flask app and then have a hyperlink show up?
Thanks!