I wants to send extra arguments to another function, is this the right way to do that.
def foo(self, request, method='post', page=None,**options):
    #do something
    self.another_foo(options)
def another_foo(self, data=None):
    print data
self.foo(5,data="free")
 
    