Metadata-Version: 2.1
Name: djangoblogs
Version: 0.2.0
Summary: Django blogging with medium style editor
Home-page: https://github.com/arjunsinghy96/djangoblogs
Author: Arjun Singh Yadav
Author-email: arjunsinghy96@gmail.com
License: MIT
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
Requires-Dist: django (>=2.0)

# Django Blogs

Django blogs provides a WYSIWYG blogging application with medium style editor using [Medium-Editor](https://github.com/yabwe/medium-editor).

## Installing

Install with pip using

```
pip install -U djangoblogs
```

## Quickstart

1. Add `'blogs'` to your INSTALLED_APPS setting like this:
```python
INSTALLED_APPS = [
    ...
    'blogs',
]
```

2. Include the `djangoblogs` URLconf in your project urls.py:
```python
path('blogs/', include('blogs.urls')),
```

3. Run `./mangage.py migrate` to create the `django-blogs` models.


