Matrix bot that generates YouTube playlists from links in a channel.
Go to file
abdulkadir 122622b442 Fix wrong duplicate function 2024-01-25 18:32:54 +01:00
.gitignore Update README.md and .gitignore 2024-01-21 10:47:20 +01:00
Dockerfile Fix Dockerfile. 2024-01-23 17:59:49 +01:00
LICENSE Add LICENSE 2024-01-19 14:14:46 +01:00
README.md Update README.md 2024-01-22 00:15:13 +01:00
compose.yml Don't restart in the compose.yml. 2024-01-23 18:15:59 +01:00
example.env Dockerize. 2024-01-21 10:38:05 +01:00
main.py Fix wrong duplicate function 2024-01-25 18:32:54 +01:00
parker.gif Make introduction visual. 2024-01-23 17:58:22 +01:00
requirements.txt Stabilize matrix-nio version, this is pre-release software. 2024-01-23 22:00:10 +01:00

README.md

ParkerBot

ParkerBot is a Matrix bot that monitors a channel for YouTube links and generates weekly playlists from them.

Running locally

  1. Clone the repo
  2. Install the dependencies, preferably in a venv:
    python3 -m venv venv
    source ./venv/bin/activate
    pip3 install -r requirements.txt
    
  3. Copy example.env to .env, customize it.
  4. Source .env:
    source .env
    
  5. Execute the app:
    ./main.py
    

Running as a container

  1. Customize the compose.yml if necessary, you might want to change the data volume's path or make it a named volume.
  2. Copy example.env to .env and customize it.
  3. Run locally as described above at least once on a machine with a web browser. This is needed to get a valid token.pickle for YouTube. Copy it to the data directory where you want to run the container.
  4. Run the container, this is an example with podman-compose:
    podman-compose up -d