Is possible add C modules in Python?
For example, consider I have created a C module and would like to import it in a Python code. It's possible? And using the common way (say, from c_name_module import c_functions)?
Besides, if is possible, may I import modules of another languages?
Thank you!!