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.python.org/tut/node8.html - particularly the section titled "The Module Search Path". In my opinion the documentation leaves out a few key points so I would also recommend reading section 4.1 here: http://docs.python.org/inst/search-path.html
Put Django aside for a second, you should be able to fire up a python interpreter and type >> import <the_3rd_party_module> if you have set it up correctly the module will import successfully, if not you will receive an error. Hope that helps. On Apr 10, 7:18 pm, Nicolas Steinmetz <[EMAIL PROTECTED]> wrote: > 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 > > : > > > ViewDoesNotExist at / > > Could not import project.app.views. Error was: No module named lib.flickr > > > As flickr.py file is in /home/django/project/lib/ > > > So how can I integrate such a third parties lib within Django ? > > If I copy/paste the __init.py__ file from one of my app to lib/ and set > project.lib as installed apps, I now have : > > >>> from project.lib.flickr import flickr > > Traceback (most recent call last): > File "<console>", line 1, in <module> > ImportError: cannot import name flickr > > where I was used to have : > > >>> from project.lib.flickr import flickr > > Traceback (most recent call last): > File "<console>", line 1, in <module> > ImportError: No module named lib.flickr --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---