Skip to main content

API wrapper for Odoo CRM written in Python

Project description

# odoocrm-python

odoocrm is an API wrapper for Odoo CRM written in Python

## Installing
```
pip install odoocrm-python
```

## Usage
```
from odoocrm.client import Client

client = Client('URL', 'DATABASE', 'USERNAME', 'PASSWORD')
```

Search partner
```
response = client.search_partner([[['is_company', '=', True], ['customer', '=', True]]], {'offset': 10, 'limit': 5})
```

Read partner
```
response = client.read_partner([1, 2], {'fields': ['name', 'country_id', 'comment']})
```

Create partner
```
response = client.create_partner([{'name': "John doe",}])
```

## Requirements
- requests

## Tests
```
python tests/test_client.py
```

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

odoocrm-python-0.1.tar.gz (2.5 kB view hashes)

Uploaded Source

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