GithubHelp home page GithubHelp logo

onerpc's Introduction

OneRPC

Prototype of an RPC framework to build Services that can be used as libraries or as client/server.

Step #1 - write your library in plain Python

Example -- a science.py module:

def multiplication(one, two):
    """Returns one * two

    Options: one and two
    """
    return int(one) * int(two)

Step #2 - use it it your code with onerpc.Service

Example:

from onerpc import Service

science_service = Service('science')
print science_service.multiplication(3, 5)

The only difference with plain Python is the Service indirection,

When called, the code will be called directly unless configured otherwise.

In other words, everything will be running in pure Python and you will get the usual traceback, pdb and so on.

The service name must be the fully qualified importable name you would use with an import statement. For example, if you have an elasticsearch module in a apps packages, you would use:

es = Service('elasticsearch.apps')

Step #3 - at deployment time, chose where to run the Service

The interesting thing happens when the application is deployed.

Beside plain Python, the Service can run on ITC, IPC or TCP

Example with TCP on port 1234 -- server-side:

$ zerorpc --server --bind tcp://0.0.0.0:1234 science

On the client-side, a locate_service() function can be used to point the application to the right endpoint in the Application startup code:

# application init time...
from onerpc import locate_service
locate_service('science', 'tcp://0.0.0.0:1234')

# the code, as before...
from onerpc import Service

science_service = Service('science')
print science_service.multiplication(3, 5)

onerpc's People

Contributors

tarekziade avatar

Stargazers

Trevor Joynson avatar  avatar Justin Quick avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.