django-photos 0.2.10
This is a simple photo-app for django.
Installation
Install django-photos via pip from the repository:
pip install -e hg+http://bitbucket.org/feuervogel/django-photos#egg=django-photos
or from pypi:
pip install django-photos
It comes with django, pil, easy_thumbnails and django-taggit.
Add all apps to your INSTALLED_APPS in your settings.py:
INSTALLED_APPS = (
# ...,
'photos',
'taggit',
'easy_thumbnails',
# ...,
)
Run python manage.py syncdb to sync the database:
python manage.py syncdb
Take care that MEDIA_ROOT and MEDIA_URL are set and the files are served.
Finally add photos.urls to your urls.py:
urlpatterns = patterns('',
# ...,
(r'^photos/', 'photos.urls'),
# ...,
)
For more information read the (not yet available) docs.
News
Versioning is in the major-minor-micro-style. Only minor updates are mentioned here, because micro-Versions include bugfixes only.
0.2
Release date: 30-Sep-2010
- Security enhancements (security by obscurity)
- Bugfixes (deleting model instance deletes all thumbnail variants from disk)
- Photo.name will be calculated from filename if not given.
- Admin has a thumbnail now
0.1
Release date: 28-Sep-2010
- Basic functionality
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| django-photos-0.2.10.tar.gz (md5) | Source | 2010-10-08 | 19KB | 543 | |
- Author: Julian Moritz
- Home Page: http://www.bitbucket.org/feuervogel/django-photos
- Keywords: django photo gallery
- License: BSD
- Categories
- Package Index Owner: feuervogel
- DOAP record: django-photos-0.2.10.xml
