Login

Paths in Django settings relative to settings.py

Author:
zejn
Posted:
October 15, 2007
Language:
Python
Version:
.96
Score:
6 (after 6 ratings)

This is an example how to use relative paths in settings file, but still keep settings readable.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
# first example
import os
here = lambda x: os.path.join(os.path.abspath(os.path.dirname(__file__)), x)

# usage
MEDIA_ROOT = here('media')

# second example, cross platform
import os
here_cross = lambda x: os.path.join(os.path.abspath(os.path.dirname(__file__)), *x)

# usage
MEDIA_ROOT = here_cross(('files','media'))

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 3 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

akaihola (on March 10, 2009):

Even more convenient:

here = lambda *x: os.path.join(os.path.abspath(os.path.dirname(__file__)), *x)

# usage
MEDIA_ROOT = here('files', 'media')

#

Please login first before commenting.