Skip to content
Snippets Groups Projects
Commit 9045a45b authored by Florent Aide's avatar Florent Aide
Browse files

Fixed typos and approximations

parent 92383f08
No related branches found
No related tags found
No related merge requests found
OEC Module
==========
This programm is created to insert data in OpenERP. For example a client database.
This programm does not store values in memory, the values are generated on the fly.
This programm is created to insert data in OpenERP. For example a client
database.
This programm does not store values in memory, the values are read and
consumed on the fly.
First step
----------
......@@ -6,9 +8,15 @@
First step
----------
Install the pyhton package with python setup.py develop or install
Install the python package with::
python setup.py develop
or::
python setup.py install
Second step
-----------
......@@ -11,7 +19,12 @@
Second step
-----------
Copy oec.conf-sample to oec.conf
Edit oec.conf
Copy oec.conf-sample to oec.conf::
cp oec.conf-sample oec.conf
Edit oec.conf and set the server, username, password and openerp database.
Here is a resulting example::
......@@ -17,6 +30,4 @@
In this file, define the server, a user name and a password to accees Openerp database.
ex:
name= 127.0.0.1
port = 8069
name= 127.0.0.1
port = 8069
......@@ -22,4 +33,4 @@
username = admin
password = *******
username = admin
password = yourpassword
......@@ -25,6 +36,6 @@
database = CRM
database = CRM
Third step
----------
......@@ -27,7 +38,16 @@
Third step
----------
Launch the oec programm.
Use -h to see to see args.
ex : oec -c oec.conf -i example/crmleads_create.json -t crm.lead -m create
Launch the oec program::
oec -c oec.conf -i example/crmleads_create.json -t crm.lead -m create
Oec can also consume data from STDIN instead of a filename::
cat example/crmleads_create.json | oec -c oec.conf -t crm.lead -m create
For more information about the command line arguments run::
oec --help
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment