├── EXAMPLES ├── FUTURE ├── HACKS ├── LICENSE ├── README ├── TODO ├── setup.py ├── sforce ├── __init__.py ├── base.py ├── enterprise.py └── partner.py └── tests ├── test_base.py ├── test_config.py ├── test_enterprise.py └── test_partner.py /EXAMPLES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/EXAMPLES -------------------------------------------------------------------------------- /FUTURE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/FUTURE -------------------------------------------------------------------------------- /HACKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/HACKS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/TODO -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/setup.py -------------------------------------------------------------------------------- /sforce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/sforce/__init__.py -------------------------------------------------------------------------------- /sforce/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/sforce/base.py -------------------------------------------------------------------------------- /sforce/enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/sforce/enterprise.py -------------------------------------------------------------------------------- /sforce/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/sforce/partner.py -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/tests/test_enterprise.py -------------------------------------------------------------------------------- /tests/test_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayCitizen/salesforce-python-toolkit/HEAD/tests/test_partner.py --------------------------------------------------------------------------------