Skip to content

Commit

Permalink
add new aiv plugin w/o db, common pydes module
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandmann79 committed Oct 24, 2015
1 parent 11cb40e commit edb4b24
Show file tree
Hide file tree
Showing 20 changed files with 1,488 additions and 3 deletions.
43 changes: 43 additions & 0 deletions addon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<import addon="script.module.demjson" version="2.2.3"/>
<import addon="script.module.mechanize" version="0.2.6"/>
<import addon="script.module.amazon.database" version="0.0.9"/>
<import addon="script.module.pydes" version="2.0.1"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="default.py">
Expand All @@ -44,6 +45,31 @@
<disclaimer lang="de">Möglicherweise sind einge Teile dieses Addons in Ihrem Land illegal, Sie sollten dies unbedingt vor der Installation überprüfen. Diese Plugin verwendet pyDes von Todd Whiteman</disclaimer>
</extension>
</addon>
<addon id="plugin.video.amazon-test"
name="Amazon-Test"
version="0.0.4"
provider-name="Sandmann79">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
<import addon="script.module.demjson" version="2.2.3"/>
<import addon="script.module.mechanize" version="0.2.6"/>
<import addon="script.module.pydes" version="2.0.1"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Amazon Prime Video Streaming</summary>
<summary lang="de">Amazon Prime Instant Video</summary>
<description lang="en">Movies and Television Shows for Prime Members</description>
<description lang="de">Filme und Serien für Amazon Prime Mitglieder</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<disclaimer lang="de">Möglicherweise sind einge Teile dieses Addons in Ihrem Land illegal, Sie sollten dies unbedingt vor der Installation überprüfen.</disclaimer>
</extension>
</addon>
<addon id="script.module.amazon.database"
name="Amazon Database"
version="0.0.9"
Expand Down Expand Up @@ -108,4 +134,21 @@
<source>https://github.com/jjlee/mechanize</source>
</extension>
</addon>
<addon id="script.module.pydes"
name="pyDes"
version="2.0.1"
provider-name="Todd Whiteman">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.module"
library="lib" />
<extension point="xbmc.addon.metadata">
<summary lang="en">A pure python module which implements the DES and Triple-DES encryption algorithms.</summary>
<website>http://twhiteman.netfirms.com/des.html</website>
<license>Public Domain</license>
<platform>all</platform>
<source>http://sourceforge.net/projects/pydes/</source>
</extension>
</addon>
</addons>
2 changes: 1 addition & 1 deletion addon.xml.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
92a6ca245d4356e0f8ffc643514d7c55
13386e46d4a8a147c9933f8fbdd9f5af
26 changes: 26 additions & 0 deletions plugin.video.amazon-test/addon.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.amazon-test"
name="Amazon-Test"
version="0.0.4"
provider-name="Sandmann79">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.beautifulsoup" version="3.2.1"/>
<import addon="script.module.demjson" version="2.2.3"/>
<import addon="script.module.mechanize" version="0.2.6"/>
<import addon="script.module.pydes" version="2.0.1"/>
</requires>
<extension point="xbmc.python.pluginsource"
library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Amazon Prime Video Streaming</summary>
<summary lang="de">Amazon Prime Instant Video</summary>
<description lang="en">Movies and Television Shows for Prime Members</description>
<description lang="de">Filme und Serien für Amazon Prime Mitglieder</description>
<disclaimer lang="en">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<disclaimer lang="de">Möglicherweise sind einge Teile dieses Addons in Ihrem Land illegal, Sie sollten dies unbedingt vor der Installation überprüfen.</disclaimer>
</extension>
</addon>
Loading

0 comments on commit edb4b24

Please sign in to comment.