معرفی شرکت ها


django-last-seen-0.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Keep track of when a user has been last seen
ویژگی مقدار
سیستم عامل -
نام فایل django-last-seen-0.3
نام django-last-seen
نسخه کتابخانه 0.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Ferran Pegueroles
ایمیل نویسنده ferran@pegueroles.com
آدرس صفحه اصلی http://bitbucket.org/ferranp/django-last-seen
آدرس اینترنتی https://pypi.org/project/django-last-seen/
مجوز GPL
================ django-last-seen ================ Keep trak of when a user has been last seen on a website. The last seen time is kept on the database The app is ready for django 1.5, it uses the AUTH_USER_MODEL setting to get the user model, Installation ============ #. Install with ``pip install django-last-seen"`` or add ``"last_seen"`` directory to your Python path. #. Add ``"last_seen"`` to the ``INSTALLED_APPS`` tuple found in your settings file. #. Add 'last_seen.middleware.LastSeenMiddleWare' to MIDDLEWARE_CLASSES tuple found in your settings file. #. Run ``manage.py syncdb`` to create the new tables Usage ===== To get when a user has been last seen:: from last_seen.model import LastSeen seen = LastSeen.object.when(user=user) To save a last seen user without the middleware:: from last_seen.model import LastSeen # save with a special module LastSeen.object.when(user=user, module='forum') Middleware ========== The provided middleware keeps track of when an authenticated user has been last seen on the site, If you want to keep track of a user last seen on a part of a site, you can use a special module name and use:: from last_seen.model import LastSeen # save with a special module LastSeen.object.when(user=user, module='forum') Then to get the data:: from last_seen.model import LastSeen # user last seen on any part of the site seen = LastSeen.object.when(user=user) # user last seen on a module seen = LastSeen.object.when(user=user, module='forum') Settings ======== LAST_SEEN_DEFAULT_MODULE The default module used on the middleware. The default value is ``default``. LAST_SEEN_INTERVAL How often is the last seen timestamp updated to the database. The default is 2 hours.


نحوه نصب


نصب پکیج whl django-last-seen-0.3:

    pip install django-last-seen-0.3.whl


نصب پکیج tar.gz django-last-seen-0.3:

    pip install django-last-seen-0.3.tar.gz