Metadata-Version: 2.1
Name: django_drf_coy_apis
Version: 0.1.0
Summary: A Django app Company Info 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 "Coy" to your INSTALLED_APPS setting like this::

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

    path("coy/", include("django-drf-coy-apis.urls")),

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

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


