Skip to main content

Web APIs for Django with comments, made easy.

Project description

[I forked this from DRF]

Django REST framework

build-status-image coverage-status-image pypi-version

Awesome web-browsable Web APIs.

Full documentation for the project is available at https://www.django-rest-framework.org/.


Funding

REST framework is a collaboratively funded project. If you use REST framework commercially we strongly encourage you to invest in its continued development by signing up for a paid plan.

The initial aim is to provide a single full-time position on REST framework. Every single sign-up makes a significant impact towards making that possible.

Many thanks to all our wonderful sponsors, and in particular to our premium backers, Sentry, Stream, Spacinov, Retool, bit.io, PostHog, CryptAPI, FEZTO, and Svix.


Overview

Django REST framework is a powerful and flexible toolkit for building Web APIs.

Some reasons you might want to use REST framework:

Below: Screenshot from the browsable API

Screenshot


Requirements

  • Python 3.8+
  • Django 5.0, 4.2

We highly recommend and only officially support the latest patch release of each Python and Django series.

Installation

Install using pip...

pip install drf-comments

Add 'drf_comments' to your INSTALLED_APPS setting.

INSTALLED_APPS = [
    ...
    'drf_comments',
]

Example

Let's take a look at a quick example of using REST framework to build a simple model-backed API for accessing users and groups.

Startup up a new project like so...

pip install django
pip install drf-comments
django-admin startproject example .
./manage.py migrate
./manage.py createsuperuser

Since this is a fork of django-rest-framework you do not need to install it unless this package is not up-to-date with the current django-rest-framework available

Now edit the example/urls.py module in your project:

from django.db import models
from django.contrib.auth.models import User
from drf_comments import serializers, viewsets
from drf_comments.comments import CommentViewSet, create_comment_model_for, create_comment_create_serializer_for, create_comment_serializer_for, create_comment_viewset_for
from drf_comments.permissions import IsAuthenticated
from drf_comments.authentication import TokenAuthentication

# model to add comments to
class Post(models.Model):
    user = models.ForeignKey(User, on_delete=models.CASCADE)
    title = models.CharField(max_length=255)
    content = models.TextField()
    created_at = models.DateTimeField(auto_now_add=True)
    updated_at = models.DateTimeField(auto_now=True)

    def __str__(self):
        return self.title

#serializer
class PostSerializer(serializers.ModelSerializer):
    class Meta:
        model = Post
        fields = ['id', 'user', 'title', 'content', 'created_at', 'updated_at']

#viewsets
class PostViewSet(viewsets.ModelViewSet):
    queryset = Post.objects.all()
    serializer_class = PostSerializer
    permission_classes = [IsAuthenticated]
    authentication_classes = [TokenAuthentication]

class PostCommentViewSet(CommentViewSet):
    model = Post
    comment_model = create_comment_model_for(Post)
    serializer_class = create_comment_serializer_for(Post)
    create_serializer_class = create_comment_create_serializer_for(Post)

    permission_classes = [IsAuthenticated]
    authentication_classes = [TokenAuthentication]

# Routers provide a way of automatically determining the URL conf.
router = DefaultRouter()
router.register(r'posts', PostViewSet)
router.register(r'posts/(?P<object_id>\d+)/comments', PostCommentViewSet, basename='post-comments')

# Wire up our API using automatic URL routing.
urlpatterns = [
    path('', include(router.urls)),
]

We'd also like to configure a couple of settings for our API.

Add the following to your settings.py module:

INSTALLED_APPS = [
    ...  # Make sure to include the default installed apps here.
    'drf_comments',
]

REST_FRAMEWORK = {
    # Use Django's standard `django.contrib.auth` permissions,
    # or allow read-only access for unauthenticated users.
    'DEFAULT_PERMISSION_CLASSES': [
        'drf_comments.permissions.DjangoModelPermissionsOrAnonReadOnly',
    ]
}

That's it, we're done!

./manage.py runserver

You can now open the API in your browser at http://127.0.0.1:8000/, and view your new 'users' API. If you use the Login control in the top right corner you'll also be able to add, create and delete users from the system.

You can also interact with the API using command line tools such as curl. For example:

$ curl -X POST http://localhost:8000/posts/ \
-H "Content-Type: application/json" \
-H "Authorization: Token YOUR_AUTH_TOKEN" \
-d '{
        "user": 1,
        "title": "First Post",
        "content": "This is the content of the first post."
    }'

And to create a comment tp that post:

$ curl -X POST http://localhost:8000/posts/1/comments/ \
-H "Content-Type: application/json" \
-H "Authorization: Token YOUR_AUTH_TOKEN" \
-d '{
        "user": 1,
        "text": "This is a comment on the first post."
    }'

You can also use requests.py to make API calls like so:

import requests

url = "http://localhost:8000/posts/"
headers = {
    "Content-Type": "application/json",
    "Authorization": "Token YOUR_AUTH_TOKEN"
}
data = {
    "user": 1,
    "title": "First Post",
    "content": "This is the content of the first post."
}

response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())

And:

import requests

url = "http://localhost:8000/posts/1/comments/"
headers = {
    "Content-Type": "application/json",
    "Authorization": "Token YOUR_AUTH_TOKEN"
}
data = {
    "user": 1,
    "text": "This is a comment on the first post."
}

response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())

Documentation & Support

Full documentation for the project is available at https://www.django-rest-framework.org/.

For questions and support, use the REST framework discussion group, or #restframework on libera.chat IRC.

Security

Please see the security policy.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

drf-comments-0.7.2.tar.gz (10.4 MB view details)

Uploaded Source

Built Distribution

drf_comments-0.7.2-py3-none-any.whl (2.6 MB view details)

Uploaded Python 3

File details

Details for the file drf-comments-0.7.2.tar.gz.

File metadata

  • Download URL: drf-comments-0.7.2.tar.gz
  • Upload date:
  • Size: 10.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.11.9

File hashes

Hashes for drf-comments-0.7.2.tar.gz
Algorithm Hash digest
SHA256 5481e389fc2d2c4f674e2d3212c70ba62e429807801ca524c5b291c18d885ec8
MD5 f47b4b973e47d4d7d3f69a6e0960dc9b
BLAKE2b-256 c7e2a2b93f5e1e2606af15cbe23bcab69d64ce271ecaf2d1b5d8f880a932034c

See more details on using hashes here.

File details

Details for the file drf_comments-0.7.2-py3-none-any.whl.

File metadata

File hashes

Hashes for drf_comments-0.7.2-py3-none-any.whl
Algorithm Hash digest
SHA256 6b0982a8ec94632c3f5fe01022976a1e7a05bbe5d11dd0f8e3ff3a68001c6fb6
MD5 a963196d8f61e6953c6160c4d016f442
BLAKE2b-256 8628383cb78cc6890c995ce11d26f0f4bdef82b575496ad48dd989ceceb6acc8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page