Differences between revisions 33 and 66 (spanning 33 versions)
Revision 33 as of 2003-04-07 19:03:06
Size: 4795
Editor: 212186008251
Comment:
Revision 66 as of 2012-04-22 08:52:22
Size: 7008
Editor: 86-40-31-190-dynamic
Comment: Added RPyC
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#pragma section-numbers off
Line 3: Line 4:
== Software ==
''You'll find here a (partial) list of relevant softwares:''
 === Dopy ===
  * [http://www.users.cloud9.net/~proteus/dopy/welcome.html http://www.users.cloud9.net/~proteus/dopy/welcome.html]
    ''Dopy'' is a small distributed object system written entirely in Python. It is not intended to be CORBA

This [[http://groups.google.com/group/comp.lang.python/browse_frm/thread/3df7b51071dbfad|link]]
points to an informal comparison of distributed computing technologies,
including [[CorbaPython|CORBA]], [[WebServices|XML-RPC, SOAP]], ... in ''comp.lang.python''.

== Software ==

You'll find here a (partial) list of relevant projects:

=== Dopy ===
  * http://www.mindhog.net/~mmuller/projects/dopy/
    [[Dopy]] is a small distributed object system written entirely in Python. It is not intended to be ''CORBA''
Line 11: Line 19:
 === Fnorb ===
  * [http://www.fnorb.org/ http://www.fnorb.org/]

=== Fnorb ===
  * http://fnorb.sourceforge.net/
Line 16: Line 25:
 === omniORB ===
  * [http://omniorb.sourceforge.net/ http://omniorb.sourceforge.net/]

=== ICE ===
  * http://www.zeroc.com/index.html
    ICE (Internet Communications Engine) is a GPL'd CORBA-like middleware. It's
    simple, fast, and powerful, and in [[http://www.zeroc.com/customers.html|serious production use]].
    * Languages: Python, C++, Java, PHP, C#, and Visual Basic.
    * Platforms: http://www.zeroc.com/platforms.html

=== omniORB ===
  * http://omniorb.sourceforge.net/
Line 21: Line 38:
 === OSE ===
  * [http://ose.sourceforge.net/ http://ose.sourceforge.net/]

=== OSE ===
  * http://www.dscpl.com.au/wiki/OSE
Line 26: Line 44:
 === Pyro ===
  * [http://pyro.sourceforge.net/ http://pyro.sourceforge.net/]
    ''Pyro'' is an acronym for '''Py'''thon '''r'''emote '''o'''bjects. It is a basic Distributed Object
    Technology system
    written entirely in Python, and for use in Python only. With this, it closely resembles Java's Remote Method
    Invocation (RMI). It is less similar to CORBA - which is a system- and language independent Distributed Object
    Technology and has much more to offer than Pyro or RMI. But Pyro is small, simple and free
    (MIT software license)!
 === Spread ===
  * [http://www.python.org/other/spread/ http://www.python.org/other/spread/]
    '''Spread''' is a toolkit that provides a high performance messaging service that is resilient to faults

=== PiCloud ===
  * http://www.picloud.com
    ''!PiCloud'' is a cloud-computing platform that integrates into Python. It allows developers to leverage the computing power of [[http://aws.amazon.com|Amazon Web Services]] (AWS) without having to manage, maintain, or configure their own virtual servers. [[http://www.picloud.com|PiCloud]] integrates into a Python code base via its custom library, ''cloud''. Offloading the execution of a function to !PiCloud's auto-scaling cluster (located on AWS) is as simple as passing the desired function into !PiCloud's ''cloud'' library.

    For example, invoking ''cloud.call(foo)'' results in ''foo()'' being executed on !PiCloud.
    Invoking ''cloud.map(foo, range(10))'' results in 10 functions, ''foo(0)'', ''foo(1)'', etc. being executed on !PiCloud.

=== PyBrenda ===
    PyBrenda is a tuple spaces implementation for Python.

=== Pyro ===
  * http://irmen.home.xs4all.nl/pyro/
    [[Pyro]] is an acronym for '''Py'''thon '''r'''emote '''o'''bjects. It is a library that enables you to build applications in which objects can talk to each other over the network, with minimal programming effort. You can just use normal Python method calls, with almost every possible parameter and return value type, and Pyro takes care of locating the right object on the right computer to execute the method. It is designed to be very easy to use, and to generally stay out of your way. But it also provides a set of powerful features that enables you to build distributed applications rapidly and effortlessly. Pyro is written in 100% pure Python and therefore runs on many platforms and Python versions, including Python 3.x.

=== Python-Orbit ===
  * http://sourceforge.net/projects/orbit-python
    ''Python-Orbit'' is a project to develop Python bindings for ORBit. It supports dynamic loading of IDL
    (no IDL compiler required), and most of ORBit's Type Codes.

=== RPyC ===
  * http://rpyc.sourceforge.net/
    [[RPyC]] (pronounced like are-pie-see), or Remote Python Call, is a transparent and symmetrical python library for remote procedure calls, clustering and distributed-computing. RPyC makes use of object-proxying, a technique that employs python's dynamic nature, to overcome the physical boundaries between processes and computers, so that remote objects can be manipulated as if they were local.

=== Spread ===
  * http://www.python.org/other/spread/
    ''Spread'' is a toolkit that provides a high performance messaging service that is resilient to faults
Line 43: Line 77:
 === Twisted ===
  * [http://www.twistedmatrix.com/ http://www.twistedmatrix.com/]
    ''Twisted'' is a framework, written in Python, for writing networked applications. It includes

=== Twisted ===
  * http://www.twistedmatrix.com/
    TwistedMatrix is a framework, written in Python, for writing networked applications. It includes
Line 51: Line 86:
 === YAMI ===
  * [http://maciejsobczak.com/prog/yami/ http://maciejsobczak.com/prog/yami/]

=== YAMI ===
  * http://msobczak.com/prog/yami/
Line 59: Line 95:

   
* Operating Systems: FreeBSD, Linux, MS Windows, SunOS
       * Programming Languages: C, C++, '''''Python''''', Tcl
    * Operating Systems: FreeBSD, Linux, MS Windows, SunOS
    * Programming Languages: C, C++, '''''Python''''', Tcl

A guide and a discussion page for Python related distributed programming.

This link points to an informal comparison of distributed computing technologies, including CORBA, XML-RPC, SOAP, ... in comp.lang.python.

Software

You'll find here a (partial) list of relevant projects:

Dopy

  • http://www.mindhog.net/~mmuller/projects/dopy/

    • Dopy is a small distributed object system written entirely in Python. It is not intended to be CORBA compliant. Instead, it aims to be extremely easy to use and to support Python's dynamic nature - methods are invoked dynamically, parameters are passed by copy. Any python object that can be pickled can automatically be passed as a parameter or a return value, and any Python object can be published as a distributed object.

Fnorb

  • http://fnorb.sourceforge.net/

    • Fnorb is a CORBA 2.0 ORB for Python first developed by DSTC. Fnorb's claim to fame is its size and pure Python implementation. These features allow it to be used whever Python may used (for example, within Jython) unlike other ORBs that rely on binary runtimes.

ICE

omniORB

  • http://omniorb.sourceforge.net/

    • omniORB is a robust high performance CORBA ORB for C++ and Python. It is freely available under the terms of the GNU Lesser General Public License (for the libraries), and GNU General Public License (for the tools). It is one of only three ORBs to be awarded the Open Group's Open Brand for CORBA.

OSE

  • http://www.dscpl.com.au/wiki/OSE

    • OSE is a generic application framework suitable for constructing general purpose applications, distributed systems and web based services. The four main parts of OSE are an extensive C++ class library, a set of Python wrappers, a build environment based on GNU Make, and a set of documentation extraction tools.

PiCloud

  • http://www.picloud.com

    • PiCloud is a cloud-computing platform that integrates into Python. It allows developers to leverage the computing power of Amazon Web Services (AWS) without having to manage, maintain, or configure their own virtual servers. PiCloud integrates into a Python code base via its custom library, cloud. Offloading the execution of a function to PiCloud's auto-scaling cluster (located on AWS) is as simple as passing the desired function into PiCloud's cloud library.

      For example, invoking cloud.call(foo) results in foo() being executed on PiCloud. Invoking cloud.map(foo, range(10)) results in 10 functions, foo(0), foo(1), etc. being executed on PiCloud.

PyBrenda

  • PyBrenda is a tuple spaces implementation for Python.

Pyro

  • http://irmen.home.xs4all.nl/pyro/

    • Pyro is an acronym for Python remote objects. It is a library that enables you to build applications in which objects can talk to each other over the network, with minimal programming effort. You can just use normal Python method calls, with almost every possible parameter and return value type, and Pyro takes care of locating the right object on the right computer to execute the method. It is designed to be very easy to use, and to generally stay out of your way. But it also provides a set of powerful features that enables you to build distributed applications rapidly and effortlessly. Pyro is written in 100% pure Python and therefore runs on many platforms and Python versions, including Python 3.x.

Python-Orbit

RPyC

  • http://rpyc.sourceforge.net/

    • RPyC (pronounced like are-pie-see), or Remote Python Call, is a transparent and symmetrical python library for remote procedure calls, clustering and distributed-computing. RPyC makes use of object-proxying, a technique that employs python's dynamic nature, to overcome the physical boundaries between processes and computers, so that remote objects can be manipulated as if they were local.

Spread

  • http://www.python.org/other/spread/

    • Spread is a toolkit that provides a high performance messaging service that is resilient to faults across external or internal networks. Spread functions as a unified message bus for distributed applications, and provides highly tuned application-level multicast and group communication support. Spread services range from reliable message passing to fully ordered messages with delivery guarantees, even in case of computer failures and network partitions. Spread is designed to encapsulate the challenging aspects of asynchronous networks and enable the construction of scalable distributed applications, allowing application builders to focus on the differentiating components of their application.

Twisted

  • http://www.twistedmatrix.com/

    • TwistedMatrix is a framework, written in Python, for writing networked applications. It includes implementations of a number of commonly used network services such as a web server, an IRC chat server, a mail server, a relational database interface and an object broker. Developers can build applications using all of these services as well as custom services that they write themselves. Twisted also includes a user authentication system that controls access to services and provides services with user context information to implement their own security models.

YAMI

  • http://msobczak.com/prog/yami/

    • YAMI project is supposed to provide a simple language- and platform-independent alternative to other, commercially and freely available communication infractructures like COM, CORBA or JavaRMI. It's not supposed to become their substitution :), but thanks to much simpler rules it's built on, it can become a useful part in some class of distributed systems, whether they are full-blown object-oriented systems or the simplest client-server solutions. YAMI is a complete and consistent environment, and currently supports:

    • Operating Systems: FreeBSD, Linux, MS Windows, SunOS
    • Programming Languages: C, C++, Python, Tcl

DistributedProgramming (last edited 2018-01-06 01:13:03 by RobertNishihara)

Unable to edit the page? See the FrontPage for instructions.