Metadata-Version: 1.1
Name: djangoblogs
Version: 0.1.1
Summary: Django blogging with medium style editor
Home-page: https://github.com/arjunsinghy96/django-blogs
Author: Arjun Singh Yadav
Author-email: arjunsinghy96@gmail.com
License: MIT
Description: # Django Blogs
        
        Django blogs provides a WYSIWYG blogging application with medium style editor using [Medium-Editor](https://github.com/yabwe/medium-editor).
        
        ## Quickstart
        
        1. Add `'blogs'` to your INSTALLED_APPS setting like this:
        ```python
        INSTALLED_APPS = [
            ...
            'blogs',
        ]
        ```
        
        2. Include the `django-blogs` URLconf in your project urls.py:
        ```python
        path('blogs/', include('blogs.urls')),
        ```
        
        3. Run `./mangage.py migrate` to create the `django-blogs` models.
Keywords: django blogs medium blog
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
