Override Django module class method

Question:

In my Django application I have a module installed via pip. I need to override some method located in site-packages/module/views.py. I assume, I need to import this module in my custom modules directory, and simply inherit class and override method.

What is the best approach? How can I do it correctly without writing code in site-packages directory?

Asked By: asyndrige

||

Answers:

What you are after is often referred to as monkey patching.

import some_module

def my_method(self):
   pass

some_module.SomeClass.a_method = my_method

Be careful though depending on the nature of the method and library initialization it may be too late to patch the method. For example if a method that you would like to patch is invoked as the module is loaded you will never be able to patch it before it is called.

Try and patch the class in question as early as possible in your application startup

Answered By: Ciaran Liedeman
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.