-
Notifications
You must be signed in to change notification settings - Fork 0
/
indir-dizi-behzat-c.py
63 lines (51 loc) · 1.58 KB
/
indir-dizi-behzat-c.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# #################################
#
# Star Tv'den Behzat C'yi indirir
#
# Author: Emre Pişkin, 2013.03, [email protected]
#
# http://www.startv.com.tr/dizi/behzatc/video-galeri/sayfa/1/behzat-c-X-bolum/Y
# X = bolum numarası
# Y = part numarası (1-5)
#
# #################################
import time
def getVideo(video_link):
# Firefox'u aç
window.activate("Firefox")
time.sleep(0.5)
# Yeni sekme aç
keyboard.send_keys("<ctrl>+t")
time.sleep(0.5)
# Bağlantıyı yapıştır
keyboard.send_keys(video_link)
time.sleep(0.5)
# Sitenin açılması için 15sn bekle
keyboard.send_keys("<enter>")
time.sleep(15)
# Video downloader eklentisi videoyu bulmuş olmalı
# Fareyi oraya hareket ettirelim, tıklayalım
# Menüden ilk videoyu seçip tıklayalım
system.exec_command("xte 'mousemove 1350 70'")
time.sleep(0.5)
system.exec_command("xte 'mouseclick 1'")
time.sleep(0.5)
system.exec_command("xte 'mousemove 1350 120'")
time.sleep(0.5)
system.exec_command("xte 'mouseclick 1'")
time.sleep(1.5)
# DownThemAll açıldı, geriye Start'a basmak kalıyor
system.exec_command("xte 'mousemove 900 600'")
time.sleep(0.5)
system.exec_command("xte 'mouseclick 1'")
time.sleep(2)
# DownThemAll yöneticisi açıldı, Firefox'a dönüp
# Sekmeyi kapatalım
window.activate("Firefox")
time.sleep(0.5)
keyboard.send_keys("<ctrl>+w")
time.sleep(1500)
# Dosyadaki bağlantıları listeye atalım
list_video = open("behzatc_linkler.txt").readlines()
for video_link in list_video:
getVideo(video_link)