django-spectator


Namedjango-spectator JSON
Version 14.2.0 PyPI version JSON
download
home_pagehttps://github.com/philgyford/django-spectator
SummaryA Django app to track book reading, movie viewing, gig going, play watching, etc.
upload_time2024-08-13 16:41:19
maintainerNone
docs_urlNone
authorPhil Gyford
requires_pythonNone
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Django Spectator

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-spectator)
[![Tests](https://github.com/philgyford/django-spectator/actions/workflows/tests.yml/badge.svg)](https://github.com/philgyford/django-spectator/actions/workflows/tests.yml)
[![codecov](https://codecov.io/gh/philgyford/django-spectator/branch/main/graph/badge.svg?token=T7TIJ5XNWH)](https://codecov.io/gh/philgyford/django-spectator)
[![Code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)

Two Django apps:

- One to track book and periodical reading, including start and end dates, authors, and cover images.
- One to track events attended (movie, plays, gigs, exhibitions, comedy, dance, classical), including date, venue (with maps), people/organisations involved, and images of tickets.

For Django 3.2, 4.1, 4.2 and 5.0, running on Python 3.8 upwards.

It has URLs, views and templates to create a site displaying all the data, and Django admin screens to add and edit them. The templates use [Bootstrap v4](https://getbootstrap.com).

There are also template tags for displaying data in your own templates (see below).

This is used on my personal website (with custom templates): [reading](https://www.gyford.com/phil/reading/) and [events](https://www.gyford.com/phil/events/).

## Contents

1. [Installation](#installation)
   - [Settings](#settings)
2. [Overview](#overview)
   - [Creators](#creators)
   - [Reading](#reading)
   - [Events](#events)
3. [Template tags](#template-tags)
   - [Core template tags](#core-template-tags)
   - [Reading template tags](#reading-template-tags)
   - [Events template tags](#events-template-tags)
4. [Local development](#local-development)
   - [Environment variables](#environment-variables)
   - [pre-commit](#pre-commit)
   - [Running tests locally](#running-tests-locally)
   - [Making a new release](#making-a-new-release)
   - [Adding a new Event kind](#adding-a-new-event-kind)
   - [Adding a new Work kind](#adding-a-new-work-kind)
5. [Contact](#contact)

## 1. Installation

Install [Pillow](https://python-pillow.org) or [PIL](http://www.pythonware.com/products/pil/) (used by [ImageKit](https://django-imagekit.readthedocs.io/en/latest/) to create thumbnail images).

Install with pip:

    pip install django-spectator

Add these apps to your project's `INSTALLED_APPS` in `settings.py`:

    INSTALLED_APPS = [
        ...
        "imagekit",
        "spectator.core",
        "spectator.events",
        "spectator.reading",
    ]

While `spectator.core` is required, you can omit either `spectator.events` or `spectator.reading` if you only want to use one of them.

`imagekit` is required to handle uploaded publication cover and event ticket images.

Run migrations:

    ./manage.py migrate

Add to your project's `urls.py`:

    urlpatterns = [
        # ...
        path("spectator/", include("spectator.core.urls")),
    ]

You can change the initial path (`"spectator/"`) to whatever suits you. e.g. use `""` to have Spectator's home page be the front page of your site.

Then, go to Django Admin to add your data.

### Settings

There are a few optional settings that can be used in your project's `settings.py` file. This is the full list, with their defaults. Descriptions of each are below:

    SPECTATOR_MAPS = {"enable": False}

    SPECTATOR_SLUG_ALPHABET = "abcdefghijkmnopqrstuvwxyz23456789"

    SPECTATOR_SLUG_SALT = "Django Spectator"

    SPECTATOR_DATE_FORMAT = "%-d %b %Y"

    SPECTATOR_THUMBNAIL_DETAIL_SIZE = (320, 320)

    SPECTATOR_THUMBNAIL_LIST_SIZE = (80, 160)

    SPECTATOR_EVENTS_DIR_BASE = "events"

    SPECTATOR_READING_DIR_BASE = "reading"

#### Map Settings

Venues can have their location displayed on a map and, in the Admin, have their location set by clicking on a map. You can use either Google or Mapbox maps, both of which require an API key.

To use Google, get a [Google Maps JavaScript API key](https://developers.google.com/maps/documentation/javascript/get-api-key) and create a billing account. Then set `SPECTATOR_MAPS` to this:

    SPECTATOR_MAPS = {
        "enable": True,
        "library": "google",
        "tile_style": "roadmap",
        "api_key": "YOUR-API-KEY"
    }

The `tile_style` value can be one of the basic [map styles](https://developers.google.com/maps/documentation/javascript/maptypes).

To use [Mapbox](https://www.mapbox.com) sign up and get an API key for [Mapbox GL JS](https://docs.mapbox.com/mapbox-gl-js/api/). Then set `SPECTATOR_MAPS` to this:

    SPECTATOR_MAPS = {
        "enable": True,
        "library": "mapbox",
        "tile_style": "mapbox://styles/mapbox/streets-v11",
        "api_key": "YOUR-API-KEY"
    }

The `tile_style` value can be one of the pre-defined map styles, [listed under options.styles](https://docs.mapbox.com/mapbox-gl-js/api/#map).

Setting `"enable"` to `False` in the above dicts will prevent maps appearing.

#### Slug settings

URLs for all objects include automatically-generated slugs, which are based on [Hashids](http://hashids.org) of the object's ID. You can change which characters are used in these slugs with this setting. e.g.:

    SPECTATOR_SLUG_ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"

You can also change the salt value used to encode the slugs. While the slugs don't provide complete security (i.e. it's not impossible to determine the ID on which a slug is based), using your own salt value can't hurt. e.g.:

    SPECTATOR_SLUG_SALT = "My special salt value is here"

#### Date settings

You can change the format used for the dates of Events and for the titles of some sidebar cards in templates, using [strftime](http://strftime.org) formatting:

    SPECTATOR_DATE_FORMAT = "%Y-%m-%d"

#### Thumbnail settings

There are two sizes of thumbnail images used throughout the site and admin pages: those used on "detail" pages (e.g. showing information about a single publication) and those used on "list" pages (e.g. listing many Publications). Each thumbnail's maximum size is defined as a tuple of width and height. The original image will be resized to fit within these limits, without being cropped. To make them both bigger than the default you might use:

    SPECTATOR_THUMBNAIL_DETAIL_SIZE = (400, 400)

    SPECTATOR_THUMBNAIL_LIST_SIZE = (150, 200)

When images are uploaded for Publications and Events (see below), they are stored within named directories within your Django project's `MEDIA_ROOT`. e.g. a Publication with a `slug` of `pzov6` would have its cover uploaded to a path like `/media/reading/publications/pzov6/my_cover.jpg`. The `reading` part is defined by the `SPECTATOR_READING_DIR_BASE` setting. You could change the defaults like this:

    SPECTATOR_EVENTS_DIR_BASE = "my-events"

    SPECTATOR_READING_DIR_BASE = "my-reading"

## 2. Overview

There are two main parts to Spectator: Reading and Events (movies, gigs, etc). They both share Creators.

### Creators

Creators are the authors of books, directors of movies, actors in plays, groups who perfom at gigs, etc.

A Creator has a name and a `kind`, of either "individual" (e.g. "Anthony Sher") or "group" (e.g. "Royal Shakespeare Company").

A Creator is associated with books, movies, events, etc. through roles, which include an optional `role_name` such as "Author", "Illustrator", "Director", "Playwright", "Company", etc. The roles can be given an order so that the creators of a thing will be listed in the appropriate order (such as the director before a movie's actors).

See [spectator/models/core.py](https://github.com/philgyford/django-spectator/blob/main/spectator/core/models.py) for these models.

### Reading

A Publication is a thing that's been read, and has a `kind` of either "book" or "periodical". A Publication can optionally be part of a PublicationSeries. e.g. a Publication "Vol. 3 No. 7 September 2005" could be part of the "The Believer" PublicationSeries.

A Publication can have zero or more Readings. A Reading can have a `start_date` and `end_date`. If the `start_date` is set but the `end_date` isn't, the Publication is currently being read. When a Reading has been completed, and an `end_date` added, it can be marked as `is_finished` or not. If not, it's because you gave up on the Publication before getting to the end.

Both `start_date` and `end_date` indicates a specific day by default. If you don't know the day, or the month, a granularity can be specified indicating whether the reading started/ended sometime during the month or year.

See [spectator/reading/models.py](https://github.com/philgyford/django-spectator/blob/main/spectator/reading/models.py) for these models.

### Events

An Event specifies a date on which you saw a thing at a particular Venue.

A Venue has a name and, optionally, location details.

Each Event can have zero or more Creators associated directly with it. e.g. the performers at a gig, the comedians at a comedy event. These can be in a specific order, and each with an optional role. e.g:

- The Wedding Present
  - Role: "Headliner"
  - Order: 1
- Buffalo Tom
  - Role: "Support"
  - Order: 2

Events can be different kinds, e.g. "gig", "cinema", "theatre". This is only used for categorising Events into different lists - it doesn't restrict the kinds of Works that can be associated with it. You could have a "cinema" Event that has a movie, play and dance piece associated with it.

Each Event can have zero or more Works associated with it: movies, plays, classical works or dance pieces. Each Work can have zero or more Creators, each with optional roles, associated directly with it. e.g. "Wolfgang Amadeus Mozart (Composer)", "William Shakespeare (Playwright)" or "Steven Spielberg (Director)":

Events can be given an optional title (e.g. "Glastonbury Festival"). If a title isn't specified one is created automatically when needed, based on any Works associated with it, or else any Creators associated with it.

See [spectator/events/models.py](https://github.com/philgyford/django-spectator/blob/main/spectator/events/models.py) for these models.

There is a Django management command (`generate_letterboxd_export`) that will generate a CSV file of movies seen (Works of kind "movie") suitable for importing into a Letterboxd.com account.

## 3. Template tags

Each app, core, events and reading, has some template tags.

### Core template tags

To use any of these in a template, first:

    {% load spectator_core %}

#### Most Read Creators

To get a QuerySet of Creators with the most Readings associated with them:

    {% most_read_creators num=10 %}

Each Creator will have a `num_readings` attribute. It will only include Creators whose role on a publication was "Author" or was left blank. i.e. Creators who were "Illustrator" or "Translator" will not be included.

To display this as a chart in a Bootstrap card:

    {% most_read_creators_card num=10 %}

This will exclude any Creators with only 1 Reading.

#### Most Visited Venues

To get a QuerySet of Venues with the most Events associated with them:

    {% most_visited_venues num=10 %}

Each Venue will have a `num_visits` attribute.

To display this as a chart in a Bootstrap card:

    {% most_visited_venues_card num=10 %}

This will exclude any Venues with only 1 Event.

### Reading template tags

To use any of these in a template, first:

    {% load spectator_reading %}

#### In-progress Publications

To get a QuerySet of Publications currently being read use `in_progress_publications`:

    {% in_progress_publications as publications %}

    {% for pub in publications %}
      <p>{{ pub }}<br>
        {% for role in pub.roles.all %}
          {{ role.creator.name }}
          {% if role.role_name %}({{ role.role_name }}){% endif %}
          <br>
        {% endfor %}
      </p>
    {% endfor %}

Or to display as a Bootstrap 4 card:

    {% in_progress_publications_card %}

#### Publications being read on a day

To get a QuerySet of Publications that were being read on a particular day use `day_publications`. If `my_date` is a python `date` object:

    {% day_publications date=my_date as publications %}

And display the results as in the above example.

Or to display as a Bootstrap 4 card:

    {% day_publications_card date=my_date %}

#### Years of reading

To get a QuerySet of the years in which Publications were being read:

    {% reading_years as years %}

    {% for year in years %}
      {{ year|date:"Y" }}<br>
    {% endfor %}

Or to display as a Bootstrap 4 card, with each year linking to the `ReadingYearArchiveView`:

    {% reading_years_card current_year=year %}

Here, `year` is a date object indicating a year which shouldn't be linked.

#### Annual reading counts

For more detail than the `reading_years` tag, use this to get the number of Books, and Periodicals (and the total) finished per year:

    {% annual_reading_counts as years %}

    {% for year_data in years %}
      {{ year_data.year }}:
      {{ year_data.book }} book(s),
      {{ year_data.periodical }} periodical(s),
      {{ year_data.total }} total.<br>
    {% endfor %}

Or to display as a Bootstrap 4 card, with each year linking to `ReadingYearArchiveView`:

    {% annual_reading_counts_card current_year=year kind='all' %}

Here, `year` is a date object indicating a year which shouldn't be linked.

And `kind` can be one of "all" (default), "book" or "periodical". If it's "all", then the result is rendered as a table, with a column each for year, book count, periodical count and total count. Otherwise it's a list of years with the book/periodical counts in parentheses.

### Events template tags

To use any of these in a template, first:

    {% load spectator_events %}

#### Recent Events

To get a QuerySet of Events that happened recently:

    {% recent_events num=3 as events %}

    {% for event in events %}
      <p>
        {{ event }}<br>
        {{ event.venue.name }}
      </p>
    {% endfor %}

If `num` is not specified, 10 are returned by default.

Or to display as a Boostrap card:

    {% recent_events_card num=3 %}

#### Events on a day

To get a QuerySet of Events that happened on a particular day, use `day_events`. If `my_date` is a python `date` object:

    {% day_events date=my_date as events %}

And display the results as in the above example.

Or to display as a Bootstrap 4 card:

    {% day_events_card date=my_date %}

#### Years of Events

To get a QuerySet of the years in which Events happened:

    {% events_years as years %}

    {% for year in years %}
      {{ year|date:"Y" }}<br>
    {% endfor %}

Or to display as a Bootstrap 4 card, with each year linking to the `EventYearArchiveView`:

    {% events_years_card current_year=year %}

Here, `year` is a date object indicating a year which shouldn't be linked.

#### Annual Event Counts

To include counts of Events per year:

    {% annual_event_counts as years %}

    {% for year_data in years %}
      {{ year_data.year|date:"Y" }}: {{ year_data.total }} event(s)<br>
    {% endfor %}

Restrict to one kind of Event:

    {% annual_event_counts kind='cinema' as years %}

Or to display as a Bootstrap 4 card, with each year linking to `EventYearArchiveView`:

    {% annual_event_counts_card current_year=year kind='all' %}

Here, `year` is a date object indicating a year which shouldn't be linked.

#### Most Seen Creators

To get a QuerySet of Creators involved with the most Events:

    {% most_seen_creators num=10 event_kind='gig' %}

Each Creator will have a `num_events` attribute.

`event_kind` can be omitted, or be `None` to include all kinds of Event.

To display this as a chart in a Bootstrap card:

    {% most_seen_creators_card num=10 event_kind='gig' %}

This will exclude any Creators with only 1 Event.

#### Creators With Most Works

To get a QuerySet of Creators that have the most Works (e.g, movies, plays, etc):

    {% most_seen_creators_by_works num=10 work_kind='movie', role_name='Director' %}

Each Creator will have a `num_works` attribute.

`work_kind` can be omitted and all kinds of Work will be counted.

`role_name` can be omitted and all roles will be counted.

The above example would, for each Creator, only count movie Works on which their role was 'Director'.

To display this as a chart in a Bootstrap card:

    {% most_seen_creators_by_works_card num=10 work_kind='movie', role_name='Director' %}

This will exclude any Creators with only 1 Work.

#### Most Seen Works

To get a QuerySet of Works involved with the most Events:

    {% most_seen_works num=10 kind='movie' %}

Each Work will have a `num_views` attribute.

`kind` can be omitted, or be `None` to include all kinds of Work.

To display this as a chart in a Bootstrap card:

    {% most_seen_works_card num=10 kind='movie' %}

This will exclude any Works with only 1 Event.

## 4. Local development

`devproject/` is a basic Django project to use the app locally.

I set things up locally, having installed virtualenv and pyenv, like this:

    $ cd devproject
    $ virtualenv --prompt spectator-devproject venv
    $ source venv/bin/activate
    (spectator-devproject)$ pyenv local 3.11
    (spectator-devproject)$ python -m pip install -r requirements.txt

Then run migrations and start the server:

    (spectator-devproject)$ ./manage.py migrate
    (spectator-devproject)$ ./manage.py runserver

### Environment variables

You can add a `.env` file in `devproject/` and its environment variables will be
read in `devproject/devproject/settings.py`. e.g.:

SPECTATOR_MAPBOX_API_KEY="your-api-key-here"
DJANGO_SECRET_KEY="your-secret-key"
DJANGO_LOG_LEVEL="INFO"

### pre-commit

pre-commit will run flake8, black, isort and prettier across all files on commit.
I think you just need to do this first:

$ pre-commit install

### Running tests locally

Run tests with tox, from the top-level directory (containing setup.py). Install it with:

    $ pip install tox

Run all tests in all environments like:

    $ tox

To run tests in only one environment, specify it. In this case, Python 3.11 and Django 5.0:

    $ tox -e py311-django50

To run a specific test, add its path after `--`, eg:

    $ tox -e py311-django50 -- tests.core.test\_models.CreatorTestCase.test\_ordering

Running the tests in all environments will generate coverage output. There will also be an `htmlcov/` directory containing an HTML report. You can also generate these reports without running all the other tests:

    $ tox -e coverage

### Making a new release

So I don't forget...

1. Put new changes on `main`.
2. Update the `__version__` in `spectator.__init__.py`.
3. Update `CHANGELOG.md`.
4. Do `python setup.py tag`.
5. Do `python setup.py publish`.

### Adding a new Event kind

If it's simple (like, Gigs, Comedy, etc.) and doesn't require any specific kind of Works, then:

- In `spectator.events.models.Event` add it in `Kind` and `Kind.slugs()`.
- Possibly add a special case for it in `Event.get_kind_name_plural()`.
- Add a simple factory for it in `spectator.events.factories`.
- In `tests.events.test_models.EventTestCase`:
  - Add it to:
    - `test_get_kind()`
    - `test_valid_kind_slugs()`
    - `test_kind_slug()`
    - `test_kind_name()`
    - `test_kind_name_plural()`
    - `test_get_kinds_data()`
  - Add a `test_absolute_url_*()` test for this kind.

### Adding a new Work kind

- In `spectator.events.models.Work` add it in `Kind` and `Kind.slugs()`.
- On the `Event` model add a new method similar to `get_classical_works()` for this new kind of `Work`.
- On the `spectator.core.models.Creator` model add a new method similar to `get_classical_works()` for this new kind of `Work`.
- Add a simple factory for it in `spectator.events.factories`.
- In `spectator/events/templates/spectator_events/event_detail.html` add an include to list the works.
- In `spectator/core/templates/spectator_core/creator_detail.html` add an include to list the works.
- In `tests/` add equivalents of:
  - `core.test_models.CreatorTestCase.test.get_classical_works()`
  - `events.test_models.EventTestCase.test_get_classical_works()`
  - `events.test_models.WorkTestCase.test_absolute_url_classicalwork()`
  - `events.test_models.WorkTestCase.test_get_list_url_classicalwork()`

## 5. Contact

- Phil Gyford
- <phil@gyford.com>
- @philgyford on Twitter

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/philgyford/django-spectator",
    "name": "django-spectator",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Phil Gyford",
    "author_email": "phil@gyford.com",
    "download_url": "https://files.pythonhosted.org/packages/14/ac/87097df8f219c58d1e2cc85f1f2bfc19f8945a3e7da936aca7baefe77610/django-spectator-14.2.0.tar.gz",
    "platform": null,
    "description": "# Django Spectator\n\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-spectator)\n[![Tests](https://github.com/philgyford/django-spectator/actions/workflows/tests.yml/badge.svg)](https://github.com/philgyford/django-spectator/actions/workflows/tests.yml)\n[![codecov](https://codecov.io/gh/philgyford/django-spectator/branch/main/graph/badge.svg?token=T7TIJ5XNWH)](https://codecov.io/gh/philgyford/django-spectator)\n[![Code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)\n\nTwo Django apps:\n\n- One to track book and periodical reading, including start and end dates, authors, and cover images.\n- One to track events attended (movie, plays, gigs, exhibitions, comedy, dance, classical), including date, venue (with maps), people/organisations involved, and images of tickets.\n\nFor Django 3.2, 4.1, 4.2 and 5.0, running on Python 3.8 upwards.\n\nIt has URLs, views and templates to create a site displaying all the data, and Django admin screens to add and edit them. The templates use [Bootstrap v4](https://getbootstrap.com).\n\nThere are also template tags for displaying data in your own templates (see below).\n\nThis is used on my personal website (with custom templates): [reading](https://www.gyford.com/phil/reading/) and [events](https://www.gyford.com/phil/events/).\n\n## Contents\n\n1. [Installation](#installation)\n   - [Settings](#settings)\n2. [Overview](#overview)\n   - [Creators](#creators)\n   - [Reading](#reading)\n   - [Events](#events)\n3. [Template tags](#template-tags)\n   - [Core template tags](#core-template-tags)\n   - [Reading template tags](#reading-template-tags)\n   - [Events template tags](#events-template-tags)\n4. [Local development](#local-development)\n   - [Environment variables](#environment-variables)\n   - [pre-commit](#pre-commit)\n   - [Running tests locally](#running-tests-locally)\n   - [Making a new release](#making-a-new-release)\n   - [Adding a new Event kind](#adding-a-new-event-kind)\n   - [Adding a new Work kind](#adding-a-new-work-kind)\n5. [Contact](#contact)\n\n## 1. Installation\n\nInstall [Pillow](https://python-pillow.org) or [PIL](http://www.pythonware.com/products/pil/) (used by [ImageKit](https://django-imagekit.readthedocs.io/en/latest/) to create thumbnail images).\n\nInstall with pip:\n\n    pip install django-spectator\n\nAdd these apps to your project's `INSTALLED_APPS` in `settings.py`:\n\n    INSTALLED_APPS = [\n        ...\n        \"imagekit\",\n        \"spectator.core\",\n        \"spectator.events\",\n        \"spectator.reading\",\n    ]\n\nWhile `spectator.core` is required, you can omit either `spectator.events` or `spectator.reading` if you only want to use one of them.\n\n`imagekit` is required to handle uploaded publication cover and event ticket images.\n\nRun migrations:\n\n    ./manage.py migrate\n\nAdd to your project's `urls.py`:\n\n    urlpatterns = [\n        # ...\n        path(\"spectator/\", include(\"spectator.core.urls\")),\n    ]\n\nYou can change the initial path (`\"spectator/\"`) to whatever suits you. e.g. use `\"\"` to have Spectator's home page be the front page of your site.\n\nThen, go to Django Admin to add your data.\n\n### Settings\n\nThere are a few optional settings that can be used in your project's `settings.py` file. This is the full list, with their defaults. Descriptions of each are below:\n\n    SPECTATOR_MAPS = {\"enable\": False}\n\n    SPECTATOR_SLUG_ALPHABET = \"abcdefghijkmnopqrstuvwxyz23456789\"\n\n    SPECTATOR_SLUG_SALT = \"Django Spectator\"\n\n    SPECTATOR_DATE_FORMAT = \"%-d %b %Y\"\n\n    SPECTATOR_THUMBNAIL_DETAIL_SIZE = (320, 320)\n\n    SPECTATOR_THUMBNAIL_LIST_SIZE = (80, 160)\n\n    SPECTATOR_EVENTS_DIR_BASE = \"events\"\n\n    SPECTATOR_READING_DIR_BASE = \"reading\"\n\n#### Map Settings\n\nVenues can have their location displayed on a map and, in the Admin, have their location set by clicking on a map. You can use either Google or Mapbox maps, both of which require an API key.\n\nTo use Google, get a [Google Maps JavaScript API key](https://developers.google.com/maps/documentation/javascript/get-api-key) and create a billing account. Then set `SPECTATOR_MAPS` to this:\n\n    SPECTATOR_MAPS = {\n        \"enable\": True,\n        \"library\": \"google\",\n        \"tile_style\": \"roadmap\",\n        \"api_key\": \"YOUR-API-KEY\"\n    }\n\nThe `tile_style` value can be one of the basic [map styles](https://developers.google.com/maps/documentation/javascript/maptypes).\n\nTo use [Mapbox](https://www.mapbox.com) sign up and get an API key for [Mapbox GL JS](https://docs.mapbox.com/mapbox-gl-js/api/). Then set `SPECTATOR_MAPS` to this:\n\n    SPECTATOR_MAPS = {\n        \"enable\": True,\n        \"library\": \"mapbox\",\n        \"tile_style\": \"mapbox://styles/mapbox/streets-v11\",\n        \"api_key\": \"YOUR-API-KEY\"\n    }\n\nThe `tile_style` value can be one of the pre-defined map styles, [listed under options.styles](https://docs.mapbox.com/mapbox-gl-js/api/#map).\n\nSetting `\"enable\"` to `False` in the above dicts will prevent maps appearing.\n\n#### Slug settings\n\nURLs for all objects include automatically-generated slugs, which are based on [Hashids](http://hashids.org) of the object's ID. You can change which characters are used in these slugs with this setting. e.g.:\n\n    SPECTATOR_SLUG_ALPHABET = \"ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890\"\n\nYou can also change the salt value used to encode the slugs. While the slugs don't provide complete security (i.e. it's not impossible to determine the ID on which a slug is based), using your own salt value can't hurt. e.g.:\n\n    SPECTATOR_SLUG_SALT = \"My special salt value is here\"\n\n#### Date settings\n\nYou can change the format used for the dates of Events and for the titles of some sidebar cards in templates, using [strftime](http://strftime.org) formatting:\n\n    SPECTATOR_DATE_FORMAT = \"%Y-%m-%d\"\n\n#### Thumbnail settings\n\nThere are two sizes of thumbnail images used throughout the site and admin pages: those used on \"detail\" pages (e.g. showing information about a single publication) and those used on \"list\" pages (e.g. listing many Publications). Each thumbnail's maximum size is defined as a tuple of width and height. The original image will be resized to fit within these limits, without being cropped. To make them both bigger than the default you might use:\n\n    SPECTATOR_THUMBNAIL_DETAIL_SIZE = (400, 400)\n\n    SPECTATOR_THUMBNAIL_LIST_SIZE = (150, 200)\n\nWhen images are uploaded for Publications and Events (see below), they are stored within named directories within your Django project's `MEDIA_ROOT`. e.g. a Publication with a `slug` of `pzov6` would have its cover uploaded to a path like `/media/reading/publications/pzov6/my_cover.jpg`. The `reading` part is defined by the `SPECTATOR_READING_DIR_BASE` setting. You could change the defaults like this:\n\n    SPECTATOR_EVENTS_DIR_BASE = \"my-events\"\n\n    SPECTATOR_READING_DIR_BASE = \"my-reading\"\n\n## 2. Overview\n\nThere are two main parts to Spectator: Reading and Events (movies, gigs, etc). They both share Creators.\n\n### Creators\n\nCreators are the authors of books, directors of movies, actors in plays, groups who perfom at gigs, etc.\n\nA Creator has a name and a `kind`, of either \"individual\" (e.g. \"Anthony Sher\") or \"group\" (e.g. \"Royal Shakespeare Company\").\n\nA Creator is associated with books, movies, events, etc. through roles, which include an optional `role_name` such as \"Author\", \"Illustrator\", \"Director\", \"Playwright\", \"Company\", etc. The roles can be given an order so that the creators of a thing will be listed in the appropriate order (such as the director before a movie's actors).\n\nSee [spectator/models/core.py](https://github.com/philgyford/django-spectator/blob/main/spectator/core/models.py) for these models.\n\n### Reading\n\nA Publication is a thing that's been read, and has a `kind` of either \"book\" or \"periodical\". A Publication can optionally be part of a PublicationSeries. e.g. a Publication \"Vol. 3 No. 7 September 2005\" could be part of the \"The Believer\" PublicationSeries.\n\nA Publication can have zero or more Readings. A Reading can have a `start_date` and `end_date`. If the `start_date` is set but the `end_date` isn't, the Publication is currently being read. When a Reading has been completed, and an `end_date` added, it can be marked as `is_finished` or not. If not, it's because you gave up on the Publication before getting to the end.\n\nBoth `start_date` and `end_date` indicates a specific day by default. If you don't know the day, or the month, a granularity can be specified indicating whether the reading started/ended sometime during the month or year.\n\nSee [spectator/reading/models.py](https://github.com/philgyford/django-spectator/blob/main/spectator/reading/models.py) for these models.\n\n### Events\n\nAn Event specifies a date on which you saw a thing at a particular Venue.\n\nA Venue has a name and, optionally, location details.\n\nEach Event can have zero or more Creators associated directly with it. e.g. the performers at a gig, the comedians at a comedy event. These can be in a specific order, and each with an optional role. e.g:\n\n- The Wedding Present\n  - Role: \"Headliner\"\n  - Order: 1\n- Buffalo Tom\n  - Role: \"Support\"\n  - Order: 2\n\nEvents can be different kinds, e.g. \"gig\", \"cinema\", \"theatre\". This is only used for categorising Events into different lists - it doesn't restrict the kinds of Works that can be associated with it. You could have a \"cinema\" Event that has a movie, play and dance piece associated with it.\n\nEach Event can have zero or more Works associated with it: movies, plays, classical works or dance pieces. Each Work can have zero or more Creators, each with optional roles, associated directly with it. e.g. \"Wolfgang Amadeus Mozart (Composer)\", \"William Shakespeare (Playwright)\" or \"Steven Spielberg (Director)\":\n\nEvents can be given an optional title (e.g. \"Glastonbury Festival\"). If a title isn't specified one is created automatically when needed, based on any Works associated with it, or else any Creators associated with it.\n\nSee [spectator/events/models.py](https://github.com/philgyford/django-spectator/blob/main/spectator/events/models.py) for these models.\n\nThere is a Django management command (`generate_letterboxd_export`) that will generate a CSV file of movies seen (Works of kind \"movie\") suitable for importing into a Letterboxd.com account.\n\n## 3. Template tags\n\nEach app, core, events and reading, has some template tags.\n\n### Core template tags\n\nTo use any of these in a template, first:\n\n    {% load spectator_core %}\n\n#### Most Read Creators\n\nTo get a QuerySet of Creators with the most Readings associated with them:\n\n    {% most_read_creators num=10 %}\n\nEach Creator will have a `num_readings` attribute. It will only include Creators whose role on a publication was \"Author\" or was left blank. i.e. Creators who were \"Illustrator\" or \"Translator\" will not be included.\n\nTo display this as a chart in a Bootstrap card:\n\n    {% most_read_creators_card num=10 %}\n\nThis will exclude any Creators with only 1 Reading.\n\n#### Most Visited Venues\n\nTo get a QuerySet of Venues with the most Events associated with them:\n\n    {% most_visited_venues num=10 %}\n\nEach Venue will have a `num_visits` attribute.\n\nTo display this as a chart in a Bootstrap card:\n\n    {% most_visited_venues_card num=10 %}\n\nThis will exclude any Venues with only 1 Event.\n\n### Reading template tags\n\nTo use any of these in a template, first:\n\n    {% load spectator_reading %}\n\n#### In-progress Publications\n\nTo get a QuerySet of Publications currently being read use `in_progress_publications`:\n\n    {% in_progress_publications as publications %}\n\n    {% for pub in publications %}\n      <p>{{ pub }}<br>\n        {% for role in pub.roles.all %}\n          {{ role.creator.name }}\n          {% if role.role_name %}({{ role.role_name }}){% endif %}\n          <br>\n        {% endfor %}\n      </p>\n    {% endfor %}\n\nOr to display as a Bootstrap 4 card:\n\n    {% in_progress_publications_card %}\n\n#### Publications being read on a day\n\nTo get a QuerySet of Publications that were being read on a particular day use `day_publications`. If `my_date` is a python `date` object:\n\n    {% day_publications date=my_date as publications %}\n\nAnd display the results as in the above example.\n\nOr to display as a Bootstrap 4 card:\n\n    {% day_publications_card date=my_date %}\n\n#### Years of reading\n\nTo get a QuerySet of the years in which Publications were being read:\n\n    {% reading_years as years %}\n\n    {% for year in years %}\n      {{ year|date:\"Y\" }}<br>\n    {% endfor %}\n\nOr to display as a Bootstrap 4 card, with each year linking to the `ReadingYearArchiveView`:\n\n    {% reading_years_card current_year=year %}\n\nHere, `year` is a date object indicating a year which shouldn't be linked.\n\n#### Annual reading counts\n\nFor more detail than the `reading_years` tag, use this to get the number of Books, and Periodicals (and the total) finished per year:\n\n    {% annual_reading_counts as years %}\n\n    {% for year_data in years %}\n      {{ year_data.year }}:\n      {{ year_data.book }} book(s),\n      {{ year_data.periodical }} periodical(s),\n      {{ year_data.total }} total.<br>\n    {% endfor %}\n\nOr to display as a Bootstrap 4 card, with each year linking to `ReadingYearArchiveView`:\n\n    {% annual_reading_counts_card current_year=year kind='all' %}\n\nHere, `year` is a date object indicating a year which shouldn't be linked.\n\nAnd `kind` can be one of \"all\" (default), \"book\" or \"periodical\". If it's \"all\", then the result is rendered as a table, with a column each for year, book count, periodical count and total count. Otherwise it's a list of years with the book/periodical counts in parentheses.\n\n### Events template tags\n\nTo use any of these in a template, first:\n\n    {% load spectator_events %}\n\n#### Recent Events\n\nTo get a QuerySet of Events that happened recently:\n\n    {% recent_events num=3 as events %}\n\n    {% for event in events %}\n      <p>\n        {{ event }}<br>\n        {{ event.venue.name }}\n      </p>\n    {% endfor %}\n\nIf `num` is not specified, 10 are returned by default.\n\nOr to display as a Boostrap card:\n\n    {% recent_events_card num=3 %}\n\n#### Events on a day\n\nTo get a QuerySet of Events that happened on a particular day, use `day_events`. If `my_date` is a python `date` object:\n\n    {% day_events date=my_date as events %}\n\nAnd display the results as in the above example.\n\nOr to display as a Bootstrap 4 card:\n\n    {% day_events_card date=my_date %}\n\n#### Years of Events\n\nTo get a QuerySet of the years in which Events happened:\n\n    {% events_years as years %}\n\n    {% for year in years %}\n      {{ year|date:\"Y\" }}<br>\n    {% endfor %}\n\nOr to display as a Bootstrap 4 card, with each year linking to the `EventYearArchiveView`:\n\n    {% events_years_card current_year=year %}\n\nHere, `year` is a date object indicating a year which shouldn't be linked.\n\n#### Annual Event Counts\n\nTo include counts of Events per year:\n\n    {% annual_event_counts as years %}\n\n    {% for year_data in years %}\n      {{ year_data.year|date:\"Y\" }}: {{ year_data.total }} event(s)<br>\n    {% endfor %}\n\nRestrict to one kind of Event:\n\n    {% annual_event_counts kind='cinema' as years %}\n\nOr to display as a Bootstrap 4 card, with each year linking to `EventYearArchiveView`:\n\n    {% annual_event_counts_card current_year=year kind='all' %}\n\nHere, `year` is a date object indicating a year which shouldn't be linked.\n\n#### Most Seen Creators\n\nTo get a QuerySet of Creators involved with the most Events:\n\n    {% most_seen_creators num=10 event_kind='gig' %}\n\nEach Creator will have a `num_events` attribute.\n\n`event_kind` can be omitted, or be `None` to include all kinds of Event.\n\nTo display this as a chart in a Bootstrap card:\n\n    {% most_seen_creators_card num=10 event_kind='gig' %}\n\nThis will exclude any Creators with only 1 Event.\n\n#### Creators With Most Works\n\nTo get a QuerySet of Creators that have the most Works (e.g, movies, plays, etc):\n\n    {% most_seen_creators_by_works num=10 work_kind='movie', role_name='Director' %}\n\nEach Creator will have a `num_works` attribute.\n\n`work_kind` can be omitted and all kinds of Work will be counted.\n\n`role_name` can be omitted and all roles will be counted.\n\nThe above example would, for each Creator, only count movie Works on which their role was 'Director'.\n\nTo display this as a chart in a Bootstrap card:\n\n    {% most_seen_creators_by_works_card num=10 work_kind='movie', role_name='Director' %}\n\nThis will exclude any Creators with only 1 Work.\n\n#### Most Seen Works\n\nTo get a QuerySet of Works involved with the most Events:\n\n    {% most_seen_works num=10 kind='movie' %}\n\nEach Work will have a `num_views` attribute.\n\n`kind` can be omitted, or be `None` to include all kinds of Work.\n\nTo display this as a chart in a Bootstrap card:\n\n    {% most_seen_works_card num=10 kind='movie' %}\n\nThis will exclude any Works with only 1 Event.\n\n## 4. Local development\n\n`devproject/` is a basic Django project to use the app locally.\n\nI set things up locally, having installed virtualenv and pyenv, like this:\n\n    $ cd devproject\n    $ virtualenv --prompt spectator-devproject venv\n    $ source venv/bin/activate\n    (spectator-devproject)$ pyenv local 3.11\n    (spectator-devproject)$ python -m pip install -r requirements.txt\n\nThen run migrations and start the server:\n\n    (spectator-devproject)$ ./manage.py migrate\n    (spectator-devproject)$ ./manage.py runserver\n\n### Environment variables\n\nYou can add a `.env` file in `devproject/` and its environment variables will be\nread in `devproject/devproject/settings.py`. e.g.:\n\nSPECTATOR_MAPBOX_API_KEY=\"your-api-key-here\"\nDJANGO_SECRET_KEY=\"your-secret-key\"\nDJANGO_LOG_LEVEL=\"INFO\"\n\n### pre-commit\n\npre-commit will run flake8, black, isort and prettier across all files on commit.\nI think you just need to do this first:\n\n$ pre-commit install\n\n### Running tests locally\n\nRun tests with tox, from the top-level directory (containing setup.py). Install it with:\n\n    $ pip install tox\n\nRun all tests in all environments like:\n\n    $ tox\n\nTo run tests in only one environment, specify it. In this case, Python 3.11 and Django 5.0:\n\n    $ tox -e py311-django50\n\nTo run a specific test, add its path after `--`, eg:\n\n    $ tox -e py311-django50 -- tests.core.test\\_models.CreatorTestCase.test\\_ordering\n\nRunning the tests in all environments will generate coverage output. There will also be an `htmlcov/` directory containing an HTML report. You can also generate these reports without running all the other tests:\n\n    $ tox -e coverage\n\n### Making a new release\n\nSo I don't forget...\n\n1. Put new changes on `main`.\n2. Update the `__version__` in `spectator.__init__.py`.\n3. Update `CHANGELOG.md`.\n4. Do `python setup.py tag`.\n5. Do `python setup.py publish`.\n\n### Adding a new Event kind\n\nIf it's simple (like, Gigs, Comedy, etc.) and doesn't require any specific kind of Works, then:\n\n- In `spectator.events.models.Event` add it in `Kind` and `Kind.slugs()`.\n- Possibly add a special case for it in `Event.get_kind_name_plural()`.\n- Add a simple factory for it in `spectator.events.factories`.\n- In `tests.events.test_models.EventTestCase`:\n  - Add it to:\n    - `test_get_kind()`\n    - `test_valid_kind_slugs()`\n    - `test_kind_slug()`\n    - `test_kind_name()`\n    - `test_kind_name_plural()`\n    - `test_get_kinds_data()`\n  - Add a `test_absolute_url_*()` test for this kind.\n\n### Adding a new Work kind\n\n- In `spectator.events.models.Work` add it in `Kind` and `Kind.slugs()`.\n- On the `Event` model add a new method similar to `get_classical_works()` for this new kind of `Work`.\n- On the `spectator.core.models.Creator` model add a new method similar to `get_classical_works()` for this new kind of `Work`.\n- Add a simple factory for it in `spectator.events.factories`.\n- In `spectator/events/templates/spectator_events/event_detail.html` add an include to list the works.\n- In `spectator/core/templates/spectator_core/creator_detail.html` add an include to list the works.\n- In `tests/` add equivalents of:\n  - `core.test_models.CreatorTestCase.test.get_classical_works()`\n  - `events.test_models.EventTestCase.test_get_classical_works()`\n  - `events.test_models.WorkTestCase.test_absolute_url_classicalwork()`\n  - `events.test_models.WorkTestCase.test_get_list_url_classicalwork()`\n\n## 5. Contact\n\n- Phil Gyford\n- <phil@gyford.com>\n- @philgyford on Twitter\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Django app to track book reading, movie viewing, gig going, play watching, etc.",
    "version": "14.2.0",
    "project_urls": {
        "Blog posts": "https://www.gyford.com/phil/writing/tags/django-spectator/",
        "Bug Reports": "https://github.com/philgyford/django-spectator/issues",
        "Documentation": "https://github.com/philgyford/django-spectator/blob/master/README.md",
        "Homepage": "https://github.com/philgyford/django-spectator",
        "Source": "https://github.com/philgyford/django-spectator"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14ac87097df8f219c58d1e2cc85f1f2bfc19f8945a3e7da936aca7baefe77610",
                "md5": "20722f900b3404df97fa1178e31a69d6",
                "sha256": "beb512edf6686a10052a490d7024090958351bdd159941d935bec7051914b7e2"
            },
            "downloads": -1,
            "filename": "django-spectator-14.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "20722f900b3404df97fa1178e31a69d6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 229408,
            "upload_time": "2024-08-13T16:41:19",
            "upload_time_iso_8601": "2024-08-13T16:41:19.743179Z",
            "url": "https://files.pythonhosted.org/packages/14/ac/87097df8f219c58d1e2cc85f1f2bfc19f8945a3e7da936aca7baefe77610/django-spectator-14.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-13 16:41:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "philgyford",
    "github_project": "django-spectator",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "django-spectator"
}
        
Elapsed time: 0.34214s