Hey Thomas,

I'm not sure if you're on a deadline or what-not; but these are usually the
kinds of apps I develop (personally) for fun. For example, you can extend
your code-base to scan the images to pull in its EXIF data and what-not.

If you're on a deadline, there's multiple Django Applications you could
probably tie together to get decent results relatively quickly. Django
Tags, Haystack (for search), and maybe Django Guardian for the permissions
(although I like going custom here). Thumbnails might also be helpful.

One thing I would recommend is writing a Django Management "Script" to scan
your library and synchronize it instead of relying on the built-in "File
Upload Handlers" since you've already got the files on your disk and it
would be insanely inefficient to Upload Them One by One to you own server
(I doubt that was your idea, though).

I'm not sure about the syncing of tags between the GUI and Web Application;
I think that would completely depend on your ability to export or otherwise
use the tags created by the GUI application. If you can figure out how to
get ahold of that data and parse it, then I'm sure it wouldn't be too
difficult to re-use it.

Good luck!

On Fri, Oct 12, 2012 at 10:32 AM, Thomas Guettler <h...@tbz-pariv.de> wrote:

> I have 40k photos (jpg) on my ubuntu PC and want to share them with my
> friends and
> family.
>
> I searched for a django app which can sync with a local application like
> digikam or shotwell. But none
> seem to be alive.
>
> Which django app do you use for photos?
>
> It would be great, if I could sync tags and notes between the GUI and the
> web app.
>
> I need these features:
>  - tags
>  - notes
>  - star rating
>  - access control: A user must only see these pictures which match to his
> groups/permissions.
>  - search by tag and date.
>
>
> Regards,
>   Thomas Güttler
>
>
>
>
> --
> Thomas Guettler, http://www.thomas-guettler.de/
> E-Mail: guettli (*) thomas-guettler + de
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to django-users+unsubscribe@**
> googlegroups.com <django-users%2bunsubscr...@googlegroups.com>.
> For more options, visit this group at http://groups.google.com/**
> group/django-users?hl=en<http://groups.google.com/group/django-users?hl=en>
> .
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to