2015-07-11 12:00:55 +03:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2015-07-11 12:45:24 +03:00
|
|
|
from python_libtorrent import get_libtorrent, get_platform, log
|
|
|
|
import xbmcgui
|
2015-07-11 12:00:55 +03:00
|
|
|
|
|
|
|
sucsess=False
|
2015-07-11 12:45:24 +03:00
|
|
|
version=''
|
2015-07-11 12:00:55 +03:00
|
|
|
p=get_platform()
|
2015-07-11 12:45:24 +03:00
|
|
|
dialog = xbmcgui.Dialog()
|
2015-07-11 12:00:55 +03:00
|
|
|
|
|
|
|
try:
|
2015-07-11 12:45:24 +03:00
|
|
|
libtorrent=get_libtorrent()
|
2015-07-11 12:00:55 +03:00
|
|
|
|
2015-07-11 12:45:24 +03:00
|
|
|
log('Imported libtorrent v' + libtorrent.version + ' from get_libtorrent()')
|
|
|
|
version=str(libtorrent.version)
|
2015-07-11 12:00:55 +03:00
|
|
|
sucsess=True
|
|
|
|
except Exception, e:
|
2015-07-11 12:45:24 +03:00
|
|
|
log('Error importing from get_libtorrent(). Exception: ' + str(e))
|
2015-07-11 12:00:55 +03:00
|
|
|
|
|
|
|
|
2015-07-11 12:45:24 +03:00
|
|
|
line2='Python-libtorrent %s IMPORTED successfully' % version if sucsess else 'Failed to import python-libtorrent!'
|
2015-07-11 12:00:55 +03:00
|
|
|
dialog.ok('Libtorrent','OS:'+p['os']+' arch:'+p['arch'], line2)
|