Пример #1
0
def get_torrent(args):
	'''
	usage: lx get-torrent [info-hash|task-id]...
	'''
	from lixian_cli import parse_login_command_line
	args = parse_login_command_line(args)
	client = XunleiClient(args.username, args.password, args.cookies)
	for id in args:
		id = id.lower()
		import re
		if re.match(r'[a-fA-F0-9]{40}$', id):
			torrent = client.get_torrent_file_by_info_hash(id)
		elif re.match(r'#?\d+$', id):
			tasks = client.read_all_tasks()
			from lixian_tasks import find_task_by_id
			task = find_task_by_id(tasks, id)
			assert task, id + ' not found'
			id = task['bt_hash']
			id = id.lower()
			torrent = client.get_torrent_file_by_info_hash(id)
		else:
			raise NotImplementedError()
		path = id + '.torrent'
		print path
		with open(path, 'wb') as output:
			output.write(torrent)
def get_torrent(args):
    '''
	usage: lx get-torrent [info-hash|task-id]...
	'''
    from lixian_cli import parse_login_command_line
    args = parse_login_command_line(args)
    client = XunleiClient(args.username, args.password, args.cookies)
    for id in args:
        id = id.lower()
        import re
        if re.match(r'[a-fA-F0-9]{40}$', id):
            torrent = client.get_torrent_file_by_info_hash(id)
        elif re.match(r'#?\d+$', id):
            tasks = client.read_all_tasks()
            from lixian_tasks import find_task_by_id
            task = find_task_by_id(tasks, id)
            assert task, id + ' not found'
            id = task['bt_hash']
            id = id.lower()
            torrent = client.get_torrent_file_by_info_hash(id)
        else:
            raise NotImplementedError()
        path = id + '.torrent'
        print path
        with open(path, 'wb') as output:
            output.write(torrent)
Пример #3
0
def get_torrent(args):
	'''
	usage: lx get-torrent [info-hash|task-id]...
	'''
	client = XunleiClient(args.username, args.password, args.cookies)
	for id in args:
		id = id.lower()
		import re
		if re.match(r'[a-fA-F0-9]{40}$', id):
			torrent = client.get_torrent_file_by_info_hash(id)
		elif re.match(r'\d+$', id):
			tasks = client.read_all_tasks()
			import lixian_query
			base = lixian_query.TaskBase(client, args)
			task = base.get_task_by_id(id)
			id = task['bt_hash']
			id = id.lower()
			torrent = client.get_torrent_file_by_info_hash(id)
		else:
			raise NotImplementedError()
		path = id + '.torrent'
		print path
		with open(path, 'wb') as output:
			output.write(torrent)
Пример #4
0
def get_torrent(args):
    '''
	usage: lx get-torrent [info-hash|task-id]...
	'''
    client = XunleiClient(args.username, args.password, args.cookies)
    for id in args:
        id = id.lower()
        import re
        if re.match(r'[a-fA-F0-9]{40}$', id):
            torrent = client.get_torrent_file_by_info_hash(id)
        elif re.match(r'\d+$', id):
            tasks = client.read_all_tasks()
            import lixian_query
            base = lixian_query.TaskBase(client, client.read_all_tasks)
            task = base.get_task_by_id(id)
            id = task['bt_hash']
            id = id.lower()
            torrent = client.get_torrent_file_by_info_hash(id)
        else:
            raise NotImplementedError()
        path = id + '.torrent'
        print path
        with open(path, 'wb') as output:
            output.write(torrent)