4

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?

1 Answer 1

7

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

Sign up to request clarification or add additional context in comments.

2 Comments

Thanks, I will search in this direction! And where can I locate this code? May I create new module say overrides in my custom modules directory and write my code in views.py?
Yes, that is a very clean way to organize it

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.