How can I run a backend in django that is saving objects in the database while the page is running?
Example a scraper is running in the back indefinitely, and updating the models with articles (title, summary, url) The page is showing those that are already in the database, and possibly a number of pages scraped in the meantime (like on twitter) which you could load.
One way would be to write it in python-mysql script which update the table directly. But is there a way of accessing the django-models interface? In other words what's the django way of doing this?