Skip to main content

An article model for Django-Rest-Framework.

Project description

Mb-drf-article

Mb-drf-article is a simple Django Rest Framework app to add some articles.

Quick start

1. Add "mb-drf-article" to your INSTALLED_APPS settings

# settings.py

INSTALLED_APPS = [
...
'mb-drf-article',
]

2. Include the articles URLconf in your project urls.py

# urls.py

urlpatterns = [
    # ...
    path('articles/', include('mb-drf-article.urls')),
]

3. Add the models in your Database

Run python manage.py migrate in your SHELL.

4. Update the Django Rest Framework Settings

Update the Django Rest Framework settings to add a pagination.

# Django Rest Framework
# https://www.django-rest-framework.org

REST_FRAMEWORK = {
    # ...
    'DEFAULT_PAGINATION_CLASS': ('rest_framework.pagination.'
                                 'LimitOffsetPagination'),
    'PAGE_SIZE': 5
}

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

mb_drf_article-0.1.2.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

mb_drf_article-0.1.2-py3-none-any.whl (6.9 kB view hashes)

Uploaded Python 3

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