Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bzdvdn/salesforce-wrapper
- Owner: bzdvdn
- Created: 2019-08-05T13:30:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-02T02:56:12.000Z (over 3 years ago)
- Last Synced: 2024-08-09T10:15:15.302Z (5 months ago)
- Topics: api, api-client, python3, salesforce
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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 apiusers = 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