django-indieweb

includes indieauth and a micropub endpoint


Keywords
indieweb, indieauth, micropub, django, oauth2
License
BSD-3-Clause
Install
pip install django-indieweb==0.0.5

Documentation

django-indieweb

https://badge.fury.io/py/django-indieweb.png https://travis-ci.org/ephes/django-indieweb.png?branch=master

includes indieauth and a micropub endpoint

Documentation

The full documentation is at https://django-indieweb.readthedocs.org.

Quickstart

Install django-indieweb:

pip install django-indieweb

Then use it in a project:

import indieweb

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install flit
(myenv) $ flit install -s
(myenv) $ pytest

Show coverage:

$ coverage run -m pytest tests && coverage html && open htmlcov/index.html