mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-07 00:01:12 -04:00
0fb425ac1f
edited tutorial.txt, added particles, etc. added clue that firebird might be supported to dbengine.myt
22 lines
374 B
Python
22 lines
374 B
Python
#!/usr/bin/env python
|
|
import sys,re,os
|
|
|
|
print "Running txt2myt.py..."
|
|
execfile("txt2myt.py")
|
|
|
|
component_root = [
|
|
{'components': './components'},
|
|
{'content' : './content'}
|
|
]
|
|
doccomp = ['document_base.myt']
|
|
output = os.path.dirname(os.getcwd())
|
|
|
|
sys.path = ['../../lib', './lib/'] + sys.path
|
|
|
|
import documentgen
|
|
|
|
documentgen.genall(doccomp, component_root, output)
|
|
|
|
|
|
|