Note this project uses a patched version of django-url-filter
So running pip install django-url-filter
on the master branch would cause breaking errors.
Use drf-patch-bypass
branch to avoid the above issue, it comes with a patched version of the library.
To fix after running the install command open validators.py
of the url-filter module
usually located at
<path_to_virtual_env>/lib/<python_version>/site-packages/url_filter/validators.py
Then replace the line
from django.utils.translation import ungettext_lazy
with
try:
from django.utils.translation import ungettext_lazy
except ImportError:
from django.utils.translation import gettext_lazy as ungettext_lazy
This app has two major views
<host-url>/
and<host-url>/stories/
direct to the main page of the application showing a list of recent stories.<host-url>/stories/<pk>/
show infromation on a single story
All api calls occur on the base url
<host-url>/api/v1/
This end point supports POST and GET requests for the creation of stories and Viewing of a list of stories
- POST
{ "text": "string", "url": "string", "title": "string" }
Supports GET, PUT, and DELETE requests for the retreival, update and deletion of a single entity by its unique identifier
- PUT
{ "id": "integer", "text": "string", "url": "string", "title": "string" }
supports a GET and POST request to List all direct comments for or add a comment to a particualar story
- POST
{ "text": "string", "url": "string", }
This end point supports POST and GET requests for the creation of stories and Viewing of a list of stories
- POST
{ "text": "string", "url": "string", }
Supports GET and PUT requests for the retreival, and update of a single entity by its unique identifier
- PUT
{ "id": "integer", "text": "string", "url": "string", }
supports a GET request to List all direct comments for a particualar comment