MIT license
This commit is contained in:
		
							parent
							
								
									998a6f8d38
								
							
						
					
					
						commit
						2aa2eab12a
					
				
							
								
								
									
										30
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										30
									
								
								README.md
									
									
									
									
									
								
							@ -1,17 +1,29 @@
 | 
				
			|||||||
Python-Libtorrent for Kodi
 | 
					python-libtorrent for Kodi
 | 
				
			||||||
==================
 | 
					==================
 | 
				
			||||||
script.module.libtorrent is a Kodi module that makes easy import of python-libtorrent for you. Example of usage is Torrenter v2 at https://github.com/DiMartinoXBMC/plugin.video.torrenter
 | 
					script.module.libtorrent is a Kodi module that makes easy import of python-libtorrent for you.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- Forum: https://forums.tvaddons.ag/addon-releases/29224-torrenter-v2.html
 | 
					- Forum: https://forums.tvaddons.ag/addon-releases/29224-torrenter-v2.html
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Used in projects
 | 
				
			||||||
 | 
					----------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- [Torrenter v2](https://github.com/DiMartinoXBMC/plugin.video.torrenter)
 | 
				
			||||||
 | 
					- [YATP](https://github.com/romanvm/kodi.yatp)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Usage
 | 
					Usage
 | 
				
			||||||
---------------
 | 
					-----
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Add module in requires of your addon.xml::
 | 
					### Add module in requires of your addon.xml: ###
 | 
				
			||||||
 | 
					```python
 | 
				
			||||||
 | 
					<import addon="script.module.libtorrent"/>
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <import addon="script.module.libtorrent"/>
 | 
					### Use it in any python file: ###
 | 
				
			||||||
 | 
					```python
 | 
				
			||||||
 | 
					from python_libtorrent import get_libtorrent
 | 
				
			||||||
 | 
					libtorrent=get_libtorrent()
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Use it in any python file::
 | 
					License
 | 
				
			||||||
 | 
					-------
 | 
				
			||||||
    from python_libtorrent import get_libtorrent
 | 
					[GPL v.3](http://www.gnu.org/licenses/gpl-3.0.en.html).
 | 
				
			||||||
    libtorrent=get_libtorrent()
 | 
					 | 
				
			||||||
							
								
								
									
										23
									
								
								__init__.py
									
									
									
									
									
								
							
							
						
						
									
										23
									
								
								__init__.py
									
									
									
									
									
								
							@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
@ -1,5 +1,5 @@
 | 
				
			|||||||
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
 | 
					<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
 | 
				
			||||||
<addon id='script.module.libtorrent' version='1.0.8' name='LibTorrent' provider-name='DiMartino, srg70, RussakHH, aisman'>
 | 
					<addon id='script.module.libtorrent' version='1.0.8' name='python-libtorrent' provider-name='DiMartino, srg70, RussakHH, aisman'>
 | 
				
			||||||
  <requires>
 | 
					  <requires>
 | 
				
			||||||
    <import addon='xbmc.python' version='2.1.0'/>
 | 
					    <import addon='xbmc.python' version='2.1.0'/>
 | 
				
			||||||
  </requires>
 | 
					  </requires>
 | 
				
			||||||
@ -8,7 +8,10 @@
 | 
				
			|||||||
  </extension>
 | 
					  </extension>
 | 
				
			||||||
  <extension point='xbmc.addon.metadata'>
 | 
					  <extension point='xbmc.addon.metadata'>
 | 
				
			||||||
    <platform>all</platform>
 | 
					    <platform>all</platform>
 | 
				
			||||||
    <summary>LibTorrent</summary>
 | 
					    <summary lang='en'>script.module.libtorrent is a Kodi module that makes easy import of python-libtorrent for you.</summary>
 | 
				
			||||||
 | 
					    <summary lang='ru'>script.module.libtorrent - модуль Kodi, который упрощает импорт библиотеки python-libtorrent.</summary>
 | 
				
			||||||
 | 
					    <license>MIT License</license>
 | 
				
			||||||
 | 
					    <source>https://github.com/DiMartinoXBMC/script.module.libtorrent</source>
 | 
				
			||||||
  </extension>
 | 
					  </extension>
 | 
				
			||||||
  <extension point='xbmc.python.module'/>
 | 
					  <extension point='xbmc.python.module'/>
 | 
				
			||||||
</addon>
 | 
					</addon>
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										25
									
								
								default.py
									
									
									
									
									
								
							
							
						
						
									
										25
									
								
								default.py
									
									
									
									
									
								
							@ -1,4 +1,27 @@
 | 
				
			|||||||
# -*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
 | 
					'''
 | 
				
			||||||
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
 | 
					'''
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from python_libtorrent import get_libtorrent, get_platform, log
 | 
					from python_libtorrent import get_libtorrent, get_platform, log
 | 
				
			||||||
import xbmcgui
 | 
					import xbmcgui
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										23
									
								
								license.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								license.txt
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,23 @@
 | 
				
			|||||||
 | 
					The MIT License (MIT)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
 | 
					Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					"Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
@ -1,7 +1,26 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import sys
 | 
					import sys
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,26 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from functions import *
 | 
					from functions import *
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
@ -1,4 +1,28 @@
 | 
				
			|||||||
#import sys
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
 | 
					'''
 | 
				
			||||||
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
 | 
					'''
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import os
 | 
					import os
 | 
				
			||||||
import xbmc, xbmcgui, xbmcvfs, xbmcaddon
 | 
					import xbmc, xbmcgui, xbmcvfs, xbmcaddon
 | 
				
			||||||
from net import HTTP
 | 
					from net import HTTP
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,4 +1,27 @@
 | 
				
			|||||||
# -*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
 | 
					'''
 | 
				
			||||||
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
 | 
					'''
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import os
 | 
					import os
 | 
				
			||||||
import time
 | 
					import time
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,26 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import os
 | 
					import os
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 srg70, RussakHH, DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,24 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
    Torrenter v2 plugin for XBMC/Kodi
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015 DiMartino
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
 | 
					    "Software"), to deal in the Software without restriction, including
 | 
				
			||||||
 | 
					    without limitation the rights to use, copy, modify, merge, publish,
 | 
				
			||||||
 | 
					    distribute, sublicense, and/or sell copies of the Software, and to
 | 
				
			||||||
 | 
					    permit persons to whom the Software is furnished to do so, subject to
 | 
				
			||||||
 | 
					    the following conditions:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    The above copyright notice and this permission notice shall be
 | 
				
			||||||
 | 
					    included in all copies or substantial portions of the Software.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
				
			||||||
 | 
					    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
				
			||||||
 | 
					    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
				
			||||||
 | 
					    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
				
			||||||
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					'''
 | 
				
			||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user