Skip to main content

A bridge between Django and javascript.

Project description

Srvice is a library that aims to integrate a Python server with a Javascript client via remote calls. With Srvice, the client can transparently call functions defined in server. The server might also respond with instructions that execute arbitrary Javascript code in the client.

Let us define a function in the client:

from import srvice

@srvice.api
def get_user_email(request, username):
    if can_read_email(request.user, username):
        return email_from_username(username)
    else:
        raise PermissionError

# This function must be associated with some url in your application
urlpatterns [
    ...,
    '^get-user-email/$', get_user_email.as_view(),
]

In the client, we call the function defined in the some URL point using the srvice object:

srvice.call('get-user-email', 'paulmcartney').then(function (email) {
    var contact = currentContact();
    contact.email = email;
})

Communication is done using JSON strings that pass function arguments and results from client to server and vice-versa.

This is only the very basic that Srvice can do. Please check the documentation for more information.

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

srvice-0.1.5.tar.gz (45.9 kB view details)

Uploaded Source

File details

Details for the file srvice-0.1.5.tar.gz.

File metadata

  • Download URL: srvice-0.1.5.tar.gz
  • Upload date:
  • Size: 45.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for srvice-0.1.5.tar.gz
Algorithm Hash digest
SHA256 b01954a56a9a291883141eb458516b3e03740b2ba77372b553dad4f52930aa5d
MD5 038b1062df1d53bc2a477fc0ccb2b79f
BLAKE2b-256 ff8c5f0b3ab6ae79378550e0e5ffbc979f7b9852ddba1deb33c1231a70e9bac9

See more details on using hashes here.

Supported by

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