Socket
Socket
Sign inDemoInstall

django-photos

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-photos

This is a simple photo-app for django.


Maintainers
1

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

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc