I am using the mod_python apache to support an api that will fetch files among other things. I need to enforce a restriction that a user has no more than two download calls to the api.
Now, I am using req.sendfile to send the file, at the end of which I could note the completion of this request, except that the req.sendfile is non blocking. Can anyone help me out here? What is the better / correct way to do this?