Skip to content

Instantly share code, notes, and snippets.

@spuniun
spuniun / A_Facebook_Group_Notification_Script_for_Taultulli.md
Last active July 10, 2020 16:25
Tautulli notification script for Facebook Groups

Since GraphAPI was revoked, no apps are getting approved and posting via email was shutdown, I pulled together a Tautulli notification python script for Facebook Groups using HTTP POST.

@spuniun
spuniun / shared_plex_playlists.py
Last active May 5, 2018 23:59
Sync user playlists of recommended items to all users on Plex Media Server.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Description: Sync user playlists of recommended items to all users.
# Author: /u/spuniun
# Requires: plexapi, requests, xmltodict
# Usage: Any user playlist named "<plex username> Recommends" will be synced to all
# other users on that Plex server.
# Thanks: Based entirely off of SwiftPanda16's sync_playlists_to_users.py
# https://gist.github.com/JonnyWong16/2607abf0e3431b6f133861bbe1bb694e
@spuniun
spuniun / sync_playlists_to_users.py
Created April 16, 2018 20:10 — forked from JonnyWong16/sync_playlists_to_users.py
Sync Plex playlists to shared users.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Description: Sync Plex playlists to shared users.
# Author: /u/SwiftPanda16
# Requires: plexapi, requests, xmltodict
import requests
import xmltodict