I wrote a python wrapper for c++ library that I'm working on using this repository. It is using boost python to create wrappers. After the code was compiled, the shared library (.so file) is created. Then I was able to use a python script to execute the c++ functions in that shared library.
But when I'm using the created shared library, my python IDE is not suggesting functions and variables like it does for other python modules. What will I have to do to enable suggestions for the wrappers that I create that way..?
The IDE that I'm using is pycharm by JetBrains.
Thanks !!