Package to communicate with Salesforce using their Bulk REST API v2.0.
Project description
Salesforce Bulk Python
Salesforce Bulk Python is a Python library for using the Salesforce REST Bulk API v2.0. It is especially designed to handle big-data worksloads, in which all data from Salesforce should be extraced.
It makes uses of asyncio for parallel execution. And is easily exendable by writing your own BulkAPIResultHandler.
How to use
1. Authentication
This library currently only supports the OAuth 2.0 JWT Bearer Flow.
connection_settings = BulkAPIConnectionSettings(
private_key = <KEY HERE>, # Private key to encode the JWT with (used by jwt.encode())
consumer_key = <CONSUMER KEY HERE>, # Consumer Key Created by Connected App
audience = <SALESFORCE DOMAIN>, # Example: https://test.salesforce.com
username = <USERNAME>, # User that is assigned to the app
api_version = <API VERSION> # Example: v52.0
)
2. Create a connection
Create a connection by passing BulkAPIConnectionSettings into a BulkAPIConnection.
con = BulkAPIConnection(connection_settings)
3. Get a reference to an Salesforce object
# Get one object
obj = SalesforceObject('Account', con)
# or... get a List[SalesforceObject] from all objects that are compatible with the Bulk API v2.0
all_obj = list([SalesforceObject(x,con) for x in con.get_all_objects()])
4. Create an BulkAPIResultHandler and implement the handle method.
The BulkAPIResultHandler will do something with the responses from the Bulk API.
For example, we could write the responses to a Azure ADLS Gen2 Storage account:
class ADLSHandler(BulkAPIResultHandler):
def handle(self,data):
datetime_start = datetime.now()
file_name = f'/salesforce/{self.job.object.name}/timestamp={datetime_start}/{self.batch_number}.csv'
adls.raw.client.create_file(filename).upload_data(data.content,overwrite=True)
5. Create a job and register the handler
We currently only support the GetAllBulkAPIJob but you can subclass the BulkAPIJob yourself and implement a custom query method.
# create a job
job1 = GetAllBulkAPIJob(obj,con)
job1.on_complete.append(ADLSHandler)
job2 = GetAllBulkAPIJob(obj,con)
job2.on_complete.append(ADLSHandler)
6. Execute one single job, or run multiple jobs in parralel.
# Run only one job
asyncio.run(job.start())
# Run multiple jobs in parralel
q = JobQueue(parallel_jobs=10)
q.extend([job1, job2])
asyncio.run(q.run_all())
When the jobs above are executed, the results will be passed to the handler.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file salesforce-bulk-python-0.1.0.tar.gz.
File metadata
- Download URL: salesforce-bulk-python-0.1.0.tar.gz
- Upload date:
- Size: 17.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff479c1df338096273bb6b9b5c82e3bff52b8632eda66f5cdb45c1324b3617c3
|
|
| MD5 |
bd252a76e698d22d0f79ab60497fad06
|
|
| BLAKE2b-256 |
31a74465fc7115a7379db32ee57c80e4615650ce95f6716e0c6f53ccfa27dfe4
|
File details
Details for the file salesforce_bulk_python-0.1.0-py3-none-any.whl.
File metadata
- Download URL: salesforce_bulk_python-0.1.0-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9ca2675ad3b769096369b24c0b2b10da09d1d7079b8a603a40f9deb23349a18
|
|
| MD5 |
bf9639dc10588cc4ce58b3fe6e68ce92
|
|
| BLAKE2b-256 |
193c5205b910a67d1f11ddde9074ed974f9efc8ff1a067bbbc5137c3817424cc
|