This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>URL</key> | |
<dict> | |
<key>LMWT</key> | |
<dict> | |
<key>URLPatterns</key> | |
<array> |
This file contains hidden or 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
#!/usr/bin/env python | |
""" | |
Example info for @hatton33 question 'Developing Channel using JSON' | |
https://forums.plex.tv/discussion/211265/developing-channel-using-json | |
""" | |
import requests | |
import json |
This file contains hidden or 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Kissanime.to, Kisscartoon.me, and Kissasian.com have some videos hosted on OpenLoad. | |
I took the original openload.py from here: | |
https://github.com/Zanzibar82/plugin.video.streamondemand/blob/fca8e2a7cf0548233cb484e53c1694f17ac4ede3/servers/openload.py | |
and modified it for use with Plex Media Server (PMS). | |
My modified openload.py for PMS can be found here: | |
https://github.com/Twoure/KissNetwork.bundle/blob/v1.1.6/Contents/Services/Shared%20Code/openload.pys |
This file contains hidden or 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
#!/usr/bin/env python | |
""" | |
Kissanime.to, Kisscartoon.me, and Kissasian.com have some videos hosted on OneDrive. | |
The URL's below are examples taken from there pages. | |
You will have to first parse the kiss site video page to get the embeded OneDrive URL. | |
""" | |
from lxml import html | |
import re | |
import json |