<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../assets/xml/rss.xsl" media="all"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>ralph-heinkel.com (Posts about Python)</title><link>https://ralph-heinkel.com/</link><description></description><atom:link href="https://ralph-heinkel.com/categories/python.xml" rel="self" type="application/rss+xml"></atom:link><language>en</language><copyright>Contents © 2022 Ralph Heinkel </copyright><lastBuildDate>Fri, 11 Feb 2022 11:56:16 GMT</lastBuildDate><generator>Nikola (getnikola.com)</generator><docs>http://blogs.law.harvard.edu/tech/rss</docs><item><title>EuroPython 2014 pyRserve-slides now available online</title><link>https://ralph-heinkel.com/blog/europython2014-pyrserve-slides-online/</link><dc:creator>Ralph Heinkel</dc:creator><description>&lt;p&gt;After our well-attended
&lt;a href="http://www.meetup.com/HeidelbergPython/events/195639502/"&gt;Python Meetup last Wednesday in Heidelberg&lt;/a&gt;
about "Connecting Python to other programming languages for scientific computing"
I had been approached to publish the slides of my &lt;a href="https://pypi.python.org/pypi/pyRserve"&gt;pyRserve&lt;/a&gt;
talk (which has been the same as the one  I've given at EuroPython in Berlin, for those who are interested).
These are now &lt;a href="http://www.ralph-heinkel.com/download/pyRserve-talk-2014-07-24.pdf"&gt;online, so feel free to download them&lt;/a&gt;.&lt;/p&gt;</description><category>planet</category><category>pyRserve</category><category>Python</category><category>R</category><guid>https://ralph-heinkel.com/blog/europython2014-pyrserve-slides-online/</guid><pubDate>Fri, 19 Sep 2014 09:50:00 GMT</pubDate></item><item><title>pyRserve 0.8.1 released</title><link>https://ralph-heinkel.com/blog/pyRserve-0.8.1-released/</link><dc:creator>Ralph Heinkel</dc:creator><description>&lt;h2&gt;About pyRserve&lt;/h2&gt;
&lt;p&gt;pyRserve is a (pure python) client for connecting Python to an R process on a remote server via TCP-IP (using Rserve).
&lt;code&gt;R&lt;/code&gt; is one of the most important and most widely spread open source statistic packages available.&lt;/p&gt;
&lt;p&gt;Through such a pyRserve connection the full power of R is available on the Python side without programming in R.
From Python variables can get set in and retrieved from R, and R-functions can be created and called remotely.
No R-related libraries need to be installed on the client side, &lt;code&gt;pip install pyRserve&lt;/code&gt; is all that needs to be
done.&lt;/p&gt;
&lt;h2&gt;Sample code&lt;/h2&gt;
&lt;p&gt;This code assumes that &lt;code&gt;Rserve&lt;/code&gt; (the part that connects the R engine to the network) already is running.
Details can be found in the pyRserve docs.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;gt;&amp;gt;&amp;gt; import pyRserve
&amp;gt;&amp;gt;&amp;gt; conn = pyRserve.connect('Rserve.domain.com')
&amp;gt;&amp;gt;&amp;gt; conn.eval('sum( c(1.5, 4) )') # direct evaluation of a statement in R
5.5
&amp;gt;&amp;gt;&amp;gt; conn.r.myList = [1, 2, 3] # bind a Python list in R to variable 'myList'

&amp;gt;&amp;gt;&amp;gt; conn.voidEval('func1 &amp;lt;- function(v) { v*2 }')  # create a function in R
&amp;gt;&amp;gt;&amp;gt; conn.r.func1(4)                                # call the function in R
16
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Most important changes in V 0.8.x&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Support for out-of-bound messages (allows for callbacks from R to Python)
(contrib. by Philip. A.)&lt;/li&gt;
&lt;li&gt;Rserve can now be shutdown remotely (contrib. by Uwe Schmitt)&lt;/li&gt;
&lt;li&gt;Fixed bug when passing R functions as parameters to R functions&lt;/li&gt;
&lt;li&gt;Documentation errors have been fixed&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Documentation and Support&lt;/h2&gt;
&lt;p&gt;The documentation for pyRserve is available at &lt;a href="http://packages.python.org/pyRserve"&gt;http://packages.python.org/pyRserve&lt;/a&gt;&lt;br&gt;
The corresponding Google news group can be found at
&lt;a href="http://groups.google.com/group/pyrserve"&gt;http://groups.google.com/group/pyrserve&lt;/a&gt;&lt;/p&gt;</description><category>planet</category><category>pyRserve</category><category>Python</category><category>R</category><guid>https://ralph-heinkel.com/blog/pyRserve-0.8.1-released/</guid><pubDate>Fri, 18 Jul 2014 08:20:00 GMT</pubDate></item><item><title>Publish-Subscribe with web sockets in Python and Firefox</title><link>https://ralph-heinkel.com/blog/publish-subscribe-with-python-websockets/</link><dc:creator>Ralph Heinkel</dc:creator><description>&lt;p&gt;WebSockets provide a way to communicate through a bi-directional channel on a single TCP connection. This technology
is especially interesting since it allows a web server to push data to a browser (client) without having the client
to constantly poll for it. In contrast to normal HTTP requests where a new TCP connection gets opened and closed for
each request web socket connections are kept open until one party closes them. This allows for communication in both
directions, and calls can be made multiple times on the same connection.&lt;/p&gt;
&lt;p&gt;In this little article I basically combine what I found on Sylvain Hellegouarch's documentation for
&lt;a href="https://github.com/Lawouach/WebSocket-for-Python"&gt;ws4py&lt;/a&gt; (a WebSocket client and server library for Python) and
the article &lt;a href="http://www.codeproject.com/Articles/209041/HTML5-Web-Socket-in-Essence"&gt;HTML5 Web Socket in Essence&lt;/a&gt;
by Wayne Ye.&lt;/p&gt;
&lt;p&gt;More specifically the examples below shows how multiple clients subscribe via websockets to a cherrypy server through
a web socket connection.
The first of the two clients in the example below is a very lightweight client based solely on the ws4py package, the
other (javascript) implementation is supposed to run in Firefox.&lt;/p&gt;
&lt;h3&gt;The server&lt;/h3&gt;
&lt;p&gt;This example provides a minimal publishing engine implemented with cherrypy. An instance of class &lt;code&gt;WebSocketTool&lt;/code&gt; is hooked up into
cherrypy as a so-called cherrypy tool, and a web socket handler (the &lt;code&gt;Publisher&lt;/code&gt;-class) is bound
to this tool as a handler for calls to the path &lt;code&gt;/ws&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;import cherrypy
from ws4py.server.cherrypyserver import WebSocketPlugin, WebSocketTool
from ws4py.websocket import WebSocket

cherrypy.config.update({'server.socket_port': 9000})
WebSocketPlugin(cherrypy.engine).subscribe()
cherrypy.tools.websocket = WebSocketTool()

SUBSCRIBERS = set()

class Publisher(WebSocket):
    def __init__(self, *args, **kw):
        WebSocket.__init__(self, *args, **kw)
        SUBSCRIBERS.add(self)

    def closed(self, code, reason=None):
        SUBSCRIBERS.remove(self)

class Root(object):
    @cherrypy.expose
    def index(self):
        return open('ws_browser.html').read()

    @cherrypy.expose
    def ws(self):
        "Method must exist to serve as a exposed hook for the websocket"

    @cherrypy.expose
    def notify(self, msg):
        for conn in SUBSCRIBERS:
            conn.send(msg)

cherrypy.quickstart(Root(), '/', 
    config={'/ws': {'tools.websocket.on': True,
                    'tools.websocket.handler_cls': Publisher}})
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The only purpose of the &lt;code&gt;Root.ws()&lt;/code&gt;-method is to make this method available under &lt;code&gt;/ws&lt;/code&gt; in the web server
through the &lt;code&gt;cherrypy.expose&lt;/code&gt; decorator.
Whenever a websocket client makes a request to &lt;code&gt;/ws&lt;/code&gt; an instance of class &lt;code&gt;Publisher&lt;/code&gt; is created,
which registers itself to the global &lt;code&gt;SUBSCRIBERS&lt;/code&gt; set on &lt;code&gt;__init__()&lt;/code&gt;. When the server goes down, or the
client disconnects, its &lt;code&gt;closed()&lt;/code&gt; method is called.&lt;/p&gt;
&lt;p&gt;The only packages needed for this example are cherrypy and ws4py. Both can be easily installed via &lt;code&gt;easy_install&lt;/code&gt; or
&lt;code&gt;pip&lt;/code&gt;. Save the code above as &lt;code&gt;ws_server.py&lt;/code&gt; and start it with&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;python ws_server.py
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Now the server is ready to accept client connections through the web socket protocol.
As soon as one of the clients described below has subscribed to this server messages can be published by calling the
&lt;code&gt;Root.notify()&lt;/code&gt; method. Since it is exposed it is possible to call it from the command line with&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;curl localhost:9000/notify?msg=HelloWorld
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Of course &lt;code&gt;wget&lt;/code&gt; works as well.&lt;/p&gt;
&lt;h3&gt;A pure Python client&lt;/h3&gt;
&lt;p&gt;The Python client's code is quite short. &lt;code&gt;ws4py&lt;/code&gt; provides three sample client implementations, the threaded one has been
chosen for this example. The others are using gevent or Tornado.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;from ws4py.client.threadedclient import WebSocketClient

class Subscriber(WebSocketClient):
    def handshake_ok(self):
        self._th.start()
        self._th.join()

    def received_message(self, m):
        print "=&amp;gt; %d %s" % (len(m), str(m))

if __name__ == '__main__':
    ws = Subscriber('ws://localhost:9000/ws')
    ws.connect()
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The method &lt;code&gt;handshake_ok()&lt;/code&gt; has been overridden to keep the thread stored in &lt;code&gt;self._th&lt;/code&gt;
running continuously (the original implementation quits after one second). After the &lt;code&gt;Subscriber&lt;/code&gt;-class has
been instantiated it connects to the cherrypy server. Whenever the server sends a message it will be delegated
to the method &lt;code&gt;received_message()&lt;/code&gt; where it gets printed to stdout.&lt;/p&gt;
&lt;p&gt;Just store this code into a file, e.g. &lt;code&gt;ws_subscriber.py&lt;/code&gt; and start it in from a new shell. The cherrypy server
should print a message to the console that it received a web socket connection.&lt;/p&gt;
&lt;p&gt;Now again call the &lt;code&gt;notify&lt;/code&gt;-method in the server:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;curl localhost:9000/notify?msg=HelloWorld
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and the python client should print your message to the screen.&lt;/p&gt;
&lt;h3&gt;A web socket client in Firefox&lt;/h3&gt;
&lt;p&gt;This browser client uses the web socket protocol built into Firefox. The example below works for me in FF14, it failed for FF8. I'm
not sure which version of Firefox starts to support it. Safari version 5.0 also fails. IE has not been tested.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;html&amp;gt;
  &amp;lt;head&amp;gt;
    &amp;lt;script&amp;gt;
      var websocket = new WebSocket('ws://localhost:9000/ws');
      websocket.onopen    = function (evt) { console.log("Connected to WebSocket server."); };
      websocket.onclose   = function (evt) { console.log("Disconnected"); };
      websocket.onmessage = function (evt) { document.getElementById('msg').innerHTML = evt.data; };
      websocket.onerror   = function (evt) { console.log('Error occured: ' + evt.data); };
    &amp;lt;/script&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;body&amp;gt;
    &amp;lt;h1&amp;gt;Websocket demo&amp;lt;/h1&amp;gt;
    Message: &amp;lt;span id="msg" /&amp;gt;
  &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;At load time a &lt;code&gt;Websocket&lt;/code&gt;-instance is created and event handlers are installed. The interesting one
is the &lt;code&gt;onMessage&lt;/code&gt;-handler: it is called for each message received, it copies the message into the
SPAN element and thus makes it visible.&lt;/p&gt;
&lt;p&gt;Make sure to store this html page in the same directory as the &lt;code&gt;ws_server.py&lt;/code&gt; above since we are going to open it
through cherrypy's &lt;code&gt;index&lt;/code&gt; method. For this to work it has to be named &lt;code&gt;ws_browser.html&lt;/code&gt;.
Now open Firefox and direct it to &lt;code&gt;http://localhost:9000&lt;/code&gt;. You should immediately see this page.
The SPAN element should be empty.&lt;/p&gt;
&lt;p&gt;Again repeat the &lt;code&gt;curl&lt;/code&gt; or &lt;code&gt;wget&lt;/code&gt; command in your shell and both the python client (if it is still running) and
the SPAN element should display your "HelloWorld" message.&lt;/p&gt;</description><category>Python</category><category>Websockets</category><guid>https://ralph-heinkel.com/blog/publish-subscribe-with-python-websockets/</guid><pubDate>Sun, 22 Jul 2012 15:20:00 GMT</pubDate></item><item><title>pyRserve 0.6.0 released</title><link>https://ralph-heinkel.com/blog/pyRserve-0.6.0-released/</link><dc:creator>Ralph Heinkel</dc:creator><description>&lt;p&gt;While being at EuroPython in Florence the latest version of pyRserve has now been finished and is
available via pypi (&lt;code&gt;easy_install -U pyRserve&lt;/code&gt;). If you are at EuroPython, too, and want to talk about
it just come and see me.&lt;/p&gt;
&lt;h3&gt;About pyRserve&lt;/h3&gt;
&lt;p&gt;pyRserve is a (pure python) client for connecting Python to an R process on a remote server via TCP-IP (using Rserve).
&lt;code&gt;R&lt;/code&gt; is one of the most important and most widely spread open source statistic packages available.&lt;/p&gt;
&lt;p&gt;Through such a pyRserve connection the full power of R is available on the Python side without programming in R.
From Python variables can get set in and retrieved from R, and R-functions can be called remotely.
No R-related libraries need to be installed on the client side.&lt;/p&gt;
&lt;h3&gt;Sample code&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;&amp;gt;&amp;gt;&amp;gt; import pyRserve
&amp;gt;&amp;gt;&amp;gt; conn = pyRserve.connect('servername.domain.com')
&amp;gt;&amp;gt;&amp;gt; conn.r('1+1')                # direct evaluation of a statement in R
2
&amp;gt;&amp;gt;&amp;gt; conn.r.myList = [1, 2, 3]    # bind a Python list in R to variable 'myList'

&amp;gt;&amp;gt;&amp;gt; conn.r('func1 &amp;lt;- function(v) { v*2 }') # create a function in R
&amp;gt;&amp;gt;&amp;gt; conn.r.func1(4)                        # call the function in R
16
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Most important changes in V 0.6.0&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Support for Python 3.x (therefore dropped support for Python &amp;lt;= 2.5)&lt;/li&gt;
&lt;li&gt;Support for unicode strings&lt;/li&gt;
&lt;li&gt;Suport for Fortran-style ordering of numpy arrays&lt;/li&gt;
&lt;li&gt;Elements of single-item arrays are now translated to native python data types&lt;/li&gt;
&lt;li&gt;Full support complex numbers, partial support for 64bit integers and arrays&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Documentation and Support&lt;/h3&gt;
&lt;p&gt;The documentation for pyRserve is available at &lt;a href="http://packages.python.org/pyRserve"&gt;http://packages.python.org/pyRserve&lt;/a&gt;&lt;br&gt;
The corresponding Google news group can be found at
&lt;a href="http://groups.google.com/group/pyrserve"&gt;http://groups.google.com/group/pyrserve&lt;/a&gt;&lt;/p&gt;</description><category>pyRserve</category><category>Python</category><category>R</category><guid>https://ralph-heinkel.com/blog/pyRserve-0.6.0-released/</guid><pubDate>Wed, 04 Jul 2012 17:20:00 GMT</pubDate></item><item><title>pyRserve 0.5.2 released</title><link>https://ralph-heinkel.com/blog/pyRserve-0.5.2-released/</link><dc:creator>Ralph Heinkel</dc:creator><description>&lt;p&gt;The latest version is now available via pypi (&lt;code&gt;easy_install -U pyRserve&lt;/code&gt;).&lt;/p&gt;
&lt;h3&gt;About pyRserve&lt;/h3&gt;
&lt;p&gt;pyRserve is a (pure python) client for connecting Python to an R process on a remote server via TCP-IP (using Rserve).
Through such a connection variables can be get and set in R from Python, and also R-functions can be called remotely.
No R-related libraries need to be installed on the client side.&lt;/p&gt;
&lt;h3&gt;Sample code&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;&amp;gt;&amp;gt;&amp;gt; from pyRserve import connect
&amp;gt;&amp;gt;&amp;gt; conn = connect('your R server')
&amp;gt;&amp;gt;&amp;gt; conn.r('1+1')                # direct evaluation of a statement
2
&amp;gt;&amp;gt;&amp;gt; conn.r.myList = [1, 2, 3]    # bind a list within R to variable 'myList'

&amp;gt;&amp;gt;&amp;gt; conn.r('func1 &amp;lt;- function(v) { v*2 }') # create a function in R
&amp;gt;&amp;gt;&amp;gt; conn.r.func1(4)                        # call the function in R
16
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Changes in V 0.5.2&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Fixed bug with 32bit integer conversion on 64bit machines. Upgrade highly recommended!&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Documentation and Support&lt;/h3&gt;
&lt;p&gt;The documentation for pyRserve is available at &lt;a href="http://packages.python.org/pyRserve"&gt;http://packages.python.org/pyRserve&lt;/a&gt;&lt;br&gt;
The corresponding Google news group can be found at
&lt;a href="http://groups.google.com/group/pyrserve"&gt;http://groups.google.com/group/pyrserve&lt;/a&gt;&lt;/p&gt;</description><category>pyRserve</category><category>Python</category><category>R</category><guid>https://ralph-heinkel.com/blog/pyRserve-0.5.2-released/</guid><pubDate>Tue, 06 Dec 2011 18:22:00 GMT</pubDate></item><item><title>pyRserve 0.5.0 released</title><link>https://ralph-heinkel.com/blog/pyRserve-0.5.0-released/</link><dc:creator>Ralph Heinkel</dc:creator><description>&lt;p&gt;The latest version is now available via pypi (&lt;code&gt;easy_install -U pyRserve&lt;/code&gt;).&lt;/p&gt;
&lt;h3&gt;About pyRserve&lt;/h3&gt;
&lt;p&gt;pyRServe is a library for connecting Python to an R process running under Rserve.
Through such a connection variables can be get and set in R from Python, and also R-functions can be called remotely.&lt;/p&gt;
&lt;h3&gt;Changes in V 0.5.0&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Renamed pyRserve.rconnect() to pyRserve.connect(). The former still works but shows a DeprecationWarning&lt;/li&gt;
&lt;li&gt;String evaluation should now only be executed on the namespace directly, not on the connection object anymore. The latter still works but shows a DeprecationWarning.&lt;/li&gt;
&lt;li&gt;New kw argument atomicArray=True added to pyRserve.connect() for preventing single valued arrays from being converted into atomic python data types.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Documentation and Support&lt;/h3&gt;
&lt;p&gt;The documentation for pyRserve is available at &lt;a href="http://packages.python.org/pyRserve"&gt;http://packages.python.org/pyRserve&lt;/a&gt;&lt;br&gt;
The corresponding Google news group can be found at
&lt;a href="http://groups.google.com/group/pyrserve"&gt;http://groups.google.com/group/pyrserve&lt;/a&gt;&lt;/p&gt;</description><category>pyRserve</category><category>Python</category><category>R</category><guid>https://ralph-heinkel.com/blog/pyRserve-0.5.0-released/</guid><pubDate>Wed, 12 Oct 2011 13:22:00 GMT</pubDate></item></channel></rss>