aio_sf_streaming is a simple Python 3.6 asyncio library allowing to connect and receive live notifications from Salesforce.
Project description
aio-sf-streaming
aio-sf-streaming is a simple Python 3.6 asyncio library allowing to connect and receive live notifications from Salesforce. This library is provided to you by papernest.
See The Force.com streaming API developer guide for more information about the different uses cases and how configure your Salesforce organization.
Feature
asyncio compatible library
Authentication with username/password or refresh token
Subscribe to push topics and custom events
Receive events pushed by Salesforce
Auto-reconnect after too many time of inactivity
Replay support: replay events missed while your client is disconnected (see Force.com documentation for more information).
aio-sf-streaming only support Python 3.6.
Getting started
Simple use case:
import asyncio
from aio_sf_streaming import SimpleSalesforceStreaming
async def print_event():
# Create client and connect
async with SimpleSalesforceStreaming(
username='my-username',
password='my-password',
client_id='my-client-id',
client_secret='my-client-secret') as client:
# Subscribe to some push topics
await client.subscribe('/topic/Foo')
await client.subscribe('/topic/Bar')
async for message in client.events():
print(message)
# client will wait indefinitely, you can ask to exit
if message['channel'] == '/topic/Bar':
break
else:
# You can unsubscribe when you want, too
await client.unsubscribe('/topic/Foo')
loop = asyncio.get_event_loop()
loop.run_until_complete(print_event())
Installation
Simply use pip:
$ pip install aio-sf-streaming
Documentation
Evolution
The library work well for our use-case then we does not plan a lot of new features.
Contributing
If you find any problem, feel free to fill an issue. Pull-Request are also welcomed.
You can install development dependencies with:
$ pip install -e .[tests,docs]
Release history
v. 0.3.0: Remove date-time parsing of the replay mixin, allow client to customize ReSubscribeMixin retry conditions, allow retry conditions to extend duration.
v. 0.2.0: Add refresh token authentication
v. 0.1.1: Add documentation and initial typing information.
v. 0.1.0: Initial release.
License
aio-sf-streaming is offered under the MIT license.
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
File details
Details for the file aio_sf_streaming-0.3.7.tar.gz
.
File metadata
- Download URL: aio_sf_streaming-0.3.7.tar.gz
- Upload date:
- Size: 23.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86f9dada9425623871f0a669bb21c00aaed21181642b81b01824abb5206e492b |
|
MD5 | a5929502976b7ff959cd62bf82787c9d |
|
BLAKE2b-256 | 450372d64b6fb51df2480476a42a90cc06ef82caa1a41f82cf66e78025640f28 |
File details
Details for the file aio_sf_streaming-0.3.7-py3-none-any.whl
.
File metadata
- Download URL: aio_sf_streaming-0.3.7-py3-none-any.whl
- Upload date:
- Size: 25.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a384526b815494b46b10a2d4320912a8441099f7127003dbd1fd152886d8a0e |
|
MD5 | 01052575fc922be06d09bf42264dd203 |
|
BLAKE2b-256 | ac35531e5d77bda05c93d48200b46122873eac2c07b963d8efdde700a4dd7750 |