Skip to main content

This is a fork from https://github.com/aldryncore/webservices. A web service library.

Project description

NOTICE: This is a fork from https://github.com/aldryncore/webservices which is archived. This fork is only intended to keep running https://github.com/Naudit/django-simple-sso as far as we can. Feel free to generate MR (We probably accept most of them) but issues will not be fixed unless they are trivial.

Build and consume web services (aka APIs) in Python.

Features

  • Providers that work with Django, Flask and Twisted

  • Everything is signed (using itsdangerous)

  • Synchronous consumer (framework independant)

  • Asynchronous consumer (powered by Twisted)

Installation

Django (provider/consumer)

pip install webservices[django]

Flask (provider/consumer)

pip install webservices[flask]

Twisted (provider/consumer)

pip install webservices[twisted]

Synchronous consumer only

pip install webservices[consumer]

Quickstart

We’ll write an API that greets you with your name (or ‘hello world’ if not name is provided).

Provider

Django

We assume you have a setting API_KEYS which is a dictionary of public keys mapping to private keys.

myapi/urls.py:

from django.conf.urls import url, patterns
from webservices.sync import provider_for_django
from myapi.views import HelloProvider

urlpatterns = patterns('',
    url(r'hello/$', provider_for_django(HelloProvider())),
)

Your myapi/views.py:

from django.conf import settings
from webservices.models import Provider

class HelloProvider(Provider):
    def get_private_key(self, public_key):
        return settings.API_KEYS.get(public_key)

    def provide(self, data):
        name = data.get('name', 'world')
        return {'greeting': u'hello %s' % name}

Flask

app.py:

from flask import Flask
from webservices.sync import provider_for_flask
from webservices.models import Provider

app = Flask(__name__)

API_KEYS = {
    'publickey': 'privatekey', # your keys here
}

class HelloProvider(Provider):
    def get_private_key(self, public_key):
        return API_KEYS.get(public_key)

    def provide(self, data):
        name = data.get('name', 'world')
        return {'greeting': u'hello %s' % name}

provider_for_flask(app, '/hello/', HelloProvider())

Twisted

app.py:

from twisted.internet import reactor
from twisted.web.server import Site
from webservices.async import provider_for_twisted
from webservices.models import Provider

API_KEYS = {
    'publickey': 'privatekey', # your keys here
}

class HelloProvider(Provider):
    def get_private_key(self, public_key):
        return API_KEYS.get(public_key)

    def provide(self, data):
        name = data.get('name', 'world')
        return {'greeting': u'hello %s' % name}

resource = provider_for_twisted(HelloProvider())

site = Site(resource)
reactor.listenTCP(80, site)
reactor.run()

Noticed how the provider is basically the same for all three (other than get_private_key)? Neat, right?

Handling errors

To log errors (for example using raven) you can implement the report_exception method on Provider classes. This method is called whenever the provide method throws an exception. It takes no arguments.

Consumer

Synchronous

To consume that code (assuming it’s hosted on ‘https://api.example.org’):

from webservices.sync import SyncConsumer

consumer = SyncConsumer('https://api.example.org', 'mypublickey', 'myprivatekey')
result = consumer.consume('/hello/', {'name': 'webservices')
print result # prints 'hello webservices'

Asynchronous

Same as above, but async:

from webservices.async import TwistedConsumer
from twisted.internet import reactor

def callback(result):
    print result # prints 'hello webserivces'
    reactor.stop()

consumer = TwistedConsumer('https://api.example.org', 'mypublickey', 'myprivatekey')
deferred = consumer.consume('/hello/', {'name': 'webservices')
deferred.addCallback(callback)

reactor.run()

Data Source Name

You can create consumers from Data Source Names (eg 'http://public_key:private_key@api.example.org') using the from_dsn classmethod on consumers.

Example:

consumer = SyncConsumer.from_dsn(’https://public_key:private_key@api.example.org’)

License

This code is licensed under the 3-clause BSD license, see LICENSE.txt.

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

webservices.naudit-0.7.2.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

webservices.naudit-0.7.2-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file webservices.naudit-0.7.2.tar.gz.

File metadata

  • Download URL: webservices.naudit-0.7.2.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for webservices.naudit-0.7.2.tar.gz
Algorithm Hash digest
SHA256 22c2d6857b6b7fb500b5260b5dd93c189abd78ceead65be5cdcc9614422f1bc9
MD5 df6e3d0331f574e314544d5c9bf1184a
BLAKE2b-256 a138467664a506e5e307b39c830075b60dba06a52fa4670a08437733068a1043

See more details on using hashes here.

File details

Details for the file webservices.naudit-0.7.2-py3-none-any.whl.

File metadata

File hashes

Hashes for webservices.naudit-0.7.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b5eda31770c9e4616fd0dde484460366288bcb12b5de013ac5bfd22ed63c335c
MD5 1c1ed8f4983d6792ce105ff9c04e1f9b
BLAKE2b-256 e11a1a2b2db0c1b2344fea08d329d2317a0018372f605d7f94192f079ccd6c75

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