Connect to Salesforce Streaming Library using python to consume Salesforce Objects.          Library used:  aiosfstream   Ref link: https://aiosfstream.readthedocs.io/en/latest/quickstart.html#connecting       Quick start:         Authentication :      To connect to       salesforce streaming API, all clients must authenticate themselves.    supports various ways:      Username - Password authentication  (using SalesforceStreamingClient )       client= SalesforceStreamingClient (   consumer_key="<consumer key>",   consumer_secret = "<consumer secret>",   username="<username>",   password = "<password>"   )   # client = Client(auth)           Refresh token authentication       auth = RefreshTokenAuthenticator (   consumer_key = "<consumer key>",   consumer_secret = "<consumer secret>",   refresh_token = "<refresh_token>"   )   client = Client(auth)       Authentication on sand...
ETL, big-data, cloud(AWS/GCP/Azure) technologies and possibly share random stuff along the way!!