ERPpeek is a Python client library for OpenERP / Odoo, with a command-line interface for debugging and data access. The current version is 1.7.2. The project is not maintained; the recommended successor is Odooly.
pip install erppeekVerified import paths — ran on the pinned version, not inferred.
Basic client initialization and a simple search.
Switch to Odooly (pip install odooly) and update import to `from odooly import Odoo`.
Use positional arguments: Client('http://localhost:8069', 'db_name', 'username', 'password')Use client.search(model, domain) then client.read(model, ids) instead of search_read.
Run `pip install erppeek` and ensure your environment is correct.
Use correct signature: Client('http://localhost:8069', 'db', 'user', 'password')Verify Odoo instance running, database exists, and credentials correct.