Basically what this error is saying is that the library is not included in the .so file being created by f2py. There may be some extra library files here and command options that you don't need but at least this gives a clue on how to fix the symbol not found error.
To fix the "2): Symbol not found ___kmpc_begin" I did the following but you can apply this idea to other Symbol not found errors.
First run this:
f2py -m main -h sgnFile.pyf main.f
Then run this:
f2py -c --fcompiler=intelem --f77exec=/usr/bin/ifort -L/opt/intel/composer_xe_2015.0.077/mkl/lib -L/opt/intel/composer_xe_2015.0.077/compiler/lib -llibiomp5 -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lmkl_intel_thread -lpthread -lm -m main sgnFile.pyf main.f *.o
I put the files from the intel folder in the same folder containing my main.f file and that allowed me to be able to use pycharm to compile my application so you may need to do this also.
Hope this helps!