Last active
August 7, 2016 22:04
-
-
Save jfarcher/cb20c76d097fa830201a77958b05a612 to your computer and use it in GitHub Desktop.
Update XBMC/KODI Video Library
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
| settings = { | |
| 'hostname': '192.168.0.250', | |
| 'port': '80', | |
| 'username': 'xbmc', | |
| 'password': 'xbmc' | |
| } | |
| http_address = 'http://%s:%s/jsonrpc' % (settings['hostname'], settings['port']) | |
| username = settings['username'] | |
| password = settings['password'] | |
| try: | |
| import json | |
| except ImportError: | |
| import simplejson as json | |
| import urllib2, base64 | |
| class XBMCJSON: | |
| def __init__(self, server): | |
| self.server = server | |
| self.version = '2.0' | |
| def __call__(self, **kwargs): | |
| method = '.'.join(map(str, self.n)) | |
| self.n = [] | |
| return XBMCJSON.__dict__['Request'](self, method, kwargs) | |
| def __getattr__(self,name): | |
| if not self.__dict__.has_key('n'): | |
| self.n=[] | |
| self.n.append(name) | |
| return self | |
| def Request(self, method, kwargs): | |
| data = [{}] | |
| data[0]['method'] = method | |
| data[0]['params'] = kwargs | |
| data[0]['jsonrpc'] = self.version | |
| data[0]['id'] = 1 | |
| data = json.JSONEncoder().encode(data) | |
| content_length = len(data) | |
| content = { | |
| 'Content-Type': 'application/json', | |
| 'Content-Length': content_length, | |
| } | |
| request = urllib2.Request(self.server, data, content) | |
| base64string = base64.encodestring('%s:%s' % (username, password)).replace('\n', '') | |
| request.add_header("Authorization", "Basic %s" % base64string) | |
| f = urllib2.urlopen(request) | |
| response = f.read() | |
| f.close() | |
| response = json.JSONDecoder().decode(response) | |
| try: | |
| return response[0]['result'] | |
| except: | |
| return response[0]['error'] | |
| xbmc = XBMCJSON(http_address) | |
| xbmc.GUI.ShowNotification(title="test",message="Hello World",image="mesage.png") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment