pandora_client/bin/pandora_client

41 lines
1.1 KiB
Text
Raw Normal View History

2010-11-18 14:46:19 +00:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
# GPL 2008
import os
import sys
from optparse import OptionParser
root = os.path.join(os.path.abspath(os.path.dirname(__file__)), '..')
if os.path.exists(os.path.join(root, 'pandora_client')):
sys.path.insert(0, root)
import pandora_client
if __name__ == '__main__':
usage = "usage: %prog [options] action"
parser = OptionParser(usage=usage)
parser.add_option('-c', '--config', dest='config', help='config.json containing config', default='~/.ox/client.json', type='string')
(opts, args) = parser.parse_args()
opts.config = os.path.expanduser(opts.config)
if None in (opts.config, ) or not os.path.exists(opts.config):
parser.print_help()
sys.exit()
2011-08-23 19:20:16 +00:00
actions = ('scan', 'sync', 'upload', 'extract', 'clean')
2010-12-28 14:14:48 +00:00
if not args or args[0] not in actions:
parser.error('you must specify a valid action. \n\t\tknown actions are: %s' % ', '.join(actions))
2010-11-18 14:46:19 +00:00
action = args[0]
if action == 'extract':
offline = True
else:
offline = False
c = pandora_client.Client(opts.config, offline)
2010-12-28 14:14:48 +00:00
getattr(c, action)()
2010-11-18 14:46:19 +00:00