Skip to main content

A simple connector to the AMIV SugarCRM

Project description

Connector to the AMIV SugarCRM

SugarCRM provides a SOAP and a REST api. At the time this tool was written the REST api was unfortunately not available. Therefore SOAP is used.

The python library suds is used, more exactly the fork by jurko.

Installation

pip install amivcrm

Usage

You will need a soap username and password. You can find them in the AMIV Wiki. After you got the credentials, its as easy as this:

from amivcrm import AMIVCRM

CRM = AMIVCRM(username, password)
# Optional: Specify `url` and/or `appname`
# CRM = AMIVCRM(username, password, url="...", appname="...")

# Get Companies
CRM.get('Accounts')

# Select only certain fields
# Filter and order with SQL statements
CRM.get('Accounts',
    # Only companies participating in job fair
    query="accounts_cstm.messeteilnahme_c = 1",
    # Order alphabetically
    order_by="accounts.name",
    # Return Name and ID only
    select_fields=['name', 'id'])

# Get a single company by id
CRM.getentry('Accounts', '505404b1-1851-1472-d63e-4d829377e30b',
             # Optional: Limit the returned fields as well
             select_fields=['name'])

# Get a company only if  modified after given date
entry_id = '505404b1-1851-1472-d63e-4d829377e30b'
date = '2016-03-20 08:05:39'
# Be careful to use quotes in query
query = ("accounts.id = '%s' and accounts.date_modified >= '%s'"
         % (entry_id, date))
CRM.get('Accounts', query=query)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

amivcrm-0.2.0.tar.gz (3.1 kB view details)

Uploaded Source

Built Distribution

amivcrm-0.2.0-py3-none-any.whl (3.4 kB view details)

Uploaded Python 3

File details

Details for the file amivcrm-0.2.0.tar.gz.

File metadata

  • Download URL: amivcrm-0.2.0.tar.gz
  • Upload date:
  • Size: 3.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for amivcrm-0.2.0.tar.gz
Algorithm Hash digest
SHA256 c27cdc6608b19f20c5396dde136d95cae6f4d784f6618e1666a6574d1990b275
MD5 febcb07257c00d2d41562d7f9ebc5ce6
BLAKE2b-256 2f48a31acd5d99e7d7933fe4a1bcc428819a1b65046d42364d67d32d42eaf2c8

See more details on using hashes here.

File details

Details for the file amivcrm-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for amivcrm-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cf2d258483a4ad6cdd082cb2dff6824b4c86551fff1c541979c50ab17c41e535
MD5 d020e515102d46eb54e8388438b1e5e3
BLAKE2b-256 0e3a46d602c7963cdf9817313f5d95cde26d61149e606511f59034439e315c29

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page