-
Notifications
You must be signed in to change notification settings - Fork 2
/
export_trakt.py
executable file
·453 lines (420 loc) · 17.7 KB
/
export_trakt.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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
#!/usr/bin/python3
# -*- coding: utf-8 -*-
#
# (c) Copyright 2016-2020 xbgmsharp <[email protected]>
#
# Purpose:
# Export Movies or TVShows IDs from Trakt.tv
#
# Requirement on Ubuntu/Debian Linux system
# apt-get install python3-dateutil python3-simplejson python3-requests python3-openssl jq
#
# Requirement on Windows on Python 3
# <python dir>\Scripts\pip3.exe install requests simplejson
#
import sys, os
# https://urllib3.readthedocs.org/en/latest/security.html#disabling-warnings
# http://quabr.com/27981545/surpress-insecurerequestwarning-unverified-https-request-is-being-made-in-pytho
# http://docs.python-requests.org/en/v2.4.3/user/advanced/#proxies
try:
import simplejson as json
import requests
requests.packages.urllib3.disable_warnings()
import csv
# TODO: Use pandas instead of csv for bigger csv handling
# import pandas as pd
except:
sys.exit(
"Please use your favorite method to install the following module requests and simplejson to use this script"
)
import argparse
import configparser
import datetime
import collections
import pprint
import time
import helpers
pp = pprint.PrettyPrinter(indent=4)
desc = """This program export Movies or TVShows IDs from Trakt.tv list."""
epilog = """Read a list from Trakt API.
Export them into a CSV file."""
_trakt = {
'client_id': '', # Auth details for trakt API
'client_secret': '', # Auth details for trakt API
'access_token': '', # Auth details for trakt API
'refresh_token': '', # Auth details for trakt API
'baseurl':
'https://api.trakt.tv', # Sandbox environment https://api-staging.trakt.tv,
'config_parser': '', # configparser.ConfigParser object
'config_path': '', # path of config file
'username': '' # username
}
_headers = {
'Accept': 'application/json', # required per API
'Content-Type': 'application/json', # required per API
'User-Agent': 'Tratk importer', # User-agent
'Connection':
'Keep-Alive', # Thanks to urllib3, keep-alive is 100% automatic within a session!
'trakt-api-version': '2', # required per API
'trakt-api-key': '', # required per API
'Authorization': '', # required per API
}
_proxy = {
'proxy': False, # True or False, trigger proxy use
'host': 'https://127.0.0.1', # Host/IP of the proxy
'port': '3128' # Port of the proxy
}
_proxyDict = {
"http": _proxy['host'] + ':' + _proxy['port'],
"https": _proxy['host'] + ':' + _proxy['port']
}
response_arr = []
def write_csv(options, results):
"""Write list output into a CSV file format
"""
if len(results) == 0:
return None
print("Writing to: {0}".format(options.output))
# Write result CSV, works with windows now
with open(options.output, 'w', encoding='utf-8', newline='') as fp:
mycsv = csv.DictWriter(fp,
fieldnames=list(results[0].keys()),
quoting=csv.QUOTE_ALL)
mycsv.writeheader()
for row in results:
mycsv.writerow(row)
fp.close()
# TODO: Not sure if removing from list works
def api_remove_from_list(options, remove_data, is_id=False):
"""API call for Sync / Remove from list
"""
time.sleep(1)
url = _trakt['baseurl'] + '/sync/{list}/remove'.format(list=options.list)
if not is_id:
values = {options.type: remove_data}
else:
values = {'ids': remove_data}
json_data = json.dumps(values)
if options.verbose:
print(url)
pp.pprint(json_data)
if _proxy['proxy']:
r = requests.post(url,
data=json_data,
headers=_headers,
proxies=_proxyDict,
timeout=(10, 60))
else:
r = requests.post(url,
data=json_data,
headers=_headers,
timeout=(5, 60))
if r.status_code != 200:
print("Error removing items from {list}: {status} [{text}]".format(
list=options.list, status=r.status_code, text=r.text))
return None
else:
return json.loads(r.text)
def process_export_data(options, export_data):
"""Process a set of data and create a csv"""
if export_data:
print("Found {count} {type}(s) from {list}".format(
count=len(export_data), type=options.type, list=options.list))
if options.list == 'history':
options.time = 'watched_at'
elif options.list == 'watchlist':
options.time = 'listed_at'
elif options.list == 'collection':
options.time = 'collected_at'
elif options.userlist != None:
options.time = 'listed_at'
export_csv = []
find_dupids = []
for data in export_data:
# TODO: Add support for exporting movies and episodes to the same lsit
#pp.pprint(data)
# If movie or show
#if options.type[:-1] != "episode" and 'imdb' in data[options.type[:-1]]['ids']:
#print(data)
if 'movie' in data:
# Since exporting from Trakt, use Trakt id for finding dupids
find_dupids.append(data[options.type[:-1]]['ids']['trakt'])
export_csv.append({
options.time: data[options.time],
'title': data[options.type[:-1]]['title'],
'year': data[options.type[:-1]]['year'],
'trakt': data[options.type[:-1]]['ids']['trakt'],
'imdb': data[options.type[:-1]]['ids']['imdb'],
'tmdb': data[options.type[:-1]]['ids']['tmdb']
})
# If episode
elif 'episode' in data:
find_dupids.append(data[options.type[:-1]]['ids']['trakt'])
if not data['episode']['title']:
data['episode']['title'] = "no episode title"
row = {
options.time: data[options.time],
'season': data[options.type[:-1]]['season'],
'episode': data[options.type[:-1]]['number'],
'episode_title': data['episode']['title'],
'show_title': '',
'trakt': data[options.type[:-1]]['ids']['trakt'],
'tvdb': data[options.type[:-1]]['ids']['tvdb'],
'tmdb': data[options.type[:-1]]['ids']['tmdb']
}
if options.list == "collection":
del row['show_title']
else:
row['show_title'] = data['show']['title']
export_csv.append(row)
# TODO: Don't know if options.clean works
## Empty list after export
if options.clean:
cleanup_results = {'sentids': 0, 'deleted': 0, 'not_found': 0}
to_remove = []
for data in export_data:
# TODO add filter
#if data[options.time] == "2012-01-01T00:00:00.000Z":
to_remove.append({'ids': data[options.type[:-1]]['ids']})
if len(to_remove) >= 10: # Remove by batch of 10
cleanup_results['sentids'] += len(to_remove)
result = api_remove_from_list(options, to_remove)
if result:
print("Result: {0}".format(result))
if 'deleted' in result and result['deleted'] and options.type != "shows":
cleanup_results['deleted'] += result['deleted'][
options.type]
if 'not_found' in result and result['not_found'] and options.type != "shows":
cleanup_results['not_found'] += len(
result['not_found'][options.type])
to_remove = []
# Remove the rest
if len(to_remove) > 0:
#print pp.pprint(data)
cleanup_results['sentids'] += len(to_remove)
result = api_remove_from_list(options, to_remove)
if result:
print("Result: {0}".format(result))
if 'deleted' in result and result['deleted'] and options.type != "shows":
cleanup_results['deleted'] += result['deleted'][
options.type]
if 'not_found' in result and result['not_found'] and options.type != "shows":
cleanup_results['not_found'] += len(
result['not_found'][options.type])
print(
"Overall cleanup {sent} {type}, results deleted:{deleted}, not_found:{not_found}"
.format(sent=cleanup_results['sentids'],
type=options.type,
deleted=cleanup_results['deleted'],
not_found=cleanup_results['not_found']))
## Find duplicate and remove duplicate
dup_ids = [
item for item, count in list(collections.Counter(find_dupids).items())
if count > 1
]
print("Found {dups} duplicate(s) out of {total} {entry}(s)".format(
entry=options.type, dups=len(dup_ids), total=len(find_dupids)))
if options.dup:
if len(dup_ids) > 0:
print(dup_ids)
dup_results = {'sentids': 0, 'deleted': 0, 'not_found': 0}
to_remove = []
for dupid in find_dupids:
count = 0
for data in export_data:
if data[options.type[:-1]]['ids']['trakt'] == dupid:
#print "{0} {1}".format(dupid, data['id'])
count += 1
if count > 1:
print("Removing {0} {1}".format(dupid, data['id']))
to_remove.append(data['id'])
dup_results['sentids'] += len(to_remove)
result = api_remove_from_list(options,
to_remove,
is_id=True)
if len(to_remove) >= 10: # Remove by batch of 10
if result:
print("Result: {0}".format(result))
if 'deleted' in result and result['deleted']:
dup_results['deleted'] += result[
'deleted'][options.type]
if 'not_found' in result and result[
'not_found']:
dup_results['not_found'] += len(
result['not_found'][options.type])
to_remove = []
## Remove the rest
if len(to_remove) > 0:
dup_results['sentids'] += len(to_remove)
result = api_remove_from_list(options, to_remove, is_id=True)
if result:
print("Result: {0}".format(result))
if 'deleted' in result and result['deleted']:
dup_results['deleted'] += result['deleted'][options.type]
if 'not_found' in result and result['not_found']:
dup_results['not_found'] += len(
result['not_found'][options.type])
to_remove = []
print(
"Overall {dup} duplicate {sent} {type}, results deleted:{deleted}, not_found:{not_found}"
.format(dup=len(dup_ids),
sent=dup_results['sentids'],
type=options.type,
deleted=dup_results['deleted'],
not_found=dup_results['not_found']))
# print(export_csv)
## Write export data into CSV file
write_csv(options, export_csv)
def main():
"""
Main program loop
* Read configuration file and validate
* Authenticate if require
* Export data from Trakt.tv
* Cleanup list from Trakt.tv
* Write to CSV
"""
## Parse inputs if any
parser = argparse.ArgumentParser(description=desc, epilog=epilog)
list_group = parser.add_mutually_exclusive_group(required=True)
parser.add_argument('-v', action='version', version='%(prog)s 0.3')
parser.add_argument(
'-c',
'--config',
help='allow to overwrite default config filename, default %(default)s',
action='store',
type=str,
dest='config',
default='config.ini')
parser.add_argument(
'-o',
'--output',
help='allow to overwrite default output filename, default %(default)s',
nargs='?',
type=str,
const='export.csv',
default=None)
parser.add_argument('-t',
'--type',
help='allow to overwrite type, default %(default)s',
choices=['movies', 'shows', 'episodes'],
dest='type',
default='movies')
list_group.add_argument(
'-l',
'--list',
help='allow to overwrite default list, default %(default)s',
choices=['watchlist', 'collection', 'history'],
dest='list',
default='history')
list_group.add_argument(
'-u',
'--userlist',
help='allow to export a user custom list, default %(default)s',
dest='userlist',
default=False,
action='store_true')
parser.add_argument('-C',
'--clean',
help='empty list after export, default %(default)s',
default=False,
action='store_true',
dest='clean')
parser.add_argument(
'-D',
'--duplicate',
help='remove duplicate from list after export, default %(default)s',
default=False,
action='store_true',
dest='dup')
#parser.add_argument('-d', '--dryrun',
# help='do not update the account, default %(default)s',
# default=True, action='store_true', dest='dryrun')
parser.add_argument(
'-V',
'--verbose',
help='print additional verbose information, default %(default)s',
default=False,
action='store_true',
dest='verbose')
options = parser.parse_args()
## Display debug information
if options.verbose:
print("Options: %s" % options)
if options.userlist:
options.list = "user list"
if not options.output:
options.output = 'export_{type}_{list}.csv'.format(type=options.type,
list=options.list)
## Read configuration and validate
helpers.read_config(_trakt, options)
## Try refreshing to get new access token. If it doesn't work, user needs to authenticate again.
helpers.api_auth_refresh(_trakt, _headers, options)
## Display debug information
if options.verbose:
print("trakt: {}".format(_trakt))
print("Authorization header: {}".format(_headers['Authorization']))
export_data = []
## Get Trakt user lists (custom lists)
if options.userlist:
export_data = helpers.api_get_userlists(_trakt, _headers, _proxyDict,
options, 1)
#print("export data")
#print(export_data)
if export_data:
print("Found {0} user list(s)".format(len(export_data)))
print("")
#pp.pprint(export_data)
# TODO: add export all user lists functionality
print("id | name")
for data in export_data:
print("{id} | {name}".format(name=data['name'],
id=data['ids']['trakt']))
#print("{id} | {name} | {items}".format(
# name=data['name'], id=data['ids']['trakt'], items=data['item_count'], own=data['user']['username']))
print("")
print(
"Type in the id matching with the name of the list you want to export, or 'all' for all lists."
)
options.listid = str(input('Input: '))
if options.listid == "all":
for data in export_data:
options.listid = data['ids']['trakt']
options.list = "{username}'s user list with id: {id}, name: '{name}'".format(
username=data['user']['username'],
id=data['ids']['trakt'],
name=data['name'])
global response_arr ## Cleanup global....
response_arr = []
export_data = helpers.api_get_userlist_items(
_trakt, _headers, _proxyDict, options, 1)
options.output = data['name'] + ".csv"
process_export_data(options, export_data)
else:
response_arr = []
user_list = helpers.api_get_userlist(_trakt, _headers,
_proxyDict, options, 1)[0]
# print(user_list)
options.list = "{username}'s user list with id: {id}, name: '{name}'".format(
username=user_list['user']['username'],
id=user_list['ids']['trakt'],
name=user_list['name'])
export_data = helpers.api_get_userlist_items(
_trakt, _headers, _proxyDict, options, 1)
#pp.pprint(export_data)
process_export_data(options, export_data)
else:
print("Error, no user lists found".format(type=options.type,
list=options.userlist))
sys.exit(1)
else:
export_data = helpers.api_get_list(_trakt, _headers, _proxyDict,
options, 1)
if export_data:
process_export_data(options, export_data)
else:
print("Error, no item(s) found for {type} from {list}".format(
type=options.type, list=options.list))
sys.exit(1)
if __name__ == '__main__':
main()