forked from jcarolinares/thingiverse_downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thingiverse_downloader.py
249 lines (193 loc) · 8.83 KB
/
thingiverse_downloader.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
248
249
# -*- coding: utf-8 -*-
import requests
import json
import sys
import argparse
import os.path
from collections import OrderedDict
stl_path = "./stls"
if not os.path.exists(stl_path):
os.makedirs(stl_path)
thingiverse_api_base="https://api.thingiverse.com/"
access_keyword="?access_token="
api_token="out here your token key" #Go to https://www.thingiverse.com/apps/create and select Desktop app
rest_keywords={"newest":"/newest","users":"/users/","likes":"/likes/","things":"/things/","files":"/files","search":"/search/","pages":"&page="}
hall_of_fame=[]
def traffic_lights(n_pages=1):
for index in range(n_pages):
print("\n\nPage: {}".format(index+1))
rest_url=thingiverse_api_base+rest_keywords["search"]+"traffic light"+access_keyword+api_token+rest_keywords["pages"]+str(index+1)
print(rest_url)
parser_info(rest_url,"traffic_lights.json");
save_data()
def load_data():
#Load the data from the file to a list
if os.path.isfile("hall_of_fame.list"):
file=open("hall_of_fame.list","r")
hall_of_fame = file.readlines()
file.close()
# Removing \n
hall_of_fame = [x.strip() for x in hall_of_fame]
# for n in hall_of_fame:
# print(n)
else:
print("Hall of fame file not found")
def save_data():
#Save the data
ordered_halloffame=list(OrderedDict.fromkeys(hall_of_fame))
ordered_halloffame.sort()
file=open("hall_of_fame.list","w")
for user in ordered_halloffame:
try:
file.write(user)
except:
print("Error in name: {}".format(user))
file.write(user)
continue
file.close()
def newest(n_pages=1):
for index in range(n_pages):
print("\n\nPage: {}".format(index+1))
rest_url=thingiverse_api_base+rest_keywords["newest"]+access_keyword+api_token+rest_keywords["pages"]+str(n_pages)
download_objects(rest_url,"newest.json");
def user(username,n_pages=1):
#/users/{$username}/things
for index in range(n_pages):
print("\n\nPage: {}".format(index+1))
rest_url=thingiverse_api_base+rest_keywords["users"]+username+rest_keywords["things"]+access_keyword+api_token+rest_keywords["pages"]+str(index+1)
print(rest_url)
download_objects(rest_url,str(username+".json"));
def likes(username,n_pages=1):
#/users/{$username}/things
for index in range(n_pages):
print("\n\nPage: {}".format(index+1))
rest_url=thingiverse_api_base+rest_keywords["users"]+username+rest_keywords["likes"]+access_keyword+api_token+rest_keywords["pages"]+str(index+1)
print(rest_url)
download_objects(rest_url,str(username+"_likes.json"));
def search(keywords,n_pages=1):
#GET /search/{$term}/
for index in range(n_pages):
print("\n\nPage: {}".format(index+1))
rest_url=thingiverse_api_base+rest_keywords["search"]+keywords+access_keyword+api_token+rest_keywords["pages"]+str(index+1)
download_objects(rest_url,str(keywords+".json"));
def parser_info(rest_url, file_name):
s = requests.Session() #It creates a session to speed up the downloads
r=s.get(rest_url)
data=r.json()
#Save the data
file=open(file_name,"w")
file.write(json.dumps(data, indent=4, sort_keys=True,ensure_ascii=False).encode('utf8'))
file.close()
#Reading the json file
file=open(file_name,"r")
data_pd=json.loads(file.read())
#The page has objects?
if (len(data_pd)==0):
print("\n\nNo more pages- Finishing the program")
save_data()
sys.exit()
#Is it an error page?
for n in data_pd:
if (n=="error"):
print("\n\nNo more pages- Finishing the program")
save_data()
sys.exit()
print("Parsing data from {} objects from thingiverse".format(len(data_pd)))
for object in range(len(data_pd)):
object_id=str(data_pd[object]["id"])
print("\n{} -> {}".format(data_pd[object]["name"].encode('utf-8'),data_pd[object]["public_url"]))
#Name and last name
print("Name: {} {}".format(data_pd[object]["creator"]["first_name"].encode('utf-8'),data_pd[object]["creator"]["last_name"].encode('utf-8')))
#If the name and last name are empty, we use the username
#TODO check if the name is already on the list or is new->call the twitter api
#3 in [1, 2, 3] # => True
if (data_pd[object]["creator"]["first_name"]=="" and data_pd[object]["creator"]["last_name"]==""):
hall_of_fame.append(data_pd[object]["creator"]["name"].encode('utf-8')+"\n")
else:
hall_of_fame.append(data_pd[object]["creator"]["first_name"].encode('utf-8')+" "+data_pd[object]["creator"]["last_name"].encode('utf-8')+"\n")
def download_objects(rest_url, file_name):
# r = requests.get(rest_url)
s = requests.Session() #It creates a session to speed up the downloads
r=s.get(rest_url)
data=r.json()
#Save the data
file=open(file_name,"w")
file.write(json.dumps(data, indent=4, sort_keys=True,ensure_ascii=False).encode('utf8'))
file.close()
#Reading the json file
file=open(file_name,"r")
data_pd=json.loads(file.read())
#The page has objects?
if (len(data_pd)==0):
print("\n\nNo more pages- Finishing the program")
save_data()
sys.exit()
#Is it an error page?
for n in data_pd:
if (n=="error"):
print("\n\nNo more pages- Finishing the program")
save_data()
sys.exit()
print("Downloading {} objects from thingiverse".format(len(data_pd)))
for object in range(len(data_pd)):
object_id=str(data_pd[object]["id"])
print("\n{} -> {}".format(data_pd[object]["name"].encode('utf-8'),data_pd[object]["public_url"]))
# print("Object id: {}".format(object_id))
file_path = "./stls/"+data_pd[object]["name"].encode('utf-8').replace(" ","_").replace("/","-")
if not os.path.exists(file_path):
os.makedirs(file_path)
else:
print("\nSkipping already downloaded object")
continue
#User name
print("{} {}".format(data_pd[object]["creator"]["first_name"].encode('utf-8'),data_pd[object]["creator"]["last_name"].encode('utf-8')))
#If the name and last name are empty, we use the username
if (data_pd[object]["creator"]["first_name"]=="" and data_pd[object]["creator"]["last_name"]==""):
hall_of_fame.append(data_pd[object]["creator"]["name"].encode('utf-8')+"\n")
else:
hall_of_fame.append(data_pd[object]["creator"]["first_name"].encode('utf-8')+" "+data_pd[object]["creator"]["last_name"].encode('utf-8')+"\n")
# GET /things/{$id}/files/{$file_id}
#Get file from a things
r=s.get(thingiverse_api_base+rest_keywords["things"]+object_id+rest_keywords["files"]+access_keyword+api_token)
files_info=r.json()
for file in range(len(files_info)):
if(files_info[file]["name"].find(".stl"))!=-1:
print(" "+files_info[file]["name"])
#Download the file
download_link=files_info[file]["download_url"]+access_keyword+api_token
r = s.get(download_link)
with open(file_path+"/"+files_info[file]["name"].encode('utf-8'), "wb") as code:
code.write(r.content)
if __name__ == "__main__":
print("\nTHINGIVERSE DOWNLOADER")
parser = argparse.ArgumentParser()
parser.add_argument("--newest", type=bool, dest="newest_true",
help="It takes the newest objects uploaded")
parser.add_argument("--user", type=str, dest="username",
help="Downloads the object of a specified user")
parser.add_argument("--pages", type=int, default=1,
help="Defines the number of pages to be downloaded.")
parser.add_argument("--all", type=bool, default=False,
help="Download all the pages available (MAX 1000).")
parser.add_argument("--likes", type=str, dest="likes",
help="Downloads the likes of a specified user")
parser.add_argument("--search", type=str, dest="keywords",
help="Downloads the objects that match the keywords. 12 objects per page\n Example: --search 'star wars'")
parser.add_argument("--traffic_light", type=int, dest="traffic",
help="Check new users that have done a traffic light, adding them to a black list")
args = parser.parse_args()
load_data()
if args.all:
args.pages=1000
if args.newest_true:
newest(args.newest_true)
elif args.username:
user(args.username,args.pages)
elif args.likes:
likes(args.likes,args.pages)
elif args.keywords:
search(args.keywords,args.pages)
elif args.traffic:
traffic_lights(args.traffic)
else:
newest(1)