Skip to main content

A simple Django app that tracks podcast feeds and provides some useful metrics about them.

Project description

Django Podcast Analyzer

A simple Django app that allows you to follow the feeds of various podcasts and glean interesting information from them.

PyPI PyPI - Python Version PyPI - Versions from Framework Classifiers Black code style Pre-commit License uv Ruff Security: bandit Checked with pyright Semantic Versions Test results Coverage Status Documentation

Warning

This is early stage! Things that still need to be done:

  • Better handling of duplicate people discovered from multiple feeds
  • Improved docs.

Installation

Via pip:

python -m pip install django-podcast-analyzer

Via uv:

uv pip install django-podcast-analyzer

Then add it and our dependencies to your list of installed apps.

# settings.py

# Your setup may vary.
INSTALLED_APPS = [
    "django.contrib.auth",
    "django.contrib.contenttypes",
    "django.contrib.sessions",
    "django.contrib.sites",
    "django.contrib.messages",  # Optional
    "django.contrib.staticfiles",
    "django.contrib.admin",
    "django.forms",
    ...,
    # Here are our explict dependencies
    "tagulous",
    "django_q",
    "podcast_analyzer",
]

We use tagulous for tagging podcasts and django-q2 to handle the scheduled tasks related to fetching feeds and processing them. See the documentation for both of those projects to identify any additional configuration needed.

Add it to your urls.py:

# Your root urls.py

from django.urls import include, path

urlpatterns = [
    ...,
    path("podcasts/", include("podcast_analyzer.urls", namespace="podcasts")),
    ...,
]

Then run your migrations.

python manage.py migrate

You'll also want to seed the database with the known iTunes categories for podcasts. You can do this via the provided management command. It will only do so if the respective tables are empty so you won't get duplicates.

python manage.py seed_database_itunes

In order to run the application, you will also need to spawn a django-q cluster using python manage.py qcluster. You can also use a runner like honcho or a Supervisor app.

Other Recommendations

For storage of podcast art and other media, it's recommended you consider using something like django-storages.

Development

Contributions are welcome! See our contributing guide for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_podcast_analyzer-0.2.7.tar.gz (59.3 kB view details)

Uploaded Source

Built Distribution

django_podcast_analyzer-0.2.7-py3-none-any.whl (51.3 kB view details)

Uploaded Python 3

File details

Details for the file django_podcast_analyzer-0.2.7.tar.gz.

File metadata

File hashes

Hashes for django_podcast_analyzer-0.2.7.tar.gz
Algorithm Hash digest
SHA256 9c603a322632dde4e1de92ac04899a5a2721eb9e17b7f63f68f11245213ea273
MD5 a9f92b159b47a7ce47f9cbdb3b4401da
BLAKE2b-256 eb6d9c71dbe2b786e1920c48d9118b879c572ec0d0c80dc19d001522db869065

See more details on using hashes here.

File details

Details for the file django_podcast_analyzer-0.2.7-py3-none-any.whl.

File metadata

File hashes

Hashes for django_podcast_analyzer-0.2.7-py3-none-any.whl
Algorithm Hash digest
SHA256 03391c15247f28fb50d5d7acb2f2a349bc590b47765c778bbe0533b213e3b653
MD5 0ef1370b92b13ccf1a216150f92f9942
BLAKE2b-256 55fa45cd4d1ca8c1196d5455025214393d8abaf73a7ece399628c2419da32791

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page