I have an existing web app developed in ASP.NET Frameword 4.7.2 using C#, and it’s very large. Because most NLP libraries (i.e. Spacy) are implemented using Python, I have the idea to define a WCF service interface to be called by the web app, but implement the WCF service in Python so I can use these specialized libraries, and avoid issues calling Python directly from C# or running separate Python process instances. I’ve been unable to find information on doing so. Or is doing something like using TCP sockets the only way? Any thoughts? Thanks.