Skip to main content

A python API for accessing RESTful resources on the force.com platform.

Project description

Usage

Rest Force offers a python API for easily working with RESTful resources exposed by the force.com platform. Typical usage often looks like this:

#!/usr/bin/python

from restforce.login import SalesforceAuthenticationFailedException
from restforce.rest import Resources, RestInvocationException

try:
    r = Resources()
    print r.post('hello', '{ "postData" : "world"}')
    print r.get('hello/1')
    print r.delete('hello/1')
except SalesforceAuthenticationFailedException as e:
    print e
except RestInvocationException as e:
    print e

Salesforce REST Example

Creating a REST resource on the force.com platform is easy. Here’s an example::

@RestResource(urlMapping='/hello/*')
global class HelloResource {

    @HttpGet
    global static String doGet()
    {
        return 'Hello, world!';
    }

    @HttpDelete
    global static String doDelete()
    {
        return 'Good bye, cruel world!';
    }

}

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

RestForce-1.0.0.tar.gz (5.4 kB view hashes)

Uploaded Source

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