]> hydra-www.ietfng.org Git - dyna2/commit
First pass at "bulk loader" API -- at the moment loading is only supported at
authortimv <tim.f.vieira@gmail.com>
Mon, 17 Jun 2013 01:42:15 +0000 (21:42 -0400)
committerNathaniel Wesley Filardo <nwf@cs.jhu.edu>
Tue, 18 Jun 2013 01:24:16 +0000 (21:24 -0400)
commit8922920572018b2be78df06a9781d4f80c7ff0e4
tree4a95014e140b1d112ac324545a5a99b31621c917
parent133a4f39e3aa512210498bf655b6e57d28c81a3d
First pass at "bulk loader" API -- at the moment loading is only supported at
the REPL (cmd-line interface coming soon).

 - Read tsv/csv format

 - matrix-like

 - S-Expression - work in progress

Exceptions and errors handlers live in their on module.

Added `pycall` -- a more convenient way to do `eval` and `mod`
examples/cky.dyna
src/Dyna/Backend/Python/Backend.hs
src/Dyna/Backend/Python/chart.py
src/Dyna/Backend/Python/errors.py [new file with mode: 0644]
src/Dyna/Backend/Python/interpreter.py
src/Dyna/Backend/Python/loadmat.py [new file with mode: 0644]
src/Dyna/Backend/Python/repl.py
src/Dyna/Backend/Python/sexpr.py [new file with mode: 0644]
src/Dyna/Backend/Python/term.py
src/Dyna/Backend/Python/tsv.py [new file with mode: 0644]
src/Dyna/Backend/Python/utils.py