Browse Source

Add the code for generating the LeObject API python code in the README.md

Yann Weber 9 years ago
parent
commit
583af5071d
1 changed files with 22 additions and 0 deletions
  1. 22
    0
      README.md

+ 22
- 0
README.md View File

12
   mysql
12
   mysql
13
   > CREATE DATABASE `lodel2`  CHARACTER SET utf8 COLLATE utf8_general_ci;
13
   > CREATE DATABASE `lodel2`  CHARACTER SET utf8 COLLATE utf8_general_ci;
14
   > GRANT ALL ON `lodel2`.* TO "lodel"@"localhost";
14
   > GRANT ALL ON `lodel2`.* TO "lodel"@"localhost";
15
+
16
+** Generate the code for LeObject API
17
+
18
+```python
19
+# -*- coding: utf-8 -*-
20
+
21
+from EditorialModel.model import Model
22
+from leobject.lefactory import LeFactory
23
+from EditorialModel.backend.json_backend import EmBackendJson
24
+from leobject.datasources.ledatasourcesql import LeDataSourceSQL
25
+
26
+OUTPUT = 'leobject/dyn.py'
27
+
28
+em = Model(EmBackendJson('EditorialModel/test/me.json'))
29
+
30
+pycode = LeFactory.generate_python(EmBackendJson, {'json_file':'EditorialModel/test/me.json'}, LeDataSourceSQL, {})
31
+
32
+print(pycode)
33
+
34
+with open(OUTPUT, 'w+') as fp:
35
+    fp.write(pycode)
36
+```

Loading…
Cancel
Save