forked from Xealeph/Yiff.party-Image-Scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyiff_image_scraper.py
247 lines (209 loc) · 8.52 KB
/
yiff_image_scraper.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
from bs4 import BeautifulSoup as bs
import requests
import sys
import os
import platform
amountOfLinks = len(sys.argv)-1
urlCounter = 0
imageCounter = 0
urlList = []
missingFiles = []
userAgent = "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36"
dirSep = ""
system = platform.system()
cLastPageFlag = False
if(system == 'Windows'):
dirSep = "\\"
else:
dirSep = "/"
print("\n======Starting Scraper========")
#Checks if there are links present and puts then in a list if they are
if amountOfLinks <= 0:
print("\nPlease enter at least 1 link as argument.\ne.g. https://yiff.party/patreon/1\n")
print("============0/0===============\n")
sys.exit()
for n in range(amountOfLinks):
urlList.append(sys.argv[n+1])
try:
startPage = int(sys.argv[1])-1
urlList.pop(0)
amountOfLinks -= 1
except:
startPage = 0
try:
cLastPage = int(sys.argv[2])
cLastPageFlag = True
urlList.pop(0)
amountOfLinks -= 1
if cLastPage < startPage:
sys.exit()
except SystemExit:
sys.exit("Please choose a lower starting page. Your current pagenumbers are: Starting Page: " + (startPage) + ", Last Page: " + str(cLastPage))
except:
pass
#Creates Image Directory
if not os.path.isdir("."+ dirSep +"Images"+ dirSep +""):
os.mkdir("."+ dirSep +"Images"+ dirSep +"")
def getFlag():
return cLastPageFlag
def setFlag(boolean):
cLastPageFlag = boolean
def accountForDuplicates(aDict):
counter = 0
bList = []
cList = []
newDict = {}
aDict = sorted(aDict.items(), key=lambda item: item[1])
#print(aDict)
for i1 in range(len(aDict)):
#print(aDict[i1][1])
bList.append(aDict[i1][1])
for i2 in range(len(aDict)):
cList.append(aDict[i2][0])
bList.append("buffer")
cList.append("buffer")
for h in range(len(bList)-1):
if bList[h] == bList[h+1]:
#print(bList[h])
#updatedItem = {cList[h]:}
newDict[cList[h]] = (str(counter) + " " + bList[h])
counter += 1
else:
newDict[cList[h]] = bList[h]
return newDict
def makeConformUrl(aList):
for k in range(len(aList)-1):
if(str(aList[k]).startswith("/")):
aList[k] = "https://yiff.party" + str(aList[k])
return aList
def downloader(myUrl, myImageName, myPatreonAuthor): #recursively tries to download the images - in the case of the site not accepting anymore requests
global imageCounter
try:
r = requests.get(myUrl, headers = {'User-Agent': userAgent}, timeout=(2,5), stream=True)
if r.status_code == 200:
with open("."+ dirSep +"Images"+ dirSep +"" + myPatreonAuthor + ""+ dirSep +"" + myImageName, 'wb') as f:
for chunk in r:
f.write(chunk)
imageCounter += 1
else:
print("beep -- file skipped: " + myUrl)
except:
print("Skipped: " + myUrl)
missingFiles.append(myUrl)
return
def downloadImages(url, urlCounter):
imageNameDict = {}
linkList = []
imgContainerUrls = []
global imageCounter
imageCounter = 0
#Gets the Patreon Author's number. Fails if link is shorter than https://yiff.party/patreon/1.
#Also Creates a directory for the images.
try:
patreonAuthor = url.split("/")[4]
except IndexError:
print("\nThe given url might not be valid.\nSkipping url: " + url + "\n")
print("============" + str(urlCounter) + "/" + str(amountOfLinks) + "===============\n")
return
else:
if not os.path.isdir("."+ dirSep +"Images"+ dirSep +"" + patreonAuthor + ""+ dirSep +""):
os.mkdir("."+ dirSep +"Images"+ dirSep +"" + patreonAuthor + ""+ dirSep +"")
#Gets the page and converts/reads it.
response = requests.get(url, headers = {'User-Agent': userAgent})
soup = bs(response.text, "html.parser")
newUrl = "https://yiff.party/render_posts?s=patreon&c=" + patreonAuthor + "&p="
#searches for the highest page number
lastPage = soup.find_all('a', {'class':'btn pag-btn'})
try:
lastPage = int(lastPage[1]["data-pag"])
#print(lastPage)
cLPFlag = getFlag()
if cLPFlag:
if cLastPage > lastPage:
sys.exit()
lastPage = cLastPage
startPage = startPage
setFlag(False)
else:
startPage = 0
for i in range(startPage, lastPage):
imgContainerUrls.append(newUrl + str(i+1)) #appends the page number to the url
except SystemExit:
sys.exit("Last Page Number is too high. Please choose a number lower or equal than: " + str(lastPage))
except:
lastPage = 1
imgContainerUrls.append(newUrl + str(1))
#print(imgContainerUrls)
for containerUrl in imgContainerUrls:
#print(containerUrl)
response = requests.get(containerUrl, headers = {'User-Agent': userAgent})
soup = bs(response.text, "html.parser")
containersPart1 = soup.find_all('div', {'class': 'card-action'})
containersPart2 = soup.find_all('div', {'class': 'post-body'})
containersPart3 = soup.find_all('div', {'class': 'card-attachments'})
containers = containersPart1 + containersPart2 + containersPart3
#Checks if there are any images and returns an error if not. Also skips the url.
try:
containers[0]
except IndexError:
page = containerUrl.split("p=")[1]
print("\nCould not find Images. The cause might be a invalid url or there just aren't any Images.")
missingFiles.append("Page " + page + " was skipped. You can retry scraping this page with: python " + sys.argv[0] + " " + page + " " + page + " urls")
#print("Skipping url: " + url + "\n")
#print("============" + str(urlCounter) + "/" + str(amountOfLinks) + "===============\n")
continue
containerCounter1 = len(containersPart1) #amount of containers with class 'card-action'
containerCounter2 = len(containersPart2) #amount of containers with class 'post-body'
i = 0
#Searches for Image-Boxes.
for container in containers:
i += 1
if i <= containerCounter1:
try:
shortLink = container.a['href']
except:
continue
elif i <= containerCounter2 and i > containerCounter1:
try:
shortLink = container.p.a['href']
except:
continue
else:
try:
subContainer = container.p
subContainer = subContainer.find_all('a')
for subCont in subContainer:
linkList.append(subCont['href'])
except:
continue
linkList.append(shortLink)
linkList = makeConformUrl(sorted(linkList))
linkList = list(dict.fromkeys(linkList))
for h in range(0, len(linkList)-1):
updatedValue = {str(h):str(linkList[h].split("/")[len(linkList[h].split("/"))-1])}
imageNameDict.update(updatedValue)
imageNameDict = accountForDuplicates(imageNameDict)
#print(len(linkList))
#print(imageNameDict)
#print(imageCounter)
#print('\n'.join(map(str, sorted(linkList))))
#Loops through the Image Urls amd downloads them.
for i in range(len(linkList)-1):
imageName = imageNameDict[str(i)]
urlI = linkList[i]
print("Downloading " + imageName) #Shows the name of the current downloading image
downloader(urlI, imageName, patreonAuthor)
#Just a finishing message.
if imageCounter == 0:
print("No files downloaded. Maybe there are no files or you messed up the order of the arguments: python " + sys.argv[0] + " [start page] [last page] urls")
else:
print("\nSuccessfully downloaded " + str(imageCounter) + " Images/Files!\n")
print("============" + str(urlCounter) + "/" + str(amountOfLinks) + "===============\n")
f = open("SkippedLinks.txt", "w+")
for files in missingFiles:
f.write(files + "\n")
f.close()
#Loops through all Yiff.party-Urls and downloads the images.
for url in urlList:
urlCounter += 1
downloadImages(url, urlCounter)