Can I programmatically update a wix.com website?

I have a wix website ( Doncaster Removals ) with a number of sections including a blog. Each day I have a number of Python scripts that run and generate dynamic content. Mostly in tabular form. Like so:

2017-03-21  306.67  2017-05-17  308.16  closed  0.49 %
2017-04-13  305.45  2017-05-17  308.16  closed  0.89 %
2017-05-17  308.16  2017-06-02  311.88  open    3.43 %

Currently we are cutting and pasting the content, but I would like to update the blog section of the site automatically each day when the scripts run. Is there a way to do this? Python would be my language of choice, but I am open to any workable solution.

You can create a scheduled job to run a backend module, request a node package, or import your python script through fetch alongside a scheduled job (making sure your python code outputs in JSON would be best).