Remove another obsolete file
This commit is contained in:
parent
2c83ff2c8b
commit
c751efeb0c
1 changed files with 0 additions and 59 deletions
|
@ -1,59 +0,0 @@
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
#################################################################################################
|
|
||||||
|
|
||||||
import logging
|
|
||||||
import threading
|
|
||||||
import requests
|
|
||||||
|
|
||||||
# Disable annoying requests warnings
|
|
||||||
import requests.packages.urllib3
|
|
||||||
requests.packages.urllib3.disable_warnings()
|
|
||||||
#################################################################################################
|
|
||||||
|
|
||||||
log = logging.getLogger("PLEX."+__name__)
|
|
||||||
|
|
||||||
#################################################################################################
|
|
||||||
|
|
||||||
|
|
||||||
class ImageCacheThread(threading.Thread):
|
|
||||||
|
|
||||||
url_to_process = None
|
|
||||||
is_finished = False
|
|
||||||
|
|
||||||
xbmc_host = ""
|
|
||||||
xbmc_port = ""
|
|
||||||
xbmc_username = ""
|
|
||||||
xbmc_password = ""
|
|
||||||
|
|
||||||
|
|
||||||
def __init__(self):
|
|
||||||
|
|
||||||
threading.Thread.__init__(self)
|
|
||||||
|
|
||||||
|
|
||||||
def set_url(self, url):
|
|
||||||
|
|
||||||
self.url_to_process = url
|
|
||||||
|
|
||||||
def set_host(self, host, port):
|
|
||||||
|
|
||||||
self.xbmc_host = host
|
|
||||||
self.xbmc_port = port
|
|
||||||
|
|
||||||
def set_auth(self, username, password):
|
|
||||||
|
|
||||||
self.xbmc_username = username
|
|
||||||
self.xbmc_password = password
|
|
||||||
|
|
||||||
def run(self):
|
|
||||||
try:
|
|
||||||
response = requests.head(
|
|
||||||
url=("http://%s:%s/image/image://%s"
|
|
||||||
% (self.xbmc_host, self.xbmc_port, self.url_to_process)),
|
|
||||||
auth=(self.xbmc_username, self.xbmc_password),
|
|
||||||
timeout=(5, 5))
|
|
||||||
# We don't need the result
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
self.is_finished = True
|
|
Loading…
Add table
Reference in a new issue