Hey everyone I've as school project which needs me to collect certain data from NCBI and UniProt. After that this data used to generate HTML pages which is uploaded to an existing worldpress website
Now I'm stuck with finding out what I would use to upload this data to the website. I was considering using flask but it seems it can be done a lot easier. Does anybody have any suggestions, Thanks in advance.
Thank you for you're answer.
I probably should have formulated the question better but the data from NCBI and UniProt is used to generate HTML pages and these pages are added to the website. Sorry for the trouble
In that case, you can use Dramatiq to schedule your requests and render static pages with a template system like Mako or Jinja directly from Python (the latter is also used in Flask). In your Wordpress site, you then just link to those static pre-rendered pages that you can host on any web server.
But if you anyway use Wordpress CMS to do server-side rendering of your pages, why not just add the relevant content to the database and generate the pages / components dynamically upon request?