AndrewJBateman / python-django-api

:clipboard: Python 3.8 with django used to display info from an API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

⚑ Python Django API

  • A RESTful API built using Python and the Django framework
  • Note: to open web links in a new window use: ctrl+click on link

GitHub repo size GitHub pull requests GitHub Repo stars GitHub last commit

πŸ“„ Table of contents

πŸ“š General info

πŸ“· Screenshots

screen print screen print

πŸ“Ά Technologies

πŸ’Ύ Setup

πŸ’» Code Examples

  • The ArticleViewSet class with the queryset and serializer_class attributes provided. The actions provided by the ModelViewSet class are .list(), .retrieve(), .create(), .update(), .partial_update(), and .destroy().
class ArticleViewSet(viewsets.ModelViewSet):
    """
    A simple ViewSet for viewing all articles.
    """
    queryset = Article.objects.all()
    serializer_class = ArticleSerializer

πŸ†’ Features

  • tba

πŸ“‹ Status & To-do list

  • Status: Mostly complete
  • To-do: Add commenting and test some more

πŸ‘ Inspiration

πŸ“ License

  • This project is licensed under the terms of the MIT license.

βœ‰οΈ Contact

About

:clipboard: Python 3.8 with django used to display info from an API


Languages

Language:Python 100.0%