This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script will install the latest flixxo app from their website. It will then create | |
# a working flixxo.desktop file after installation is complete. | |
# Warning: This script does not verify/validate what it downloads from Flixxo's site. USE AT YOUR OWN RISK | |
# Check back at https://gist.github.com/willstare/346f3442f86b62a01922110efa2a8375 for updates. | |
echo "This script must be run with sudo/root!" | |
# Delete /tmp/flixxo if it exists | |
rm -R /tmp/flixxo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Create a Plex Playlist with the podcasts that were added today, sorted by oldest first. | |
If today's playlist exists, we will delete it and create it again to add potential new podcasts. | |
""" | |
import operator | |
import time | |
from plexapi.server import PlexServer | |
import requests | |
import datetime |