python/php library in vb.NET
Is is possible to include a python library, which does API authentication, in a VB.NET app? If so how would I do this? The site that provided this does not provide much documentation on this; I am attempting to create an application that accesses the google API, and this library has been created to do the authentication for you.
Re: python/php library in vb.NET
If the library was done in a version of python that ran on .NET, like IronPython, then it would be possible.
Otherwise you would need to rely on whatever calling mechanism that library gives you. Does it expose itself to COM, or does it have native methods you could tap into via platform invoke the same way you would call a Win32 API?