-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
https://www85.zippyshare.com/v/pdRwnmi5/file.html | ||
http://ul.to/ooi5oton | ||
https://www.mirrored.to/files/NI4FHORO/bizix_205.rar_links | ||
https://mirrorace.org/m/59vFQ | ||
https://krakenfiles.com/view/wGc4xOzwde/file.html | ||
https://hxfile.co/b2spxny4iuv4 | ||
https://gofile.io/d/oB2ppD | ||
https://www.fireload.com/1e7892e5c440df5c/bizix_205.rar | ||
https://evoload.io/v/yUdFcyQO9Eeh5R | ||
https://drop.download/71ob1zjfu8yl | ||
https://ddownload.com/mbjw3gdr90fx | ||
https://bayfiles.com/R6i5k2f3ye | ||
https://anonfiles.com/58jak8f3ya | ||
https://1fichier.com/?qliz111vgwh9t1fd2i3g |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
https://www70.zippyshare.com/v/Fzoheq5z/file.html | ||
http://ul.to/yxqvh1ei | ||
https://www.mirrored.to/files/0XH0KSZN/amymovie_400.rar_links | ||
https://mirrorace.org/m/59vFP | ||
https://krakenfiles.com/view/UV6Wk2JYlZ/file.html | ||
https://hxfile.co/3hr5e6inp107 | ||
https://gofile.io/d/bW6YUU | ||
https://www.fireload.com/02dd703079a8e07a/amymovie_400.rar | ||
https://evoload.io/v/ZqA5AshNkuZMrO | ||
https://drop.download/mcuu15umbbps | ||
https://ddownload.com/8u9mqk7j29st | ||
https://bayfiles.com/B7idkef4yc | ||
https://anonfiles.com/D8i7kafdyd | ||
https://1fichier.com/?fbb0yhfifq0hqe8pnasj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
https://www28.zippyshare.com/v/sggyXeEB/file.html | ||
http://ul.to/ak8jq3xq | ||
https://www.mirrored.to/files/ZETNNUFH/grandprix_14.rar_links | ||
https://mirrorace.org/m/37Dj1 | ||
https://krakenfiles.com/view/cTeGlKL4vO/file.html | ||
https://hxfile.co/66mfx2nvnece | ||
https://gofile.io/d/2DkBrn | ||
https://www.fireload.com/0804e44bf964bc60/grandprix_14.rar | ||
https://evoload.io/v/ciMRDbu6M0oCZ0 | ||
https://drop.download/pjva7jacd04v | ||
https://ddownload.com/cyj6coyp5xg7 | ||
https://bayfiles.com/x7lakefayb | ||
https://anonfiles.com/t0l4k1f3y9 | ||
https://1fichier.com/?sfs182hzv9kjgp7w2r8x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
from selenium import webdriver | ||
from selenium.webdriver.common.by import By | ||
from selenium.webdriver.common.keys import Keys | ||
import time | ||
import random | ||
|
||
driver = webdriver.Chrome() | ||
driver.get('https://www.crackthemes.com/') | ||
driver1 = webdriver.Chrome() | ||
|
||
|
||
|
||
|
||
|
||
def carawl(link): | ||
|
||
driver1.get(link) | ||
time.sleep(4) | ||
|
||
download_link = driver1.find_element_by_class_name("quote").text | ||
|
||
|
||
# open file in write mode | ||
name=random.randrange(20, 5000, 3) | ||
f = open(str(name)+".txt", "a") | ||
|
||
f.write("%s\n" % download_link) | ||
f.close() | ||
|
||
|
||
print('Done') | ||
|
||
|
||
|
||
|
||
while True: | ||
links = driver.find_elements_by_class_name("post-title") | ||
for i in links: | ||
try: | ||
carawl(i.find_element_by_tag_name('a').get_attribute("href")) | ||
time.sleep(5) | ||
except: | ||
print(i.find_element_by_tag_name('a').get_attribute("href")) | ||
|
||
|
||
|
||
driver.find_element_by_class_name("nextpostslink").click() | ||
time.sleep(5) | ||
|