I have a project where I am generating the .sch file in Python. Following all rules of file format, I am successful till this stage. However, if there is any custom library (*.lib) file, I can get the pin locations from it, but the symbol doesn’t load.
This is my path to the library: User_Libs/MS50SFA_NRF52/MS50SFA_VCE.lib
So, the symbol should be at User_Libs/MS50SFA_NRF52/MS50SFA_VCE.lib:MS50SFA_NRF52
But, I get No Symbol Found error. If I load the symbol by adding the library, then it works fine. I want to know if there is a method from which I can upload the kicad symbol from a python script.
Thanks