slideshareのDownloadがDisableになってるスライドをダウンロードする

http://techawakening.org/download-author-disabled-slideshare-presentations/1361/
画像ファイルをとってくることになる。
idがog:image になってる部分のcontentから画像リンクを抽出

#!/usr/bin/env python
#-*- coding: utf-8 -*-
import os
for x in range(18):
    #This string should be adjusted 
    string = "slide-"+ str((x+1)) + "-1024.jpg"
    #print string
    command = "wget http://image.slidesharecdn.com/business-plan-8540/95/" + string
    #print command
    os.system(command)

あとはプレビューなりで開いてPrint>Save as PDFとかで変換すればいい