Skip to main content

The minimalistic Python Actor middleware

Project description

PyActor is a python actor middleware for an object oriented architecture constructed with the idea of getting two remote objects to quickly communicate in a very simple, lightweight and minimalistic way.

It supports two versions:

  • Threading

  • Gevent green threads

It also includes communication between machines using XMLRPC and a second version that uses RabbitMQ message system in a just transparent way.

Installation

Install using:

python setup.py install

or:

pip install pyactor

Check that works executing the examples that you can find by cloning the repository:

cd examples
python sample1.py
...

Check also the docs for a tutorial:

Documentation Status

Commits are build and tested automatically at Travis-CI.

https://travis-ci.org/pedrotgn/pyactor.svg?branch=master

See code coverage at codecov.io or coveralls.io.

https://codecov.io/gh/pedrotgn/pyactor/branch/master/graph/badge.svg

The code is also checked for its health at every push by landscape.io (PEP8, common bad smells, etc.):

Code Health

First steps

This library is implemented using two types of concurrence:

  • 'thread' : classic threads

  • 'green_thread' : Gevent

Green threads give a performance almost twice better.

You will need to specify which one you are going to use at the beginning of your script with set_context('TYPE'). Where type is one of the two keywords above.

Then, first of all, a Host is needed in order to create some actors. Use it to spawn actors by giving the class type of the actor to create and one string that will identify it among the host. See example:

h = create_host()
actor1 = h.spawn('id1', MyClass)

The class of an actor must have defined its methods in the _tell and _ask lists so they can be called through the proxy. In the _tell list will be named those methods meant to be asynchronous and in the _ask list, the synchronous ones. In this example we have a class MyClass with a sync method ask_me() and an async method tell_me():

class MyClass:
    _tell =['tell_me']
    _ask = ['ask_me']
    def tell_me(self, msg):
        print msg
    def ask_me(self):
        return 'hello back'

As you can see, the async method receives a message and simply prints it while the sync method returns a result. You can now call this methods from your main code:

actor1.tell_me(‘Hello’) print actor1.ask_me()

Remote connections

Unlike other library solutions, PyActor supports remote communication between various machines by only giving an IP to the host. For example:

host = create_host('http://127.0.0.1:1277/')

An this host is online, so the other machine only needs to lookup for it:

host = create_host('http://127.0.0.1:1679')
remote_host = host.lookup_url('http://127.0.0.1:1277/', Host)

Or directly get one of its actors:

c = host.lookup_url('http://127.0.0.1:1277/id1', 'MyClass', 'module')

Tutorial

PyActor has many examples and a tutorial explaining all its functionalities. This examples can be found in the 'pyactor/examples' directory of the project (github). They are also explained in the documentation as a tutorial, hosted at readthedocs.org which you can find above.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyactor-0.9.2.tar.gz (23.7 kB view details)

Uploaded Source

Built Distribution

pyactor-0.9.2-py2-none-any.whl (32.0 kB view details)

Uploaded Python 2

File details

Details for the file pyactor-0.9.2.tar.gz.

File metadata

  • Download URL: pyactor-0.9.2.tar.gz
  • Upload date:
  • Size: 23.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyactor-0.9.2.tar.gz
Algorithm Hash digest
SHA256 b06b57b9ec6b9c4171747a88652849f4271635bfbc5bb6d2ff0c59cb83a4f9c1
MD5 3e33e563540fb7c9faec9c2f7ac7e444
BLAKE2b-256 5904c347c0c8ca97b1c4ed62b8e7757eb21fa1a4132e87bdb9100a12de21a5c3

See more details on using hashes here.

File details

Details for the file pyactor-0.9.2-py2-none-any.whl.

File metadata

File hashes

Hashes for pyactor-0.9.2-py2-none-any.whl
Algorithm Hash digest
SHA256 5a95359d0c8f1a51bc15853be7b005472cc71cdd07c0455684f67190f1310e52
MD5 038710242645d04735336e069497f9d6
BLAKE2b-256 1c38d7bf803fe8878d4266cd93e3cb571c89d81b2c2227f54f496b6afbd651a0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page