1👍
✅
Well, if that news website provides an API to fetch news, you can keep making AJAX requests to their API URLs at regular intervals to retrieve latest news.
But if that website doesn’t provide any API, make AJAX requests to your server, then at your server do some web-scraping and return the news to the AJAX request.
1👍
A solution is using HTML iFrame.
I would not recommend it though – loading your website would take a long time (because X iFrames needs to load as well).
- [Answered ]-Load Django fixtures with nullable foreign key fields
- [Answered ]-Django uploading a file from a form fails to validate
- [Answered ]-Can I bulk upload a CSV to Django with many to one relationship mapping?
Source:stackexchange.com