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
import time | |
from functools import cached_property | |
import xbmc | |
import xbmcgui | |
from resources.lib.common import source_utils | |
from resources.lib.common import tools | |
from resources.lib.common.thread_pool import ThreadPool | |
from resources.lib.database.cache import use_cache |
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
import requests | |
import hashlib | |
import time | |
import webbrowser | |
# Replace with your Last.fm API credentials | |
API_KEY = 'API_KEY' | |
API_SECRET = 'API_SECRET' | |
PASSWORD = 'PASSWORD' | |
USERNAME = 'USERNAME' |
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
import requests | |
import hashlib | |
import time | |
# Replace with your Last.fm API credentials | |
API_KEY = 'API_KEY' | |
API_SECRET = 'API_SECRET' | |
USERNAME = 'username' | |
PASSWORD = 'password' |
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
import struct, os | |
__64k = 65536 | |
__longlong_format_char = 'q' | |
__byte_size = struct.calcsize(__longlong_format_char) | |
def temp_file(): | |
import tempfile | |
file = tempfile.NamedTemporaryFile() | |
filename = file.name | |
return filename |
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
import struct, os | |
import urllib | |
__64k = 65536 | |
__longlong_format_char = 'q' | |
__byte_size = struct.calcsize(__longlong_format_char) | |
def temp_file(): | |
import tempfile | |
file = tempfile.NamedTemporaryFile() | |
filename = file.name |
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
import struct, os | |
__64k = 65536 | |
__longlong_format_char = 'q' | |
__byte_size = struct.calcsize(__longlong_format_char) | |
meta = {'filesize': '', 'filehash': ''} | |
def temp_file(): | |
import tempfile |
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
/home/osmc/.kodi/addons/plugin.video.seren/resources/lib/modules/player.py | |
def _keep_alive(self): | |
################################################ | |
#if self.min_time_before_scrape > time_left and not self.pre_scrape_initiated: | |
# self._handle_pre_scrape() | |
if self.current_time > 30 and not self.pre_scrape_initiated: | |
xbmc.log(str('SEREN_PRESCRAPE')+'===>PHIL', level=xbmc.LOGNOTICE) | |
self._handle_pre_scrape() | |
/home/osmc/.kodi/addons/plugin.video.seren/resources/lib/modules/globals.py |
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
{ | |
"yts": { | |
"name": "YTS", | |
"enabled": true, | |
"languages": [ | |
"en" | |
], | |
"base_url": "https://yts.am", | |
"fallback_urls": [ | |
"https://yts.pm", |
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
#!/usr/bin/python | |
import requests | |
import json | |
import time | |
import sys | |
import PTN | |
import re | |
regex = re.compile('[^a-zA-Z]') |
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
#!/usr/bin/env python | |
import requests | |
import json | |
import time | |
import sys | |
import base64 | |
kodi_credentials = b'USER:PASSWORD' | |
kodi_ip = '192.168.0.XX' | |
kodi_port = '8081' |
NewerOlder