1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
.. index:: Pyrolite, Java, .NET, C#
*******************************************
Pyrolite - client library for Java and .NET
*******************************************
This library allows your Java or .NET program to interface very easily with
the Python world. It uses the Pyro protocol to call methods on remote
objects. It also supports convenient access to a Pyro Flame server including the remote
interactive console.
Pyrolite is a tiny library that implements a part of the client side Pyro library,
hence its name 'lite'. Pyrolite has no additional dependencies.
So if you don't need Pyro's full feature set, and don't require your
Java/.NET code to host Pyro objects itself, Pyrolite may be
a good choice to connect java or .NET and python.
Pyrolite also contains a feature complete implementation of Python's :mod:`pickle` protocol
(with fairly intelligent mapping of datatypes between Python and Java/.NET),
and a small part of Pyro's client network protocol and proxy logic. It can use
the Serpent serialization format as well.
*Use the 4.x version of the library with Pyro4.*
*Getting the .NET version:*
The .NET version is available using the nuget package manager, package name is ``Razorvine.Pyrolite``
(and ``Razorvine.Serpent``, which is a dependency). `Package info <https://www.nuget.org/packages/Razorvine.Pyrolite/>`_.
*Getting the Java version:*
The Java library can be obtained from `Maven <http://search.maven.org/#search|ga|1|razorvine>`_, groupid ``net.razorvine`` artifactid ``pyrolite``.
Source is on Github: https://github.com/irmen/Pyrolite/tree/pyro4-legacy in the 'pyro4-legacy' branch.
Readme: https://github.com/irmen/Pyrolite/blob/pyro4-legacy/README.md
Small code example in Java:
.. code-block:: java
import net.razorvine.pyro.*;
NameServerProxy ns = NameServerProxy.locateNS(null);
PyroProxy remoteobject = new PyroProxy(ns.lookup("Your.Pyro.Object"));
Object result = remoteobject.call("pythonmethod", 42, "hello", new int[]{1,2,3});
String message = (String)result; // cast to the type that 'pythonmethod' returns
System.out.println("result message="+message);
remoteobject.close();
ns.close();
You can also read `a more elaborate example <https://gist.github.com/anonymous/e8c40c10dfabd5bfab31>`_.
That writeup is an elaboration of the Pyro simple example greeting.py appearing in the introduction chapter,
but with a Java (rather than Python) client.
The same example in C#:
.. code-block:: csharp
using Razorvine.Pyro;
using( NameServerProxy ns = NameServerProxy.locateNS(null) )
{
using( PyroProxy something = new PyroProxy(ns.lookup("Your.Pyro.Object")) )
{
object result = something.call("pythonmethod", 42, "hello", new int[]{1,2,3});
string message = (string)result; // cast to the type that 'pythonmethod' returns
Console.WriteLine("result message="+message);
}
}
You can also use Pyro Flame rather conveniently because of some wrapper classes:
.. code-block:: java
Config.SERIALIZER = Config.SerializerType.pickle; // flame requires the pickle serializer
PyroProxy flame = new PyroProxy(hostname, port, "Pyro.Flame");
FlameModule r_module = (FlameModule) flame.call("module", "socket");
System.out.println("hostname=" + r_module.call("gethostname"));
FlameRemoteConsole console = (FlameRemoteConsole) flame.call("console");
console.interact();
console.close();
|