forked from xbgmsharp/trakt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
export_trakt.py
executable file
·605 lines (564 loc) · 30.4 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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
#!/usr/bin/python3
# -*- coding: utf-8 -*-
#
#------------------------------------------------------------------------
# Trakt.tv tools
#
# Copyright 2016-2021 xbgmsharp <xbgmsharp@gmail.com>. All Rights Reserved.
# License: GNU General Public License version 3 or later; see LICENSE.txt
# Website: https://trakt.tv, https://github.com/xbgmsharp/trakt
#------------------------------------------------------------------------
#
# 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
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
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,
}
_headers = {
'Accept' : 'application/json', # required per API
'Content-Type' : 'application/json', # required per API
'User-Agent' : 'Trakt exporter', # 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 read_config(options):
"""
Read config file and if provided overwrite default values
If no config file exist, create one with default values
"""
work_dir = ''
if getattr(sys, 'frozen', False):
work_dir = os.path.dirname(sys.executable)
elif __file__:
work_dir = os.path.dirname(__file__)
_configfile = os.path.join(work_dir, options.config)
if os.path.exists(options.config):
_configfile = options.config
if options.verbose:
print("Config file: {0}".format(_configfile))
if os.path.exists(_configfile):
try:
config = configparser.ConfigParser()
config.read(_configfile)
if config.has_option('TRAKT','CLIENT_ID') and len(config.get('TRAKT','CLIENT_ID')) != 0:
_trakt['client_id'] = config.get('TRAKT','CLIENT_ID')
else:
print('Error, you must specify a trakt.tv CLIENT_ID')
sys.exit(1)
if config.has_option('TRAKT','CLIENT_SECRET') and len(config.get('TRAKT','CLIENT_SECRET')) != 0:
_trakt['client_secret'] = config.get('TRAKT','CLIENT_SECRET')
else:
print('Error, you must specify a trakt.tv CLIENT_SECRET')
sys.exit(1)
if config.has_option('TRAKT','ACCESS_TOKEN') and len(config.get('TRAKT','ACCESS_TOKEN')) != 0:
_trakt['access_token'] = config.get('TRAKT','ACCESS_TOKEN')
else:
print('Warning, no access token found. Authentification is required')
if config.has_option('TRAKT','REFRESH_TOKEN') and len(config.get('TRAKT','REFRESH_TOKEN')) != 0:
_trakt['refresh_token'] = config.get('TRAKT','REFRESH_TOKEN')
else:
print('Warning, no refresh token found. Authentification is required')
if config.has_option('TRAKT','BASEURL'):
_trakt['baseurl'] = config.get('TRAKT','BASEURL')
if config.has_option('SETTINGS','PROXY'):
_proxy['proxy'] = config.getboolean('SETTINGS','PROXY')
if _proxy['proxy'] and config.has_option('SETTINGS','PROXY_HOST') and config.has_option('SETTINGS','PROXY_PORT'):
_proxy['host'] = config.get('SETTINGS','PROXY_HOST')
_proxy['port'] = config.get('SETTINGS','PROXY_PORT')
_proxyDict['http'] = _proxy['host']+':'+_proxy['port']
_proxyDict['https'] = _proxy['host']+':'+_proxy['port']
return config
except:
print("Error reading configuration file {0}".format(_configfile))
sys.exit(1)
else:
try:
print('%s file was not found!' % _configfile)
config = configparser.RawConfigParser()
config.add_section('TRAKT')
config.set('TRAKT', 'CLIENT_ID', '')
config.set('TRAKT', 'CLIENT_SECRET', '')
config.set('TRAKT', 'ACCESS_TOKEN', '')
config.set('TRAKT', 'REFRESH_TOKEN', '')
config.set('TRAKT', 'BASEURL', 'https://api.trakt.tv')
config.add_section('SETTINGS')
config.set('SETTINGS', 'PROXY', False)
config.set('SETTINGS', 'PROXY_HOST', 'https://127.0.0.1')
config.set('SETTINGS', 'PROXY_PORT', '3128')
with open(_configfile, 'w') as configfile:
config.write(configfile)
print("Default settings wrote to file {0}".format(_configfile))
except:
print("Error writing configuration file {0}".format(_configfile))
sys.exit(1)
def write_csv(options, results):
"""Write list output into a CSV file format"""
if options.verbose:
print("CSV output file: {0}".format(options.output))
# sort
if options.sortorder == 'asc':
sorted_results = sorted(results, key = lambda kv:(kv[options.time]))
results = sorted_results
# 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()
def api_auth(options, config=None, refresh=False):
"""API call for authentification OAUTH"""
values = None
if refresh == False:
print("Manual authentification. Open the link in a browser and paste the pincode when prompted")
print(("https://trakt.tv/oauth/authorize?response_type=code&"
"client_id={0}&redirect_uri=urn:ietf:wg:oauth:2.0:oob".format(
_trakt["client_id"])))
pincode = str(input('Input PIN:'))
# Exchange code for access_token
# First run
values = {
"code": pincode,
"client_id": _trakt["client_id"],
"client_secret": _trakt["client_secret"],
"redirect_uri": "urn:ietf:wg:oauth:2.0:oob",
"grant_type": "authorization_code"
}
else:
# Exchange refresh_token for access_token
# Refresh token
values = {
"refresh_token": _trakt['refresh_token'],
"client_id": _trakt['client_id'],
"client_secret": _trakt["client_secret"],
"redirect_uri": "urn:ietf:wg:oauth:2.0:oob",
"grant_type": "refresh_token"
}
url = _trakt['baseurl'] + '/oauth/token'
request = requests.post(url, data=values)
if request.status_code == 200:
response = request.json()
#pp.pprint(response)
print("Authentication successful")
_headers['Authorization'] = 'Bearer ' + response["access_token"]
_headers['trakt-api-key'] = _trakt['client_id']
# Update configuration file
if config:
config.set('TRAKT', 'ACCESS_TOKEN', response["access_token"])
config.set('TRAKT', 'REFRESH_TOKEN', response["refresh_token"])
with open(options.config, 'w') as configfile:
config.write(configfile)
print('Saved as "access_token" in file {0}: {1}'.format(options.config, response["access_token"]))
print('Saved as "refresh_token" in file {0}: {1}'.format(options.config, response["refresh_token"]))
else:
print("Sorry, the authentication was not successful.")
pp.pprint(request)
sys.exit(1)
def api_get_list(options, page):
"""API call for Sync / Get list by type"""
url = _trakt['baseurl'] + '/sync/{list}/{type}?page={page}&limit={limit}'.format(
list=options.list, type=options.type, page=page, limit=1000)
if options.verbose:
print(url)
if _proxy['proxy']:
r = requests.get(url, headers=_headers, proxies=_proxyDict, timeout=(10, 60))
else:
r = requests.get(url, headers=_headers, timeout=(5, 60))
#pp.pprint(r.headers)
if r.status_code != 200:
print("Error fetching Get {list}: {status} [{text}]".format(
list=options.list, status=r.status_code, text=r.text))
return None
else:
global response_arr
response_arr += json.loads(r.text)
if int(r.headers['X-Pagination-Page-Count']) == 0:
print("No pages found after API call, trakt list may be empty")
return response_arr
# if 'X-Pagination-Page-Count'in r.headers and r.headers['X-Pagination-Page-Count'] != "0":
if 'X-Pagination-Page-Count' in r.headers and r.headers['X-Pagination-Page-Count']:
print("Fetched page {page} of {PageCount} pages for {list} list".format(
page=page, PageCount=r.headers['X-Pagination-Page-Count'], list=options.list))
if page != int(r.headers['X-Pagination-Page-Count']):
api_get_list(options, page+1)
return response_arr
def api_get_userlists(options, page):
"""API call for Sync / Get userlists"""
url = _trakt['baseurl'] + '/users/{user}/lists'.format(
user=options.userlist, page=page, limit=1000)
if options.verbose:
print(url)
if _proxy['proxy']:
r = requests.get(url, headers=_headers, proxies=_proxyDict, timeout=(10, 60))
else:
r = requests.get(url, headers=_headers, timeout=(5, 60))
#pp.pprint(r.headers)
if r.status_code != 200:
print("Error fetching Get {user}: {status} [{text}]".format(
user=options.userlist, status=r.status_code, text=r.text))
return None
else:
global response_arr
response_arr += json.loads(r.text)
if 'X-Pagination-Page-Count' in r.headers and r.headers['X-Pagination-Page-Count']:
print("Fetched page {page} of {PageCount} pages for {user} list".format(
page=page, PageCount=r.headers['X-Pagination-Page-Count'], user=options.userlist))
if page != int(r.headers['X-Pagination-Page-Count']):
api_get_list(options, page+1)
return response_arr
def api_get_userlist(options, page):
"""API call for Sync / Get list by type"""
url = _trakt['baseurl'] + '/users/{user}/lists/{list_id}/items/{type}?page={page}&limit={limit}'.format(
user=options.userlist, list_id=options.listid, type=options.type, page=page, limit=1000)
if options.verbose:
print(url)
if _proxy['proxy']:
r = requests.get(url, headers=_headers, proxies=_proxyDict, timeout=(10, 60))
else:
r = requests.get(url, headers=_headers, timeout=(5, 60))
#pp.pprint(r.headers)
if r.status_code != 200:
print("Error fetching Get {list}: {status} [{text}]".format(
user=options.userlist, status=r.status_code, text=r.text))
return None
else:
global response_arr
response_arr += json.loads(r.text)
if 'X-Pagination-Page-Count' in r.headers and r.headers['X-Pagination-Page-Count']:
print("Fetched page {page} of {PageCount} pages for {user} list".format(
page=page, PageCount=r.headers['X-Pagination-Page-Count'], user=options.userlist))
if page != int(r.headers['X-Pagination-Page-Count']):
api_get_userlist(options, page+1)
return response_arr
def api_remove_from_list(options, remove_data, is_id=False):
"""API call for Sync / Remove from list"""
url = _trakt['baseurl'] + '/sync/{list}/remove'.format(list=options.list)
if options.type == 'episodes':
values = { 'shows' : remove_data }
elif 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 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)
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('-f', '--format',
help='allow to overwrite default ID type format, default %(default)s',
choices=['imdb', 'tmdb', 'tvdb', 'tvrage', 'trakt'], dest='format', default='imdb')
parser.add_argument('-t', '--type',
help='allow to overwrite type, default %(default)s',
choices=['movies', 'shows', 'episodes'], dest='type', default='movies')
parser.add_argument('-l', '--list',
help='allow to overwrite default list, default %(default)s',
choices=['watchlist', 'collection', 'history'], dest='list', default='history')
parser.add_argument('-u', '--userlist',
help='allow to export a user custom list, default %(default)s',
dest='userlist', default=None)
parser.add_argument('--listid',
help='allow to export specific user custom list id, default %(default)s',
dest='listid', default=None)
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('-s', '--sort',
help='allow to overwrite sort order, default %(default)s',
choices=['asc', 'desc'], dest='sortorder', default='desc')
#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=True, action='store_true', dest='verbose')
options = parser.parse_args()
## Display debug information
if options.verbose:
print("Options: %s" % options)
if options.type == 'episodes' and options.list == "collection":
print("Error, you can only fetch {0} from the history or watchlist list".format(options.type))
sys.exit(1)
if options.userlist:
options.list = options.userlist
if not options.output:
options.output = 'export_{type}_{list}.csv'.format(type=options.type, list=options.list)
if options.type == 'episodes' and options.format == "imdb":
options.format = "tmdb"
print("Forcing format to tmdb for type episode")
## Read configuration and validate
config = read_config(options)
## Display debug information
if options.verbose:
print("Config: {}".format(config))
## Trakt auth
if not _trakt['access_token'] and not _trakt['refresh_token'] and \
_trakt['client_id'] and _trakt['client_secret']:
print("Trakt, no token found in config file, requesting authorization_code")
api_auth(options, config, False)
elif _trakt['access_token'] and _trakt['refresh_token'] and \
_trakt['client_id'] and _trakt['client_secret']:
## Check token validity
## Trakt access_token is valid for 3 months before it needs to be refreshed again.
today = datetime.datetime.today()
modified_date = datetime.datetime.fromtimestamp(os.path.getmtime(options.config))
duration = today - modified_date
if duration and duration.seconds < 2592000:
# 30*24*60*60 = 2592000
print("Trakt, skipped access token refresh, token is less than 30 days, only %s" % duration)
_headers['Authorization'] = 'Bearer ' + _trakt["access_token"]
_headers['trakt-api-key'] = _trakt['client_id']
else:
## Exchange refresh_token for access_token
print("Trakt, access token refresh, token is more than 30 days, token is %s old" % duration)
api_auth(options, config, True)
else:
print("No valid authentication parameters found in config file")
sys.exit(1)
if not _headers['Authorization'] and not _headers['trakt-api-key']:
print("No valid Authorization header")
sys.exit(1)
## Display debug information
if options.verbose:
print("Trakt: {}".format(_trakt))
print("Authorization header: {}".format(_headers['Authorization']))
print("trakt-api-key header: {}".format(_headers['trakt-api-key']))
## Get lists from Trakt user
export_data = []
if options.userlist:
export_data = api_get_userlists(options, 1)
if export_data:
print("Found {0} user list".format(len(export_data)))
#pp.pprint(export_data)
for data in export_data:
print("Found list id '{id}' name '{name}' with {items} items own by {own}".format(
name=data['name'], id=data['ids']['trakt'], items=data['item_count'], own=data['user']['username']))
if options.listid == None:
print("Input the custom list id to export")
print("---alternatively add it to the command with `--listid 12345678` together with the --userlist username1")
options.listid = str(input('Input:'))
global response_arr ## Cleanup global....
response_arr = []
export_data = api_get_userlist(options, 1)
#pp.pprint(export_data)
if export_data:
print("Found {0} Item-Count".format(len(export_data)))
else:
print("Error, no item return for {type} from the user list {list}".format(
type=options.type, list=options.userlist))
sys.exit(1)
## Get data from Trakt
if not export_data:
export_data = api_get_list(options, 1)
if export_data:
print("Found {0} Item-Count".format(len(export_data)))
else:
print("Error, no item return for {type} from the {list} list".format(
type=options.type, list=options.list))
sys.exit(1)
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:
#pp.pprint(data)
# If movie or show export by format imdb
if options.type[:-1] != "episode" and 'imdb' in data[options.type[:-1]]['ids'] and \
options.format == "imdb":
find_dupids.append(data[options.type[:-1]]['ids']['imdb'])
export_csv.append({ 'imdb' : data[options.type[:-1]]['ids']['imdb'],
'trakt' : data[options.type[:-1]]['ids']['trakt'],
options.time : data[options.time],
'title' : data[options.type[:-1]]['title']})
# If movie or show export by format tmdb
elif options.type[:-1] != "episode" and 'tmdb' in data[options.type[:-1]]['ids'] and \
options.format == "tmdb":
find_dupids.append(data[options.type[:-1]]['ids']['tmdb'])
export_csv.append({ 'tmdb' : data[options.type[:-1]]['ids']['tmdb'],
'trakt' : data[options.type[:-1]]['ids']['trakt'],
options.time : data[options.time],
'title' : data[options.type[:-1]]['title']})
# If episode export by format tmdb
elif 'tmdb' in data[options.type[:-1]]['ids'] and \
options.format == "tmdb":
find_dupids.append(data[options.type[:-1]]['ids']['tmdb'])
if not data['episode']['title']: data['episode']['title'] = "no episode title"
export_csv.append({ 'tmdb' : data[options.type[:-1]]['ids']['tmdb'],
'trakt' : data[options.type[:-1]]['ids']['trakt'],
options.time : data[options.time],
'season' : data[options.type[:-1]]['season'],
'episode' : data[options.type[:-1]]['number'],
'episode_title' : data['episode']['title'],
'show_title' : data['show']['title']})
# If episode export by format tvdb
elif 'tvdb' in data[options.type[:-1]]['ids'] and \
options.format == "tvdb":
find_dupids.append(data[options.type[:-1]]['ids']['tvdb'])
if not data['episode']['title']: data['episode']['title'] = "no episode title"
export_csv.append({ 'tvdb' : data[options.type[:-1]]['ids']['tvdb'],
'trakt' : data[options.type[:-1]]['ids']['trakt'],
options.time : data[options.time],
'season' : data[options.type[:-1]]['season'],
'episode' : data[options.type[:-1]]['number'],
'episode_title' : data['episode']['title'],
'show_title' : data['show']['title']})
# print(export_csv)
if len(export_csv) == 0:
print("Warning no data to export, probably a bug")
sys.exit(1)
## Write export data into CSV file
write_csv(options, export_csv)
## 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']:
cleanup_results['deleted'] += result['deleted'][options.type]
if 'not_found' in result and result['not_found']:
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']:
cleanup_results['deleted'] += result['deleted'][options.type]
if 'not_found' in result and result['not_found']:
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 out of {total} {entry}".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']['imdb'] == 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']))
if __name__ == '__main__':
main()