|
@@ -24,7 +24,12 @@ for name in os.listdir("locations"):
|
|
|
text = ifile.read()
|
|
|
for match in re.finditer(r"images.+?[.](gif|jpg|png)", text, flags=re.U):
|
|
|
imgfile = match.group().encode("utf-8")
|
|
|
- images.append(imgfile)
|
|
|
+ randmatch = re.search(r"'\s*[+]\s*rand\s*[(]\s*(\d+)\s*[,]\s*(\d+)\s*[)]\s*[+]\s*'", imgfile)
|
|
|
+ if randmatch != None:
|
|
|
+ for i in range(int(randmatch.group(1)), 1+int(randmatch.group(2))):
|
|
|
+ images.append(re.sub(r"'\s*[+]\s*rand\s*[(].*?[)]\s*[+]\s*'", str(i), imgfile))
|
|
|
+ else:
|
|
|
+ images.append(imgfile)
|
|
|
|
|
|
ifile.close()
|
|
|
|