Giter VIP home page Giter VIP logo

django-messages-drf's Introduction

Django Messages DRF

CircleCi codecov

Official Documentation - https://tarsil.github.io/django-messages-drf/


Table of Contents


About Django Messages DRF

Django Messages DRF is an alternative and based on pinax-messages but using Django Rest Framework by making it easier to integrate with your existing project.

A special thanks to pinax for inspiring me to do this and use some ideas.

Overview

django-messages-drf is an app for providing private user-to-user threaded messaging.

Supported Django and Python Versions

Django / Python 3.6 3.7 3.8 3.9 3.10
2.2 Yes Yes Yes Yes Yes
3.0 Yes Yes Yes Yes Yes
3.1 Yes Yes Yes Yes Yes
3.2 Yes Yes Yes Yes Yes
4.0 Yes Yes Yes Yes Yes

Documentation

Installation

To install django-messages:

$ pip install django-messages-drf

Add django_messages_drf to your INSTALLED_APPS:

INSTALLED_APPS = [
    # other apps
    "django_messages_drf",
]

Run Django migrations to create django-messages-drf database tables:

$ python manage.py migrate

Add django_messages_drf.urls to your project urlpatterns:

    urlpatterns = [
        # other urls
        path(r"^messages-drf/", include("django_messages_drf.urls", namespace="django_messages_drf")),
    ]

Reference Guide

URL–View–Template Matrix

URL Name View
django_messages_drf:inbox InboxListApiView
django_messages_drf:thread ThreadListApiView
django_messages_drf:thread-create ThreadCRUDApiView
django_messages_drf:thread-send ThreadCRUDApiView
django_messages_drf:thread-delete ThreadCRUDApiView
django_messages_drf:message-edit EditMessageApiView

Documentation and Support

Full documentation for the project is available at https://tarsil.github.io/django-messages-drf/

License

Copyright (c) 2020-present Tiago Silva and contributors under the MIT license.

django-messages-drf's People

Contributors

tarsil avatar kamikaz1k avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.