[Answer]-Export Django view to static HTML files using Django API (i.e. not wget or other scraper)

1👍

The easiest way is to use django test client

>>> from django.test import Client
>>> c = Client()
>>> response = c.get('/')
>>> response.content
👤Marat

Leave a comment