Re: Python inside Django

2013-03-23 Thread Shawn Milochik
You can completely eliminate Django from your thinking about the problem. This is a pure Python question. A Python file being within a Django project changes nothing about how Python imports code. Either you're importing something on your Python path or you're doing a relative import. If your

Python inside Django

2013-03-23 Thread Felix Wagner
Hello, currently I am writing an application that will run a daemon. However I am stuck: What I have so far: created a project called "ihe", with an app called "devices". Inside devices there is "admin.py", "forms.py", "__init__.py", "models.py", "urls.py", "views.py". There are also several