I created a Django project which I use in Apache server.
The project simply edits an .m3u
file when you press a button on a page, and generates a new .m3u
file. The script works as intended.
Can Django generate a download link automatically for this newly generated .m3u
file? I understand from many tutorials that I need to edit the urls.py
and view.py
files, but I need it to be done automatically.
Or another option would be to make the file downloadable via Apache directly if something like this is possible.