summaryrefslogtreecommitdiff
path: root/magnet2feed.py
diff options
context:
space:
mode:
authorSimon Doppler <dopsi@dopsi.ch>2017-08-07 16:33:12 +0200
committerSimon Doppler <dopsi@dopsi.ch>2017-08-07 16:37:20 +0200
commit60eb998226809b43bec8e47ab729c5fa6898c90d (patch)
treec60ead15f9864733d96c0efcc4a39d8b93c9e761 /magnet2feed.py
parentbf4a5c260a1ef7f237b6a26e1965d89470db85bd (diff)
downloadreleng-60eb998226809b43bec8e47ab729c5fa6898c90d.tar.xz
Create feed from magnet links
Diffstat (limited to 'magnet2feed.py')
-rw-r--r--magnet2feed.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/magnet2feed.py b/magnet2feed.py
new file mode 100644
index 0000000..5dc767f
--- /dev/null
+++ b/magnet2feed.py
@@ -0,0 +1,30 @@
+from feedgenerator import Rss201rev2Feed
+import sys
+from os.path import basename
+
+feed_url = 'https://static.dopsi.ch/al32/feed_{arch}.rss'
+architectures = ['i686', 'dual']
+
+
+def main(link, date):
+ for arch in architectures:
+ feed = Rss201rev2Feed(title='ArchLinux32 torrent download feed ({arch} ISO)'.format(arch=arch),
+ link=feed_url,
+ description="A torrent feed to download the latest ArchLinux32 {arch} iso".format(
+ arch=arch
+ ),
+ language='en')
+
+ feed.add_item(title='ArchLinux32 {arch} {date}'.format(arch=arch, date=date),
+ link=link,
+ description='ArchLinux32 {arch} {date}'.format(arch=arch, date=date))
+
+ with open(basename(feed_url).format(arch=arch), mode='w') as feed_file:
+ feed.write(feed_file, 'utf-8')
+
+
+if __name__ == '__main__':
+ if len(sys.argv) != 3:
+ print('Error: {cmd} magnet date'.format(cmd=sys.argv[0]))
+
+ main(link=sys.argv[1], date=sys.argv[2])