Subversion Repositories SmartDukaan

Rev

Rev 15492 | Rev 15494 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 15492 Rev 15493
Line 66... Line 66...
66
    t1.daemon = True
66
    t1.daemon = True
67
    t1.start()
67
    t1.start()
68
    t2 = threading.Thread(target=scrapFlipkart, args = (flipkart,))
68
    t2 = threading.Thread(target=scrapFlipkart, args = (flipkart,))
69
    t2.daemon = True
69
    t2.daemon = True
70
    t2.start()
70
    t2.start()
71
    t3 = threading.Thread(target=scrapAmazon, args = (amazon))
71
    t3 = threading.Thread(target=scrapAmazon, args = (amazon,))
72
    t3.daemon = True
72
    t3.daemon = True
73
    t3.start()
73
    t3.start()
74
    threads.append(t1)
74
    threads.append(t1)
75
    threads.append(t2)
75
    threads.append(t2)
76
    threads.append(t3)
76
    threads.append(t3)