>>
If anyone knows how to use python, here's a program I made to download all the comics in this series from incognitymous.com. cbf uploading the file anywhere, so just copy and paste the text into a file and call it comic.py or something. Edit first_page and last_page to the desired pages. I made this because I didn't see an option to download the entire comic from the site, and doing it individually is a pain in the ass. Run the program from the folder you want all the images to download to.
import urllib.request
import time
first_page = 1
last_page = 121
webpage_num_padding = 2
filename_num_padding = 3
for curr_page in range(first_page, last_page+1):
url="https://incognitymous.com/images/SultrySummer_Page"+str(curr_page).zfill(webpage_num_padding)+".png"
filename="SultrySummer_Page"+str(curr_page).zfill(filename_num_padding)+".png"
start=time.time()
print(" @:", url)
with urllib.request.urlopen(url) as response, open(filename, 'wb') as out_file:
data = response.read()
out_file.write(data)
print(" S:", url, "-->", filename, "[{:5.2f}s]".format(time.time()-start))