You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
6
+
Salesforce Bulk Python is a Python library for using the Salesforce REST Bulk API v2.0. It is especially designed to handle big-data workloads, in which all data from Salesforce should be extraced.
9
7
10
8
It makes uses of asyncio for parallel execution. And is easily exendable by writing your own `BulkAPIResultHandler`.
11
9
@@ -81,6 +79,6 @@ q.extend([job1, job2])
81
79
asyncio.run(q.run_all())
82
80
```
83
81
84
-
When the jobs above are executed, the results will be passed to the handler.
82
+
The results will be passed to the handler when the jobs above are executed.
0 commit comments