Skip to content

ephes/django-indieweb

Repository files navigation

django-indieweb

image

image

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