Try adding an empty __init__.py file into your DB folder. This marks the DB folder as a 'package' and allows you to import modules from it. More info at: http://www.python.org/doc/2.5.2/tut/node8.html
On Jan 13, 2:09 am, arnie <[email protected]> wrote: > Hi all > I have three folders > BusinessList > Conversion > DB > > First two folders contains one WSGI app [no UI] each. The last folder > contains a datta model [2 tables with 1- to Many relationship] > Each WSGI app accesses the data model in DB folder. My problem is that > If I place the data model file in DB folder then none of the wsgi app > is able to locate it. If I copy the datamodel file in each of the wsgi > folder, it works > My urgent requirement is to access the data model file in DB folder? > What should I do? > All the three folders are in C:\APP\ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
