On Aug 28, ercan eraslan <[EMAIL PROTECTED]> wrote: > Now i am wondering about it is possible with imdbpy to write a code > and select some data get them and insert into my database tables?
Hi! It's certainly possible, but it depends on what you need. Out-of-the-box, IMDbPY can handle the whole set of plain text data files [1] distributed by IMDb, and put the data in a SQL database (more or less all the major database servers are supported, actually through SQLObject). You do that with the imdbpy2sql.py script (see README.sqldb.txt [2]) But maybe you already have a database structure, and it doesn't fit with the one used by IMDbPY... Another solution can be this: use IMDbPY only to retrieve information about the movies you need (from the plain text data files or directly from the web site). To do this, you have to write a simple python script (I'm sure there is a .NET implementation) and call it from your C# program. There are a lot of ways to do this, but it's up to you to chose the one that match your needs. HTH. Feel free to ask, if you have any doubts. +++ [1] http://imdb.com/interfaces/ [2] http://imdbpy.sf.net/docs/README.sqldb.txt -- Davide Alberani <[EMAIL PROTECTED]> [PGP KeyID: 0x465BFD47] http://erlug.linux.it/~da/ ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Imdbpy-help mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/imdbpy-help
