I have 1000s of custom (compiled to '.so') modules that I'd like to use in python at the same time. Each such module is of size (100 [KB]) on average.
My question is, is there any limit on the number of imports in python? what are the consequences of many imports? (for example, will this require a lot of memory)?
Can I import 10,000 custom modules? 50,000 modules?