Re: Integrating third parties script within django

2007-04-11 Thread [EMAIL PROTECTED]
On 11 avr, 07:33, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > If you are integrating a 3rd party library or script into a django (or > ANY python) project, it needs to be available on the python > interpreter's path. It sounds like you are getting hung up on the > mechanics of python's pac

Re: Integrating third parties script within django

2007-04-10 Thread [EMAIL PROTECTED]
If you are integrating a 3rd party library or script into a django (or ANY python) project, it needs to be available on the python interpreter's path. It sounds like you are getting hung up on the mechanics of python's package/module rules. I would suggest familiarizing yourself with http://docs

Re: Integrating third parties script within django

2007-04-10 Thread Nicolas Steinmetz
Nicolas Steinmetz wrote: > > Hello, > > I read Flickr Integration page on wiki [1] and I see that the third > parties script FlickrClient was called through "from > project.directory.file import module" > > I tried the same with another lib in my views.py file but it does not work > : > > Vie

Integrating third parties script within django

2007-04-09 Thread Nicolas Steinmetz
Hello, I read Flickr Integration page on wiki [1] and I see that the third parties script FlickrClient was called through "from project.directory.file import module" I tried the same with another lib in my views.py file but it does not work : ViewDoesNotExist at / Could not import project.app.v