Salesforce REST API client
Project description
⚡ aiosalesforce ⚡
Asynchronous Python client for Salesforce APIs
Documentation: https://georgebv.github.io/aiosalesforce
License: MIT
Support: ask a question or create an issue, any input is appreciated and would help develop the project
About
aiosalesforce
is a modern, production-ready Python client for Salesforce APIs.
It is built on top of the httpx
library and provides a simple and intuitive API
for interacting with Salesforce's APIs (REST, Bulk, etc.).
- Fast: designed from the ground up to be fully asynchronous :rocket:
- Fully typed: every part of the library is fully typed and annotated :label:
- Reliable: flexible and robust retrying configuration :gear:
- Intuitive: API follows naming conventions of Salesforce's APIs while staying idiomatic to Python :snake:
- Salesforce first: built with years of experience working with the Salesforce API it is configured to work out of the box and incorporates best practices and latest Salesforce API features :cloud:
- Track your API usage: built-in support for tracking Salesforce API usage :chart_with_upwards_trend:
Requirements
aiosalesforce
depends on:
Installation
pip install aiosalesforce
Demo
Example below shows how to:
- Authenticate against Salesforce using the SOAP login method
- Create a Salesforce client
- Create a new Contact
- Read a Contact by ID
- Execute a SOQL query
import asyncio
from aiosalesforce import Salesforce
from aiosalesforce.auth import SoapLogin
from httpx import AsyncClient
# Reuse authentication session across multiple clients (refreshes automatically)
auth = SoapLogin(
username="your-username",
password="your-password",
security_token="your-security-token",
)
async def main():
async with AsyncClient() as client:
# Create a Salesforce client
salesforce = Salesforce(
client,
base_url="https://your-instance.my.salesforce.com",
auth=auth,
)
# Create a new Contact
contact_id = await salesforce.sobject.create(
"Contact",
{
"FirstName": "John",
"LastName": "Doe",
"Email": "john.doe@example.com",
},
)
print(f"Created Contact with ID: {contact_id}")
# Read Contact by ID
contact = await salesforce.sobject.get("Contact", contact_id)
print(contact)
# Execute a SOQL query
async for record in salesforce.query("SELECT Id, Name FROM Contact"):
print(record)
if __name__ == "__main__":
asyncio.run(main())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aiosalesforce-0.4.0.tar.gz
(21.2 kB
view hashes)
Built Distribution
Close
Hashes for aiosalesforce-0.4.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b8181c78110535c13724458add9e4d4e763a6886a91cbf311a349f3a1cd96f5 |
|
MD5 | ce2a7a1bdc64b8160f2dc7cb49f4773a |
|
BLAKE2b-256 | 7cf39af03ba4ece5d13ee378325e31c38ad8ac2f0fe1107f939751825fda97e8 |