|
1 | 1 | #!/usr/bin/env python3
|
2 | 2 |
|
3 |
| -import requests, random, shutil, subprocess |
| 3 | +import requests, random, shutil, subprocess, time, sys |
| 4 | +from difPy import dif |
4 | 5 | from configparser import ConfigParser
|
5 |
| -from os.path import expanduser, dirname, realpath |
| 6 | +from os.path import expanduser, dirname, realpath, getctime, splitext, exists |
| 7 | +from os import rename |
6 | 8 | from pathlib import Path
|
7 | 9 |
|
8 | 10 | # Get configfile
|
9 | 11 | directory=dirname(realpath(__file__))
|
10 | 12 | config_object = ConfigParser()
|
11 | 13 | config_object.read(directory +"/config.ini")
|
12 | 14 | config = config_object["CONFIG"]
|
| 15 | +data = sys.argv[1] |
13 | 16 |
|
14 | 17 | # Get the data link of the subreddit
|
15 | 18 | link='https://www.reddit.com/r/'+ config['subreddit'] +'/.json'
|
16 | 19 |
|
17 | 20 | # Get the Path to save the pictures we will download, if it's not
|
18 | 21 | # there, it will be made
|
19 | 22 | path= expanduser("~") + '/Pictures/' + config['foldername'] + '/'
|
| 23 | +archivepath= expanduser("~") + '/Pictures/' + config['foldername'] + '/archive/' |
20 | 24 | Path(path).mkdir(parents=True, exist_ok=True)
|
| 25 | +Path(archivepath).mkdir(parents=True, exist_ok=True) |
| 26 | + |
| 27 | +if (data == 'cleanup'): |
| 28 | + search = dif(archivepath, delete=True) |
| 29 | + |
| 30 | +# Save wallpapers |
| 31 | +for i in range(0,int(config['monitors'])): |
| 32 | + # Getting the path of the file |
| 33 | + f_path = path + 'pic_' + str(i) |
| 34 | + |
| 35 | + if not exists(f_path): |
| 36 | + continue |
| 37 | + # Obtaining the creation time (in seconds) |
| 38 | + # of the file/folder (datatype=int) |
| 39 | + timestamp = getctime(f_path) |
| 40 | + |
| 41 | + # Converting the time to an epoch string |
| 42 | + # (the output timestamp string would |
| 43 | + # be recognizable by strptime() without |
| 44 | + # format quantifers) |
| 45 | + t_str = time.ctime(timestamp) |
| 46 | + |
| 47 | + # Converting the string to a time object |
| 48 | + t_obj = time.strptime(t_str) |
| 49 | + |
| 50 | + # Transforming the time object to a timestamp |
| 51 | + # of ISO 8601 format |
| 52 | + form_t = time.strftime("%Y-%m-%d %H:%M:%S", t_obj) |
| 53 | + |
| 54 | + # Since colon is an invalid character for a |
| 55 | + # Windows file name Replacing colon with a |
| 56 | + # similar looking symbol found in unicode |
| 57 | + # Modified Letter Colon " " (U+A789) |
| 58 | + form_t = form_t.replace(":", "꞉") |
| 59 | + # Renaming the filename to its timestamp |
| 60 | + rename(f_path, archivepath + '/' + 'pic_' + str(i) + '_' + form_t + splitext(f_path)[1]) |
21 | 61 |
|
22 | 62 | # Make the actual request to get the data
|
23 | 63 | r = requests.get(link, headers = {'User-agent': 'wallpaperscript 0.1'})
|
|
0 commit comments