Skip to content

hmleal/django-podcast

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published