Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bzdvdn/salesforce-wrapper

Salesforce-wrapper at Python
https://github.com/bzdvdn/salesforce-wrapper

api api-client python3 salesforce

Last synced: 6 days ago
JSON representation

Salesforce-wrapper at Python

Awesome Lists containing this project

README

        

# SalesForce API wrapper

# Installation

Install using `pip`...

pip install salesforce-wrapper

Or

git clone https://github.com/bzdvdn/salesforce-wrapper.git

python3 setup.py

# Usage

```python
from salesforce import SalesForceAPI as API
api = API("", "", "") # init salaesforce api

users = api.user.list() # return list of users
user = api.user.get("")
data = {"name": "test"}
new_user = api.user.create(data=data) # creating user

```

# TODO
* full documentation(all salesforce methods)
* examples
* async version
* tests