Daily Shaarli

All links of one day in a single page.

October 24, 2012

reflection - How to dynamically load a Python class - Stack Overflow

Importer dynamiquement une classe en python

module = import("math")
sqrt = getattr(module, "sqrt")
sqrt(2)
1.4142135623730951
sqrt(4)
2.0