OERPLib 0.8.1 released!

Written for OERPLib by Sébastien Alix on 2014-03-04

OERPLib is a full Python client library to OpenERP server.
It aims to provide an easy way to remotely pilot an OpenERP server through RPC.

Features supported:
        - XML-RPC and (legacy) Net-RPC protocols,
        - access to all methods proposed by an OpenERP model class
          (even 'browse') with an API similar to the server-side API,
        - ability to use named parameters with such methods (OpenERP >= 6.1),
        - user context automatically sent (OpenERP >= 6.1) providing support
          for internationalization,
        - browse records,
        - execute workflows,
        - manage databases,
        - reports downloading,
        - inspection capabilities (graphical output of relations between models and
          dependencies between modules, list ``on_change`` methods from model
          views, ...).

Changes in the 0.8.1 release:
    Minor improvements:
    - 'OERP.inspect.relations()' method: display root models in red by default,
    - 'OERP.inspect.relations()' method: add a 's' flag on fields.function
      which are searchable (#1272660),
    - 'OERP.inspect.dependencies()' method: display module names in
      lowercase.
    Bug fixes:
    - 'OERP.inspect.dependencies()' method: unable to find an indirect
      dependency (bug #1265860),
    - 'OERP.inspect.relations()' method: relationships of starting models
      are not all displayed (bug #1287833),
    - Error when using the NetRPC protocol without specifing the 'version'
      parameter (bug #1267188),
    - On 'browse_record' objects, error when using += and -= operators on
      empty one2many and many2many fields (bug #1284768 ).

Read more

Read all announcements