mini-prog-normal

html 범위 다운로드

파이s 2015. 11. 23. 17:48

동일 코드를 C/C++로 작성하려면...;;

이래서 파이선 파이선~ 하는구나...


import urllib

import time


szUrlstream = "http://localhost/LayOutPage.do?pastreqIdx=%d"

szDownloadStremType = "%d.html"


for inIndexCount in xrange(1, 100):

    szUrlstream_Data = szUrlstream %inIndexCount

    szDownloadStremType_Data = szDownloadStremType %inIndexCount

    

    print szUrlstream_Data

    print szDownloadStremType_Data

    

    testfile = urllib.URLopener()

    testfile.retrieve(szUrlstream_Data, szDownloadStremType_Data)

    time.sleep(2)


download.py