c.execute("delete from books_tags_link where id in (select id from books_tags_link where tag in (select id from tags where name like '%Last Update%'));")
help='If you want to use pushbullet, pass in your key here.')
option_parser.add_option(
'-d',
'--device',
action='store',
dest='pbdevice',
help='If you wish to only send to a certian pushbullet device, put the device name here. If the device name is invalid, will just send to all pushbullets associated with the acc')
option_parser.add_option(
'-n',
'--notify',
action='store_true',
dest='notify',
help='Enable if you want to use system notifications. Only for Win/Linux.')
option_parser.add_option(
'-c',
'--config',
action='store',
dest='config',
help='Config file for inputs. Blank config file is provided. No default. If an option is present in whatever config file is passed it, the option will overwrite whatever is passed in through command line arguments unless the option is blank. Do not put any quotation marks in the options.')
option_parser.add_option(
'-t',
'--tag',
action='store_true',
dest='tag',
help='Strip Last Updated tags from calibredb. Requires library to be passed in.')
option_parser.add_option(
'-l',
'--library',
action='store',
dest='library',
help='Path to calibre library. If you are connecting to a calibre webserver then this should be the url.')
option_parser.add_option(
'-a',
'--library-path',
action='store',
dest='library_path',
help='Path location of library. Will be equal to library if nothing is passed in.')