Daniel C. wrote: > I've never used swig before and have never written anything > substantial in Python. Any help that anyone can give here would be > vastly appreciated.
You might consider using the Python ctypes module, which is now standard in Python 2.5. The ctypes module lets you call C functions directly from Python without any wrapper library. This is the route I would try first, personally, since it would get something minimal working quickly. Shane /* PLUG: http://plug.org, #utah on irc.freenode.net Unsubscribe: http://plug.org/mailman/options/plug Don't fear the penguin. */
