Rate-Limiting POST requests
Summary
In order to prevent people from spamming the server with requests, we can tell django to limit the rate at which users post data to the server. This is done with a certain @ratelimit wrapper in views.py.
Will need to add this package: https://django-ratelimit.readthedocs.io/en/v1.0.0/
We want to rate limit our views which post data to the server to prevent abuse.