Metadata-Version: 2.1
Name: django-drf-blog-api
Version: 0.0.4
Summary: A Django app blog API endpoints.
Home-page: https://github.com/osiota10/blog_DRF_api
Author: Osiota Samuel Obrozie
Author-email: osiotaobrozie@gmail.com
License: BSD-3-Clause  # Example license
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE


# django-drf-blog-api


django-drf-blog-api is a Django blog API app



## Quick start


1. Add "Blog" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...,
        "django-drf-blog-api",
    ]
```
2. Include the polls URLconf in your project urls.py like this::

    path("blog/", include("django-drf-blog-api.urls")),

3. Run ``python manage.py migrate`` to create the models.

4. Start the development server and visit the admin to create a poll.

5. Visit the ``/blog/`` URL to participate in the poll.

