Tag Archives: import module
Dynamic module import in Python
Every now and then I was working in Python I needed to dynamically import some modules cause I like declarative style and importing and using only modules that I really need depending on the configuration while executing the program. Dynamical module loading helps better granularization of code by breaking a big script into topic related […]
JavaScript require / import / include modules
Require, import or include, name it as you wish but never forget the importance of modular design. This functionality enables you to divide your code into meaningful, purposeful and reusable modules enabling you to use your code as many times as you want and easing it’s maintenance. This functionality is supported in almost all modern programming languages like: […]