v0.10 - Salesforce and other small enhancements.
Feature Additions:
- New Salesforce Class with the following methods:
Salesforce.query()
Salesforce.insert_record()
Salesforce.update_record()
Salesforce.upsert_record()
Salesforce.delete_record()
- Added
VAN.delete_supporter_groups()
method - Added ability to pass RSA key for
SFTP
connector. (h/t @angloyna for PR) - Added
Table.column_data()
method that returns data in a column as a list. - Improved
Table
indexing. To access a column pass in the column name as a string (e.g.tbl['a']
) and to access a row, pass in the row index as an integer (e.g.tbl[1]
). - Added environmental setup documentation
- Removed MobileCommons connector temporarily as their API is not functioning and they are developing a new version.
- Added the ability to delete original file when running
S3.transfer_bucket()
- Various
Redshift
andAirtable
bug fixes.