hmleal / django-podcast

A small django app to easily publish podcasts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-podcast

A small django app to easily publish podcasts

Code style: black Build Status

Requirements

  • Python (3.8, 3.9)
  • Django (3.2)

Installation

Install using pip ...

pip install django-podcast

Add 'podcast' to your INSTALLED_APPS setting

INSTALLED_APPS = [
    ...
    'podcast',
]

Add these lines to your URL configuration, urls.py

urlpatterns = (
    path('podcasts/', include('podcast.urls')),
)

And finally migrate your database

python manage.py migrate podcast

Relevant links

About

A small django app to easily publish podcasts

License:MIT License


Languages

Language:Python 86.3%Language:HTML 13.7%