Sugar CRM API wrapper written in python.
pip install sugarcrm-python
from sugarcrm.client import Client
client = Client('SERVER_URL', 'USERNAME', 'PASSWORD', version='8.3')
Get leads
client.get_leads()
Create leads
client.create_lead()
- requests
python tests/test_client.py
We are always grateful for any kind of contribution including but not limited to bug reports, code enhancements, bug fixes, and even functionality suggestions.
You can report any bug you find or suggest new functionality with a new issue.
- Fork it ( https://github.com/GearPlug/sugarcrm-python )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Adds my new feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request