I am trying to create my first site in Django and as I\'m looking for example apps out there to draw inspiration from, I constantly stumble upon a term called \"reusab
In general, the only thing required to use a reusable app is to make sure it's on sys.path
, so that you can import it from Python code. In most cases (if the author follows best practice), the reusable app tarball or bundle will contain a top-level directory with docs, a README, a setup.py
, and then a subdirectory containing the actual app (see django-voting for an example; the app itself is in the "voting" subdirectory). This subdirectory is what needs to be placed in your Python path. Possible methods for doing that include:
pip install appname
, if the app has been uploaded to PyPI (these days most are)setup.py install
(this has the same result as pip install appname
, but requires that you first download and unpack the code yourself; pip will do that for you)setup.py install
or pip install appname
with that virtualenv active, or placing or symlinking the app in the virtualenv's site-packages (highly recommended over all the "global installation" options, if you value your future sanity)You'll know you've got it in the right place if you can fire up a Python interpreter and "import voting" (for example) without getting an ImportError.
On a server where you have FTP access only, your only option is really the last one, and they have to set it up for you. If they claim to support Django they must provide some place where you can upload packages and they will be available for importing in Python. Without knowing details of your webhost, it's impossible to say how they structure that for you.