Skip to content

Tag: httprequest

Calling a view from a management command

So I have added a command to manage.py in my django app that basically takes the results from a view and emails them out to specific users. This command will run on a cron schedule – basically this is done as an automated, emailed report. I’ve figured out how to add in the command but I want to ca…