~nhomar/+junk/CursoCTPMarzo2014

« back to all changes in this revision

Viewing changes to openacademy/xml-rpc/ejercicioOerpLib.py

  • Committer: Nhomar - Vauxoo
  • Date: 2014-03-07 06:02:09 UTC
  • Revision ID: nhomar@gmail.com-20140307060209-ofdoaeixrbb7232k
[IMP] ejemplo oerplib

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import oerplib
 
2
 
 
3
# Prepare the connection to the OpenERP server
 
4
oerp = oerplib.OERP('localhost', protocol='xmlrpc', port=8069, version="7.0")
 
5
 
 
6
 
 
7
print oerp.db.list()
 
8
 
 
9
# Login (the object returned is a browsable record)
 
10
user = oerp.login('admin', '1', 'reportes')
 
11
 
 
12
print user
 
13
print user.name
 
14