This is a library that allow an easy and friendly connection with an Odoo ERP instance on Pyhton 2.x
Project description
Easy Connector with Odoo ERP!
This is a library that allow an easy and friendly connection with an Odoo ERP instance on Pyhton 2.x
Installation using PIP command
- Use the command
$ pip install odoo-connector
How to use connect
from odoo.connectors import OdooConnector
odoo = OdooConnector(endpoint='your-odoo-endpoint', dbname='your-odoo-dbname', username='your-odoo-user', password='your-odoo-password')
uid = odoo.connect()
Hot to add, edit and delete ( using the method write() )
from odoo.connectors import OdooConnector
odoo = OdooConnector(endpoint='your-odoo-endpoint', dbname='your-odoo-dbname', username='your-odoo-user', password='your-odoo-password')
uid = odoo.connect()
# create a new partner
data = [{'name': 'Test User', 'email': 'test@domain.com'}]
result = odoo.write(uid=uid, model='res.partner', action='create', data=data)
# edit partner
id = 1 # change the value for the any do you want
data = [[id], {'name': 'Test User', 'email': 'test@domain.com'}]
result = odoo.write(uid=uid, model='res.partner', action='write', data=data)
# delete partner
id = 1 # change the value for the any do you want
data = [id]
result = odoo.write(uid=uid, model='res.partner', action='unlink', data=data)
# create a new user
data = [{'login': 'test@domain.com', 'name': 'Test User', 'password': '123456'}]
result = odoo.write(uid=uid, model='res.users', action='signup', data=data)
Hot to search, search_read and read ( using the method search() )
from odoo.connectors import OdooConnector
odoo = OdooConnector(endpoint='your-odoo-endpoint', dbname='your-odoo-dbname', username='your-odoo-user', password='your-odoo-password')
uid = odoo.connect()
query = [[['is_company', '=', True], ['customer', '=', True]]]
fields = ['name', 'email', 'country_id']
# using the search method
result = odoo.search(uid=uid, model='res.partner', action='search', queries=query, parameters=None)
# using the search with pagination
parameters = {'offset': 5, 'limit': 10}
result = odoo.search(uid=uid, model='res.partner', action='search', queries=query, parameters=parameters)
# using the search_count
odoo.search(uid=uid, model='res.partner', action='search_count', queries=query)
# using the read method
ids = odoo.search(uid=uid, model='res.partner', action='search', queries=query, parameters={'limit': 1})
if len(ids) > 0:
result = self.odoo.search(
uid=uid, model='res.partner', action='read', queries=ids, parameters={'fields': fields} formatted=True)
# The "formatted" attribute allow format the result in a JSON object, this is a boolean attribute by default is False
# using the search_read method with parameters.
result = odoo.search(
uid=uid, model='res.partner', action='search_read', queries=query, parameters={'fields': fields, 'limit': 2}, formatted=True)
The search and write methods were tested with all methods allowed on the External API Documentation from Odoo website and the write() and search() methods can work with any methods from any models existing on Odoo instance
Releases notes:
- 1.0.0: Initial and stable version connection.
- 1.0.1: README.md file updated.
- 1.0.2: Bugs fixed related with the encodings on the ServerProxy connection.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
odoo_connector-1.0.3.tar.gz
(4.1 kB
view details)
File details
Details for the file odoo_connector-1.0.3.tar.gz
.
File metadata
- Download URL: odoo_connector-1.0.3.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.2 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2555d05f916cde034cc8c86a591aaedc01ffb99ebee1ecf36b64cc8b94f57d79 |
|
MD5 | 13f3384e9eb2d6c47d1e8bfcabaf04c8 |
|
BLAKE2b-256 | 62d2d7b5e53dc696f8b355867565cf32a00d5a8b179808f4e9d0524b2610ec25 |