Download and install instructions

Python Package Index (PyPI)

You can install OERPLib with the easy_install tool:

$ easy_install oerplib

Or with pip:

$ pip install oerplib

An alternative way is to download the tarball from Python Package Index page, and install manually (replace X.Y.Z accordingly):

$ wget http://pypi.python.org/packages/source/O/OERPLib/OERPLib-X.Y.Z.tar.gz
$ tar xzvf OERPLib-X.Y.Z.tar.gz
$ cd OERPLib-X.Y.Z
$ python setup.py install

No dependency is required.

Source code

The project is hosted on Launchpad. To get the current development branch, just type:

$ bzr branch lp:oerplib

For the last version of a stable branch (replace X.Y.Z accordingly):

$ bzr branch lp:oerplib/X.Y

Run tests

New in version 0.4.0.

To run unit tests from the project directory, run the following command:

PYTHONPATH=. ./tests/runtests.py --help

Set your parameters in order to indicate the OpenERP server on which you want to perform the tests, for instance:

PYTHONPATH=. ./tests.runtests.py --server 192.168.1.4 --netrpc_port 8071

Table Of Contents

Previous topic

Welcome to OERPLib’s documentation!

Next topic

Tutorials

This Page