[Tutor] Best IDE for Python

2007-01-24 Thread Shadab Sayani
Hi, I am using vim editor to code my project in python.Is there a good IDE where in I type the name of the class object and then dot then all the attributes of the object are displayed so on.I tried to install IDLE but I have no idea how to install tkinter? Any help that enables me to us

[Tutor] Optimal solution in dealing with huge databases in python

2007-01-24 Thread Shadab Sayani
Hi, I am working in a biodatabases project.The data I need to deal with is in 100s of GB.I am using postgresql backend and SQLALCHEMY ORM.I need to read the bio datafiles and parse them and then store them in database.I am in the process of storing them. I used the session,flush concept i

Re: [Tutor] Optimal solution in dealing with huge databases in python

2007-01-25 Thread Shadab Sayani
. Do have any idea about the C api for Postgresql and some documentation to use it? Thanks and Regards, Shadab. --- Alan Gauld <[EMAIL PROTECTED]> wrote: > "Shadab Sayani" <[EMAIL PROTECTED]> wrote > > > The data I need to deal with is in 100s of GB. > > I am

Re: [Tutor] Optimal solution in dealing with huge databases in python

2007-01-25 Thread Shadab Sayani
e: On Wednesday 24 January 2007 19:22, Shadab Sayani wrote: > Hi, > I am working in a biodatabases project.The data I need to deal with is > in 100s of GB.I am using postgresql backend and SQLALCHEMY ORM.I need to > read the bio datafiles and parse them and then store them in database.I a

[Tutor] Compiling a program ::Embedding Python in C

2007-02-12 Thread Shadab Sayani
Hi, I have a C program mm.c calling python function as follows:: #include "Python.h" #include int main(int argc, char* argv[]) { double answer = 0; PyObject *modname, *mod, *mdict, *func, *stringarg, *args, *rslt; Py_Initialize(); modname = PyString_FromString("Test")

Re: [Tutor] Compiling a program ::Embedding Python in C

2007-02-13 Thread Shadab Sayani
which is actually processed in python module. Thanks, Shadab. --- Rikard Bosnjakovic <[EMAIL PROTECTED]> wrote: > On 2/13/07, Shadab Sayani <[EMAIL PROTECTED]> > wrote: > > [...] > > > /usr/local/lib/python2.4/config/libpython2.4.a(dynload_shlib.o)(.text+

[Tutor] Reg Google Web Toolkit and Python

2007-02-16 Thread Shadab Sayani
Hi , We have a project where I need to read files store them in database in the backend.We have done this in python.Now we decided to use Ajax technique for user interface.For that we found that GWT is one of the best toolkits.Now I got a doubt can I interface GWT with python. Thanks , Shadab. Sen

[Tutor] Reading compressed files

2007-02-20 Thread Shadab Sayani
Hi, I have compressed files compressed using different techniques (especially unix compress). So I want to have a module that reads any of these (.Z,.bz,.tgz files) files and manipulates the data. The data has a syntax.It contains HEADER (some information) BODY (some information)