#!/usr/bin/python # coding = utf-8 # # This script is licensed under GPL v3 or higher # # Author: Angel Berlanas Vicente # # Import the libraries from xmlrpclib import * import sys class N4NStreaming: def __init__(self): ''' A simple init method ''' pass #def init def startup(self,options): ''' Startup functions ''' pass #def startup def apt(self): ''' Apt functions ''' pass #def apt(self) def info(self): ''' Show basic info about this plugin. ''' return {'status':True, 'msg':'[N4NStreaming] Streaming by N4N'} #def info #class N4NStreaming