So have this Python .pyd module (C++), so I can't just open it in a text editor to find out what it contains. So how can I? I just want to know the function names inside it.
Python have full reflection.
You can do the following (for a modulename.pyd)
python
>>> import modulename as mtmp
>>> dir(mtmp)
>>> help(mtmp)
EDIT : Add help command as propose by Mike Graham
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With