{ "info": { "author": "Lukasz Langa", "author_email": "lukasz@langa.pl", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows :: Windows NT/2000", "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "==========\nlck.django\n==========\n\nThis library consists of various Django-related routines that extend or modify\nthe behaviour of the framework:\n\n * lots of composable abstract models to use\n\n * a user activity log app storing users' IP addresses and user agents (useful\n for hunting down multi-accounts)\n\n * a ``score`` app enabling users on websites to vote on objects\n\n * a ``tags`` app which supports tagging by users and localized tags\n\n * a ``badges`` app which enables users to receive badges for actions on the\n website\n\n * extensions for ``settings.py`` (current directory resolution, namespace\n package support, settings profile support)\n\n * typical filters, template tags, form fields, etc.\n\nComplete documentation for the package can be found here:\n\n http://packages.python.org/lck.django/\n\nThe latest version can be installed via `PyPI\n`_::\n\n $ pip install lck.django\n \nor::\n\n $ easy_install lck.django\n\n\nThe `source code repository `_ and `issue\ntracker `_ are maintained on\n`GitHub `_.\n\nThis package bundles some royalty free static images that are useful in almost\nevery Django project:\n\n * `Silk icons 1.3 by FamFamFam `_\n - requires attributing the author\n\n * `Silk Companion 1 by Damien Guard\n `_ - requires\n attributing the author\n\n * `Country Flags by SenojFlags.com `_ - requires\n using the following HTML::\n\n Country flag image from \n Flags of all Countries\n\nFor the curious, ``lck`` stands for LangaCore Kit. LangaCore is a one man\nsoftware development shop of mine.\n\n**Note:** ``lck.common`` requires **Python 2.7** because all of its code is using\nthe so-called four futures (``absolute_imports``, ``division``, ``print_function``\nand ``unicode_literals``). One of the virtues in the creation of this library\nis to make the code beautiful. These switches give a useful transitional\nstate between the old Python 2.x and the new Python 3.x. You should use them as\nwell.\n\n**Note:** Since 0.5.0 ``lck.django`` requires **Django 1.3** because\nit makes my monkey-patching efforts much easier. Moreover, 1.3 nicely deprecates\nbehaviour which I consider ugly.\n\n\nHow to run the tests\n--------------------\n\nThe easiest way would be to run::\n\n $ DJANGO_SETTINGS_MODULE=\"lck.dummy.settings\" DJANGO_SETTINGS_PROFILE=\"test\" django-admin.py test\n\nThis command runs the internal Django tests as well and that's fine because\nthere are monkey patches and other subtleties that should better be tested for\npotential breakage.\n\nThe dummy project is also used as an example of setting up a Django project.\nHowever, it seems Django tests are not happy with some changes to the settings\nso we're using the ``test`` profile (which loads overrides from\n``settings-test.py``) to avoid that.\n\n\nChange Log\n----------\n\n0.8.10\n~~~~~~\n\n* ``profile`` now properly rolls back a failed transaction in\n ``create_a_user_profile_ignoring_dberrors()`` (fixes initial syncdb's\n superuser creation on PostgreSQL)\n\n* introduced automatic resolution of dependencies for initial migration. If\n you use ``activitylog``, ``badges``, ``score`` or ``tags``, unless you're\n using the plain ``auth.User``, their initial migrations depend on your\n profile module being ready. Migrations currently depend on the initial\n migration of your respective ``ACTIVITYLOG_PROFILE_MODEL``,\n ``EDITOR_TRACKABLE_MODEL``, ``SCORE_VOTER_MODEL`` or ``TAG_AUTHOR_MODEL``. If\n those migrations should depend on a different migration or none, new settings\n have been added.\n\n0.8.9\n~~~~~\n\n* fixed a regression from 0.8.8 in synchronous ``activitylog`` models\n\n* ``dj.choices`` requirement bumped to 0.9.2 (support for Python 2.6 - 3.3)\n\n* ``dj.chain`` requirement bumped to 0.9.2 (support for Python 2.7 - 3.3)\n\n0.8.8\n~~~~~\n\n* ``activitylog`` now properly encloses database updates in transactions\n\n* ``activitylog`` on RQ and Celery now properly handles non-null constraints on\n models\n\n* ``SessionAwareLanguageMiddleware`` simplified, now simply sets the language\n argument in the session. This requires changing middleware order: this\n middleware should come after ``SessionMiddleware`` and before\n ``LocaleMiddleware``.\n\n* The default ``INSTRUMENTATION_RULE`` is now simply ``lambda request: False``\n which makes ``TimingMiddleware`` behave better with front-end caches (if\n session is not accessed, ``Vary: Cookie`` is not set).\n\n0.8.7\n~~~~~\n\n* ``activitylog`` now sports new async modes with built-in support for RQ or\n Celery workers\n\n* minor performance updates in ``tags`` models\n\n0.8.6\n~~~~~\n\n* minor performance updates in ``activitylog`` middleware. Now behaves better\n in low-memory + slow I/O environments.\n\n0.8.5\n~~~~~\n\n* ``whois`` management command introduced to help find users by session ID\n\n* using ``User`` attributes proxied from a ``Profile`` instance no longer\n causes a query for each call\n\n0.8.4\n~~~~~\n\n* ``TimeTrackable`` models can now force marking fields as dirty with\n ``mark_dirty()`` and ``mark_clean()`` methods\n\n0.8.3\n~~~~~\n\n* ``concurrent_get_or_create`` will now raise AssertionErrors if given either\n too many fields (e.g. not all of which are unique or compose\n a unique-together constraint) or too few (e.g. fields do not form a whole\n unique-together constraint). Non-unique fields should be passed in the\n ``defaults`` keyword argument if needed at object creation time.\n\n* ``profile`` now implements automatic profile account synchronization by\n registering a post-save signal on User and creating an ``AUTH_PROFILE_MODEL``\n instance. A management command for existing applications called\n ``sync_profiles`` has been created.\n\n* Unit tests converted to unittest2 format\n\n0.8.2\n~~~~~\n\n* fixed regression from 0.8.1: removed savepoint support since the updated\n ``concurrent_get_or_create`` fails miserably on MySQL due to dogdy savepoint\n support in `MySQL-python `_\n\n0.8.1\n~~~~~\n\n* ``concurrent_get_or_create`` based on ``get_or_create`` from Django 1.4.2\n\n* ``namespace_package_support`` extended to cover ``django.utils.translation``\n as well (previously namespace-packaged projects only worked with I18N if\n ``setup.py develop`` or ``pip install -e .`` was used to install them)\n\n* ``dj.chain`` requirement bumped to 0.9.1 (supports more collective methods)\n\n0.8.0\n~~~~~\n\n* ``lazy_chain`` moved to a separate `dj.chain\n `_ package. The old interface is thus\n deprecated and will be removed in a future version.\n\n* ``activitylog`` updates: removed redundant user fields so it works again with\n ``ACTIVITYLOG_PROFILE_MODEL`` set to ``auth.User``\n\n* ``EditorTrackable`` doesn't require overriding ``get_editor_from_request``\n anymore if ``EDITOR_TRACKABLE_MODEL`` is set to a profile model instead of\n ``auth.User``\n \n* profile admin module includes a predefined ``ProfileInlineFormSet`` for\n inclusion of profile-tied models to the ``UserAdmin`` as inlines\n \n* the dummy application now passes all internal Django unit tests in versions\n 1.4.0 - 1.4.2\n\n0.7.14\n~~~~~~\n\n* ``lazy_chain``: the fix from 0.7.13 introduced a different kind of bug,\n reverted and fixed properly now. More tests included.\n\n* ``flatpages`` now serve content in the default language if the language\n requested by the browser is unavailable.\n\n* some internal cleanups\n\n0.7.13\n~~~~~~\n\n* ``lazy_chain``: when iterating over a slice, the iterator fetched one item too\n many. It didn't yield it back so the result was correct but if using\n ``xfilter()`` that caused unnecessary iteration.\n\n* ``dj.choices`` requirement bumped to 0.9.0 (choices are ``int`` subclasses,\n ``unicode(choice)`` is now equivalent to ``choice.desc``)\n\n0.7.12\n~~~~~~\n\n* namespace package support now works with Unicode literals in settings.py\n \n* dummy app settings refinements: timing middleware moved down the stack because\n it uses the user session, WSGI app definition was wrong\n\n0.7.11\n~~~~~~\n\n* No code changes\n\n* ``dj.choices`` requirement bumped to 0.8.6 (fully compatible with\n 0.8.5 and significantly improves ``ChoiceFields``)\n\n0.7.10\n~~~~~~\n\n* ``BACKLINKS_LOCAL_SITES`` setting to control if all configured sites should be\n considered local upon backlink discovery\n\n* More backlink fixes data model fixes to make it more cross-compatible with\n different backends\n\n0.7.9\n~~~~~\n\n* Fixed backlink hash generation in ``activitylog``\n\n* ``activitylog`` accepts UTF-8 characters in ``User-Agent`` headers\n\n* ``activitylog`` South migration #0002 now also works on backends with DDL\n transactions (e.g. Postgres)\n\n0.7.8\n~~~~~\n\n* Fixed South support for custom fields (``DefaultTags`` and\n ``MACAddressField``).\n\n0.7.7\n~~~~~\n\n* South migrations supported across the board. For existing installations you\n should run::\n\n $ python manage.py migrate APP_NAME 0001 --fake\n $ python manage.py migrate APP_NAME\n\n where ``APP_NAME`` is ``activitylog``, ``badges``, ``common``, ``flatpages``,\n ``profile``, ``score`` or ``tags``.\n\n* uniqueness constraints in ``activitylog.models.Backlink`` and\n ``activitylog.models.UserAgent`` moved to separate ``hash`` fields to make\n MySQL happy. South migrations should handle schema evolution regardless of the\n backend you're using.\n \n0.7.6\n~~~~~\n\n* Further Django 1.4 compatibility improvements: auto-compelete foreign key\n mixin works correctly now\n\n0.7.5\n~~~~~\n\n* Django 1.4 compatibility improved\n\n0.7.4\n~~~~~\n\n* Django 1.4 ``USE_TZ = True`` compatibility\n\n* example settings updated to support new Django 1.4 settings\n\n* ``User`` attribute proxying in ``Profile`` models rewritten to support all\n built-in and custom attributes on the ``User`` model\n\n* ``activitylog.middleware`` now records IPs and user agents for unauthenticated\n requests as well. Possibly a performance hit.\n\n0.7.3\n~~~~~\n\n* Added `order_by` argument to TagStem.objects.get_content_objects()\n\n0.7.2\n~~~~~\n\n* choices moved to a separate `dj.choices\n `_ package. The old interface is thus\n deprecated and will be removed in a future version.\n\n0.7.1\n~~~~~\n\n* fixed a regression from 0.7.0 in ``lck.django.score`` after cleaning up helpers\n\n0.7.0\n~~~~~\n\n* ``lck.django.badges`` introduced\n\n* ``lck.django.common`` cleaned up, ``lazy_chain`` significantly upgraded (now\n properly supports multiple iterables with filtering, slicing and sorting)\n\n0.6.7\n~~~~~\n\n* ``lck.django.score``: send a signal on total score change (allows for caching\n strategies on the app side)\n\n* ``maxid`` management command introduced: for every registered model returns\n the current maximum value for primary keys \n\n0.6.6\n~~~~~\n\n* ``MACAddressField`` MAC address normalization ignores empty values, supports\n Cisco ``0000.0000.0000`` notation and fixes a minor regression from 0.6.5\n\n* ``SessionAwareLanguageMiddleware`` introduced\n\n* a convenient tag getter for taggables, improved compatibility with\n ``EditorTrackable``\n\n0.6.5\n~~~~~\n\n* more rigorous normalization of MAC addresses in ``MACAddressField``\n\n0.6.4\n~~~~~\n\n* ``ImageModel`` introduced\n\n* ``Named`` models name field extended to 75 characters of length\n\n0.6.3\n~~~~~\n\n* fixed an embarassing bug with the human-readable ``timediff`` filter\n\n0.6.2\n~~~~~\n\n* ``MACAddressField`` normalization bug fixed\n\n0.6.1\n~~~~~\n\n* buttonable Django admin with ``ModelAdmin``\n\n* \"Edit separately\" links for ForeignKey fields supported in ``ModelAdmin``\n\n* compressing ``PyLibMCCache`` backend in ``lck.django.cache_backends``\n\n* backlinks support in ``activitylog``\n\n* images crushed and optimized\n\n* use Pillow instead of PIL\n\n0.6.0\n~~~~~\n\nOh boy, lots of changes!\n\n* ``TimeTrackable`` just got a lot smarter. Includes ``cache_version``\n attribute automatically updated on significant changes to the object.\n ``modified`` gets updated only when there are actual changes to the object.\n ``dirty_fields`` property shows changed attributes from last save (works also\n for objects composed from multiple models, including abstract ones).\n \n Inspired by David Cramer and Simon Willison at EuroPython 2011.\n\n* The dogpile-safe ``lck.django.cache`` now supports custom invalidators which\n enables invalidation not only by time but also by e.g. model changes (think\n ``TimeTrackable.cache_version``).\n\n* Settings profile support now requires a modified ``manage.py`` script in the\n Django project. This is forced by the unfortunate design of how Django loads\n settings.\n\n* Activity logging moved to its own app, ``lck.activitylog``, which now also\n tracks IPs and user agents of logged-in visitors (useful in hunting\n multi-accounts). \n\n* Introduced a ``SavePrioritized`` abstract model which adds priorities to\n saves on models. Various parts of the application can specify which priority\n they use. If they update an attribute which was first saved by something with\n higher priority, the update is silently ignored.\n\n* Introduced a concurrency-aware variant of the popular\n ``Model.objects.get_or_create`` (unsurprisingly called\n ``concurrent_get_or_create``)\n\n* Introduced a ``commit_on_success`` variant that supports nesting\n (unsurprisingly called ``nested_commit_on_success``)\n\n* Introduced ``BasicAuthMiddleware`` for simplistic private URL protecting.\n\n* ``EditorTrackable`` is now safe in terms of foreign key cascading (content\n authored or modified by a user won't get deleted after this user is removed\n from the DB). Plus some nice admin refinements.\n\n* Now ``TimingMiddleware`` doesn't break other middlewares using\n ``process_view()`` and is generally smarter.\n\n* Added ``X-Slo`` header in responses for ``TimingMiddleware``.\n\n* ``render()`` now calculates and emits ETags based on the rendering output.\n\n* ``typical_handler()`` can now ``redirect_on_success``.\n\n* Links from the BBCode filter now open in a new window and have\n ``rel=\"nofollow\"`` set.\n\n* Introduced a ``{%settings KEY%}`` templatetag.\n\n* Introduced a ``{%git_version%}`` templatetag which returns a short string\n useful to present as an app version. This is based on the latest commit in\n the Git repository where the Django project lies in.\n\n* The ``cycle_filter`` template filter now supports explicit counter settings\n and incrementation.\n\n* Introduced template filters converting to and from Base64.\n\n* Introduced JQuery UI and JQueryMobile integrated radio widgets.\n\n* Improved documentation.\n\n* More complete translations.\n\n0.5.8\n~~~~~\n\n* Simplistic ``TimingMiddleware`` introduced.\n\n* Profiles based on ``BaseProfile`` now return ``self`` for ``get_profile()``.\n\n* Trophy icons added.\n\n* Console tag library introduced with the {%color%} tag.\n\n* Allow rendering non-request contexts.\n\n* ``Choices.ToNames`` decorator introduced.\n\n* Pre-importing in ``manage.py shell`` works also for models with\n a custom``app_model``.\n\n0.5.7\n~~~~~\n\n* ``EditorTrackable`` introduced\n\n* Choices can be rendered in grouped form. Currently requires adding\n ``'--keyword=Group:2 '`` to xgettext invocations in\n django/core/managemenet/commands/makemessages.py. Cleaning that up is planned\n for 0.6.0.\n\n* ``typical_handler`` works now with forms w/o a ``save()`` method\n\n* ``upperfirst`` filter introduced: ups only the first character\n\n* Square thumbnails for wide images now work properly\n\n* moved contents of helpers to common (enables i18n and cleans up the API), the\n helpers module is therefore deprecated\n\n* some i18n updates\n\n0.5.6\n~~~~~\n\n* in the thumbnail filter, support for automatic cropping to square introduced\n\n* minor translation updates\n\n0.5.5\n~~~~~\n\n* group members inherit shifted attributes\n\n0.5.4\n~~~~~\n\n* minor updates to ``PolishDateWidget``\n\n0.5.3\n~~~~~ \n\n* ``AvatarSupport`` abstract model for custom avatars. ``GravatarSupport`` can\n be used as fallback or independently.\n\n* ``typical_handler`` now properly supports file uploads\n\n* bugfixes: objects without any score don't cause exceptions anymore\n \n* leftovers from namespace changes cleaned up\n\n0.5.2\n~~~~~\n\n* monkey patches of core Django annotated and regrouped for easier management in\n the future (yup, more to come)\n\n* a stats calculator\n\n* minor bugfixes\n\n0.5.1\n~~~~~\n\n* tags now support models with custom managers\n\n* for Named and Titled models a read-only ``name_urlencoded`` and\n ``title_urlencoded`` properties were introduced. Useful as arguments in\n template tags.\n\n* support for setting additional attributes on choices using an unholy ``<<``\n operator overload\n\n* in tags, support for getting objects marked with specific stems\n\n0.5.0\n~~~~~\n\n* migrated to the ``lck`` namespace from ``langacore.kit``\n\n* migrated licensing from GPL 3 to MIT\n\n* bumped the trove from alpha status to beta, the code is in production for over\n a year now\n\nAncient history\n~~~~~~~~~~~~~~~\n\n* No proper change log was kept before 0.5.0", "description_content_type": null, "docs_url": "https://pythonhosted.org/lck.django/", "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://packages.python.org/lck.django/", "keywords": "", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "lck.django", "package_url": "https://pypi.org/project/lck.django/", "platform": "any", "project_url": "https://pypi.org/project/lck.django/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://packages.python.org/lck.django/" }, "release_url": "https://pypi.org/project/lck.django/0.8.10/", "requires_dist": null, "requires_python": null, "summary": "Various common Django-related routines.", "version": "0.8.10" }, "last_serial": 649177, "releases": { "0.5.0": [ { "comment_text": "", "digests": { "md5": "c4c84955f7a4bb7edfe9a049088ef39f", "sha256": "e7821b31a3bf3b37616a2fde38572f0978290ac24fcc0a1d89412016c644ee63" }, "downloads": -1, "filename": "lck.django-0.5.0.tar.gz", "has_sig": false, "md5_digest": "c4c84955f7a4bb7edfe9a049088ef39f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1505310, "upload_time": "2011-03-25T23:34:15", "url": "https://files.pythonhosted.org/packages/37/5a/b04429363d1202a62f71b453681765b6e05c482001e807f4d6138016f7fa/lck.django-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "4891d68dcf5846936932b2a0940e702e", "sha256": "17cb83918fd6af8a5e1407d6d11dee1066e04cf8f95831addb305b9b48012692" }, "downloads": -1, "filename": "lck.django-0.5.1.tar.gz", "has_sig": false, "md5_digest": "4891d68dcf5846936932b2a0940e702e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1503751, "upload_time": "2011-03-30T19:19:47", "url": "https://files.pythonhosted.org/packages/45/91/32646e880b2c6dcc01b02709284918cbeef1dad6b7d2c9237ada4993b9b2/lck.django-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "2038af8cb4ae4069ef00267d9d42bf93", "sha256": "95d2be8f127a2d2550558f1858b23b618772c46bf97b99094571ad0f92034e55" }, "downloads": -1, "filename": "lck.django-0.5.2.tar.gz", "has_sig": false, "md5_digest": "2038af8cb4ae4069ef00267d9d42bf93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1505885, "upload_time": "2011-03-31T20:58:29", "url": "https://files.pythonhosted.org/packages/c9/62/c302b4a2f8d52c147a0325319800317eee229b0b428dd424d5e12cd8a0bf/lck.django-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "e120d6358f31f11bf4128fa6e7a3dcdb", "sha256": "10e14dd75ed88df50e9d0fdecab56719a2aeec4dfbde8b0ccccce0306872a67e" }, "downloads": -1, "filename": "lck.django-0.5.3.tar.gz", "has_sig": false, "md5_digest": "e120d6358f31f11bf4128fa6e7a3dcdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1506152, "upload_time": "2011-04-13T00:47:29", "url": "https://files.pythonhosted.org/packages/de/10/79387e0356e879479ee36a09788c66a702ae8659094c1f94e821a18f5e1f/lck.django-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "5f9fa40a40e4824467536ccc59f575e6", "sha256": "dae8d123f62e35590b39b82af97bed84fa1ff74ca4fd40c16c41feb05d060c17" }, "downloads": -1, "filename": "lck.django-0.5.4.tar.gz", "has_sig": false, "md5_digest": "5f9fa40a40e4824467536ccc59f575e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1505970, "upload_time": "2011-04-14T01:01:08", "url": "https://files.pythonhosted.org/packages/65/cf/c3f3ad86cbb8e80ee85634a21f9fda0ee2fef91304994db0351d3592a22f/lck.django-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "3c14a837308c561e85b434e13295ca62", "sha256": "27d4592e3f9c5a11b5d10cb40919042d9617459135ba7ca535b4658d759f68c8" }, "downloads": -1, "filename": "lck.django-0.5.5.tar.gz", "has_sig": false, "md5_digest": "3c14a837308c561e85b434e13295ca62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1506834, "upload_time": "2011-04-20T22:35:19", "url": "https://files.pythonhosted.org/packages/08/a0/d660e5900d3552847b39b65dbe935da9825163a494532e650d80e3936871/lck.django-0.5.5.tar.gz" } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "d39182b6428c4abe64377ad1756ed78f", "sha256": "55ef8cf2294e48c5330cf956b23b12fc72600a2139895f93374bc57afa975ae0" }, "downloads": -1, "filename": "lck.django-0.5.6.tar.gz", "has_sig": false, "md5_digest": "d39182b6428c4abe64377ad1756ed78f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1509642, "upload_time": "2011-04-27T23:51:58", "url": "https://files.pythonhosted.org/packages/d3/cb/87b1e196fbb78e7ab7767df4abeffc596f70dec8b44139862250c7d5a6b3/lck.django-0.5.6.tar.gz" } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "cf88c95cfca1ad08fb569bf2a9e7a89a", "sha256": "55eb03f3d73630f62af985b0644d70aa273c9f0dcd24339ffa23eee834ef4ad1" }, "downloads": -1, "filename": "lck.django-0.5.7.tar.gz", "has_sig": false, "md5_digest": "cf88c95cfca1ad08fb569bf2a9e7a89a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1494594, "upload_time": "2011-05-16T10:28:11", "url": "https://files.pythonhosted.org/packages/c6/f8/c83cd9621bcf3ea96971a88f6b7ab683dd0380bdc7a5482a1730a8519f39/lck.django-0.5.7.tar.gz" } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "cc524b5692ec14326db0b2648522875c", "sha256": "60899a1d5386a53953c594ed0d0cf2ec9dd43a40b9031b01acae8a020a08538f" }, "downloads": -1, "filename": "lck.django-0.5.8.tar.gz", "has_sig": false, "md5_digest": "cc524b5692ec14326db0b2648522875c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1514294, "upload_time": "2011-06-14T21:17:39", "url": "https://files.pythonhosted.org/packages/3e/ef/a41343285f17e31036a6dc84cf8c257f804cdd3e2b9dcc19622bf1dae0c9/lck.django-0.5.8.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "6c0b7c1af3ebc37409ee9d32f6f60e09", "sha256": "be174dc6ca9bf4d3504052721573ab659839590fcc127cbafa7c23f22006ff49" }, "downloads": -1, "filename": "lck.django-0.6.0.tar.gz", "has_sig": false, "md5_digest": "6c0b7c1af3ebc37409ee9d32f6f60e09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1530209, "upload_time": "2011-09-29T02:52:11", "url": "https://files.pythonhosted.org/packages/60/92/7d22fab8cf9fdd25cf4a7d80244bc983143d2ffa6eb66d692fc9db9b91c0/lck.django-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "d85c39da1dd63f0fffc1dbd24af8ddf0", "sha256": "a2a102829182d4a5b86c3b93e7ce3641b2f56ebd0e258adbafb7c91337d1be96" }, "downloads": -1, "filename": "lck.django-0.6.1.tar.gz", "has_sig": false, "md5_digest": "d85c39da1dd63f0fffc1dbd24af8ddf0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1557110, "upload_time": "2011-12-13T15:47:10", "url": "https://files.pythonhosted.org/packages/6e/9b/747e8256371f1b30ffaa7c43dda3654a2565a78b91e4420b401387de9c6a/lck.django-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "7090af62b684af596b15126836e4116d", "sha256": "81be1e0369ef1d990df42e7a75d819cd342da2472e902854d6321ca8c8a15eeb" }, "downloads": -1, "filename": "lck.django-0.6.2.tar.gz", "has_sig": false, "md5_digest": "7090af62b684af596b15126836e4116d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1558274, "upload_time": "2011-12-30T12:08:08", "url": "https://files.pythonhosted.org/packages/4e/3c/c318067982f11f8bf5a6e777d61a483288c276e2ca9f3dfa353f8a365924/lck.django-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "0cd6caf92e0175e3519783e6a421c96f", "sha256": "b4bf50c894f3286091d44b6839965ec6ea09e59478b77772fa8ebda61abca400" }, "downloads": -1, "filename": "lck.django-0.6.3.tar.gz", "has_sig": false, "md5_digest": "0cd6caf92e0175e3519783e6a421c96f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1558376, "upload_time": "2012-01-07T17:26:13", "url": "https://files.pythonhosted.org/packages/f2/85/b00e860c98fd735232eda0953b6acf6a3048dfdecdcd3707f4d54dca4181/lck.django-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "37c58789b18595715014cdf4be36b1b0", "sha256": "9ad356bf94b263a37cd2ac8fee95021c0509f06628a39d5ffc435d1c63195b91" }, "downloads": -1, "filename": "lck.django-0.6.4.tar.gz", "has_sig": false, "md5_digest": "37c58789b18595715014cdf4be36b1b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1561314, "upload_time": "2012-01-12T20:31:55", "url": "https://files.pythonhosted.org/packages/9c/84/df332bae97c7a2558e3063a3dc6c024cf61ecacedeb780c80f001b851706/lck.django-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "f7273261a8f65a31b596db34dec44a93", "sha256": "d71bf28d9c14c93291330029424ea8bdf9f5e05b27d634f0b32723ab7568a11a" }, "downloads": -1, "filename": "lck.django-0.6.5.tar.gz", "has_sig": false, "md5_digest": "f7273261a8f65a31b596db34dec44a93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1561627, "upload_time": "2012-01-26T18:06:32", "url": "https://files.pythonhosted.org/packages/a1/8e/4985909ef167324e7de260f7e3e87c0d2ed65ee424c93901e7b040aa3e75/lck.django-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "8cb44e9a72550a10a2fd6c696921c923", "sha256": "2e3f52e62e8e447ef11087bbfdf1b4bf4ec167e7526e991391086ecec3fb0f89" }, "downloads": -1, "filename": "lck.django-0.6.6.tar.gz", "has_sig": false, "md5_digest": "8cb44e9a72550a10a2fd6c696921c923", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1564543, "upload_time": "2012-01-30T13:33:00", "url": "https://files.pythonhosted.org/packages/f7/32/9d623ef615012ebbb7214f822ed71314a1f63d8888fafe79c350c8652bf1/lck.django-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "dec747b8d48cea3ac6fb1be82f2af300", "sha256": "d520cb0698f6e1e6758d3ce376a723f8035fa2d8472defc0374f80cbaaa807ec" }, "downloads": -1, "filename": "lck.django-0.6.7.tar.gz", "has_sig": false, "md5_digest": "dec747b8d48cea3ac6fb1be82f2af300", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1565216, "upload_time": "2012-02-16T16:29:50", "url": "https://files.pythonhosted.org/packages/d1/8d/0b805f0d5952428ff8fd7d0a78f4118d74e4309ea89abd943b26fe7007a6/lck.django-0.6.7.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "ec505fd130440ad51cb5eaf7df3d0f09", "sha256": "3aa92fd338c4424e0e5f678f9f621bde1fc48582957887f209ccf16133d4fec5" }, "downloads": -1, "filename": "lck.django-0.7.0.tar.gz", "has_sig": false, "md5_digest": "ec505fd130440ad51cb5eaf7df3d0f09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1566874, "upload_time": "2012-02-24T14:38:31", "url": "https://files.pythonhosted.org/packages/62/0f/d671684b5f48dcec14912b5f9433d56b630d449a94980e74ad3aed67a118/lck.django-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "9160206b9d949fa720cde47281790aee", "sha256": "4bed969c335d494119df2719ff1359f603505996ef9120a23506631a6d7315cd" }, "downloads": -1, "filename": "lck.django-0.7.1.tar.gz", "has_sig": false, "md5_digest": "9160206b9d949fa720cde47281790aee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1566924, "upload_time": "2012-02-28T11:33:07", "url": "https://files.pythonhosted.org/packages/cd/50/c0e221866ea5c830f5bdbba53dbf68041057b32ff80f84596a7727dac21c/lck.django-0.7.1.tar.gz" } ], "0.7.10": [ { "comment_text": "", "digests": { "md5": "e5288e757d3fe6ffc39549a702836cce", "sha256": "2ce43759e4d565b301c8740ac562b932dc52b5902fe02b5d055d483b582d2d45" }, "downloads": -1, "filename": "lck.django-0.7.10.tar.gz", "has_sig": false, "md5_digest": "e5288e757d3fe6ffc39549a702836cce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1610770, "upload_time": "2012-06-11T16:21:01", "url": "https://files.pythonhosted.org/packages/6b/81/67621d694adad07395070c9c5f601bc3a50b1d7b719deb3039a66d29e82e/lck.django-0.7.10.tar.gz" } ], "0.7.11": [ { "comment_text": "", "digests": { "md5": "e44c92cb013f528090d95293c5548e2e", "sha256": "df8c532fcded2dd3e72d410a21d8db0ba5590db121e1ac15a9f7f016919d416b" }, "downloads": -1, "filename": "lck.django-0.7.11.tar.gz", "has_sig": false, "md5_digest": "e44c92cb013f528090d95293c5548e2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1610954, "upload_time": "2012-06-18T12:25:42", "url": "https://files.pythonhosted.org/packages/37/8b/1c85766dd3dee1db502dd22395a6597a51b8111ab016730f9c122a55495b/lck.django-0.7.11.tar.gz" } ], "0.7.12": [ { "comment_text": "", "digests": { "md5": "833c5f0998448e1da8353fb7c0f65506", "sha256": "8048250adea144ec2908c4e0e6c5a0b78a8f730d1ea36a384b6a356d213f13db" }, "downloads": -1, "filename": "lck.django-0.7.12.tar.gz", "has_sig": false, "md5_digest": "833c5f0998448e1da8353fb7c0f65506", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1611272, "upload_time": "2012-07-12T15:08:07", "url": "https://files.pythonhosted.org/packages/c4/73/1a94b361da1a8223ac1936219273089b5d6449faf8009220da3834e3f4ab/lck.django-0.7.12.tar.gz" } ], "0.7.13": [ { "comment_text": "", "digests": { "md5": "1e5e4562d33e2bf210fd03d9bad429f0", "sha256": "bab1d091581f23705819068749f11c8d565b4f33aeb090b0f44f8165e8e57ebf" }, "downloads": -1, "filename": "lck.django-0.7.13.tar.gz", "has_sig": false, "md5_digest": "1e5e4562d33e2bf210fd03d9bad429f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1611472, "upload_time": "2012-08-30T22:56:36", "url": "https://files.pythonhosted.org/packages/ef/da/7c8e77bee0f9b07ad15b1c138ac9a21d7df4e5a976e5a5afdd6173f7896f/lck.django-0.7.13.tar.gz" } ], "0.7.14": [ { "comment_text": "", "digests": { "md5": "0008ee6e058f54dba38931e6b7537ef1", "sha256": "eb131b387dbaba22fd7db3ad85e7414335e20324829af1ab482f562319ed7c74" }, "downloads": -1, "filename": "lck.django-0.7.14.tar.gz", "has_sig": false, "md5_digest": "0008ee6e058f54dba38931e6b7537ef1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1611960, "upload_time": "2012-10-03T15:09:11", "url": "https://files.pythonhosted.org/packages/b7/e7/b861bfe45a8f2877e9a917a012a71faae519194d47546a0bc46f10d47695/lck.django-0.7.14.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "3b636be78d6cf65f4445afcb3c17a7ec", "sha256": "3e43e63f5539f4495fe35c99e2b2ac98f3b9c0a2076afd3830b90b67ebcdb187" }, "downloads": -1, "filename": "lck.django-0.7.2.tar.gz", "has_sig": false, "md5_digest": "3b636be78d6cf65f4445afcb3c17a7ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1560570, "upload_time": "2012-03-29T11:52:32", "url": "https://files.pythonhosted.org/packages/c6/7d/1123dcde7024eda64b2bace69f18481c9ed30b85ea83137874293260e96a/lck.django-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "88c4a59150dc87b5286d507783823fb7", "sha256": "c59ca4e130e07fd42f722dc72f78394763990fea8f0816cf2ba2785ea78941d3" }, "downloads": -1, "filename": "lck.django-0.7.3.tar.gz", "has_sig": false, "md5_digest": "88c4a59150dc87b5286d507783823fb7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1600931, "upload_time": "2012-03-31T22:02:41", "url": "https://files.pythonhosted.org/packages/51/17/648982b9ab3a18bb411e39f60d81fbf882627ded8f48008d3c1d32b1792e/lck.django-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "b227116e1cc4e48c10ab524dea79d425", "sha256": "97c9ba8768b25964cd80072bb40b28651f091619a50a485913fb5cb584ca34e8" }, "downloads": -1, "filename": "lck.django-0.7.4.tar.gz", "has_sig": false, "md5_digest": "b227116e1cc4e48c10ab524dea79d425", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1601234, "upload_time": "2012-04-12T01:51:18", "url": "https://files.pythonhosted.org/packages/13/a2/a42e280fbbc1fd597309a198f4ca1677991fd1af2c217f975ff7eae4cec1/lck.django-0.7.4.tar.gz" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "b1bbc6a8ef1bdbfccadd3f0fa286d3e1", "sha256": "4a024899bce0827766f05da41fb5b2f87acbdd423322dd5ed1bb8948fc307f1d" }, "downloads": -1, "filename": "lck.django-0.7.5.tar.gz", "has_sig": false, "md5_digest": "b1bbc6a8ef1bdbfccadd3f0fa286d3e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1601274, "upload_time": "2012-05-10T14:23:29", "url": "https://files.pythonhosted.org/packages/da/9f/3344dca8230798069aef4b55cdad0d4c5d1c72071c12f97e4200e5befca5/lck.django-0.7.5.tar.gz" } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "651e0e85e7c86a53e8b162d5d8cb502c", "sha256": "a3010ae2717422fe93aea88a9fb02486ec2798e6e6891519d658d82b2d1fdce5" }, "downloads": -1, "filename": "lck.django-0.7.6.tar.gz", "has_sig": false, "md5_digest": "651e0e85e7c86a53e8b162d5d8cb502c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1601438, "upload_time": "2012-05-15T15:38:02", "url": "https://files.pythonhosted.org/packages/cd/c1/b9c585517761c27e4d478bf93e5b61a89d06018eb435ec9bc995c717e1b9/lck.django-0.7.6.tar.gz" } ], "0.7.7": [ { "comment_text": "", "digests": { "md5": "942d5e888bc5e5447883465ec85f3084", "sha256": "67a8adfe6522a1f06b4e35a9e7de0eb571692f122a1eb351fcf80311efbd521e" }, "downloads": -1, "filename": "lck.django-0.7.7.tar.gz", "has_sig": false, "md5_digest": "942d5e888bc5e5447883465ec85f3084", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1609510, "upload_time": "2012-06-06T17:08:10", "url": "https://files.pythonhosted.org/packages/17/9a/6ebf0094ed55cb1274de3f06aea81f0228f1a780b6e5da6e9991b4da9de8/lck.django-0.7.7.tar.gz" } ], "0.7.8": [ { "comment_text": "", "digests": { "md5": "33be967c197afe72c110e54ffaf2fde5", "sha256": "576425e7b2117a5cae0ac3c507ff74d9f861c07de887f9d4606d714440acbe8d" }, "downloads": -1, "filename": "lck.django-0.7.8.tar.gz", "has_sig": false, "md5_digest": "33be967c197afe72c110e54ffaf2fde5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1609576, "upload_time": "2012-06-07T16:42:19", "url": "https://files.pythonhosted.org/packages/86/f7/ec9fc5f06e11639fa113ca414d976e71c21f30d011fb86fbd7b939f31627/lck.django-0.7.8.tar.gz" } ], "0.7.9": [ { "comment_text": "", "digests": { "md5": "8679d89700f48642b7468781538f151f", "sha256": "82b03cfe0fb7d56e571ac3f2cc17a578afaab09e90fa8e66854a634d3a6236b2" }, "downloads": -1, "filename": "lck.django-0.7.9.tar.gz", "has_sig": false, "md5_digest": "8679d89700f48642b7468781538f151f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1609665, "upload_time": "2012-06-09T01:24:44", "url": "https://files.pythonhosted.org/packages/f9/82/4956e909b3c8975c5d5b87d95521aab6fcb1111b6c534a2188c1d1bbb4d6/lck.django-0.7.9.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "bfc815e47c3cc77de26c6d847b5909e1", "sha256": "548354e0c5842c09329b7b9ca0fef498296c6da3db77819c8cf41dfa41b7e6bb" }, "downloads": -1, "filename": "lck.django-0.8.0.tar.gz", "has_sig": false, "md5_digest": "bfc815e47c3cc77de26c6d847b5909e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1611078, "upload_time": "2012-11-06T02:51:22", "url": "https://files.pythonhosted.org/packages/2c/34/95c8c10814d1933d894367515383a13fcbb89a2f1df62fee15388da1f228/lck.django-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "816452fe8552746cca0c1a27e8f5d80d", "sha256": "b5f6491c904e1bc5874ef36236fd36ac47f8187e72c0b871ab49cfa989ccec1e" }, "downloads": -1, "filename": "lck.django-0.8.1.tar.gz", "has_sig": false, "md5_digest": "816452fe8552746cca0c1a27e8f5d80d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1611682, "upload_time": "2012-11-22T11:13:35", "url": "https://files.pythonhosted.org/packages/5d/4e/bc6c5b96d9ae11a2cc4ec5b87663879b398cda12df472a8d3686366aaae1/lck.django-0.8.1.tar.gz" } ], "0.8.10": [ { "comment_text": "", "digests": { "md5": "97e2d80005bf7f8e36a4eccc6011cdf1", "sha256": "766e560e2597b78789c389730d10b459441eff59d1d51ada966755f31c0189f9" }, "downloads": -1, "filename": "lck.django-0.8.10.tar.gz", "has_sig": false, "md5_digest": "97e2d80005bf7f8e36a4eccc6011cdf1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1618836, "upload_time": "2013-04-29T08:00:45", "url": "https://files.pythonhosted.org/packages/6b/d9/6cbf402df2d793cb0331706988867a0d1c3e3d4eb784744e62edc2a39cd6/lck.django-0.8.10.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "017158831a39287570eb260a2d70e661", "sha256": "eea744c38b277b1f72eda7ff1ae4310ee6250f5fcde1418c2ed4939cef627295" }, "downloads": -1, "filename": "lck.django-0.8.2.tar.gz", "has_sig": false, "md5_digest": "017158831a39287570eb260a2d70e661", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1612140, "upload_time": "2012-11-25T22:46:26", "url": "https://files.pythonhosted.org/packages/30/94/ddae31744943b503e8ec1fb3bf9f27cbc085077b1956a45e0acef6257f1b/lck.django-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "2c9e68389f6aa2dea4c4b3cde3b42d68", "sha256": "f5ccf9779490bbb8708c2dd7e5da7c29e81c1b3785045bb5df9970876838460c" }, "downloads": -1, "filename": "lck.django-0.8.3.tar.gz", "has_sig": false, "md5_digest": "2c9e68389f6aa2dea4c4b3cde3b42d68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1614596, "upload_time": "2012-12-14T14:35:54", "url": "https://files.pythonhosted.org/packages/34/aa/a55e509c14a226026dbeb6c31901ac554a005b1201688413050c0355ccfd/lck.django-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "1efa4ae0dfff4fe253ee3a420f91fef8", "sha256": "eb2acdd50543a0e064233e324614edb6589af3145ad2306df7dad46d9027fcee" }, "downloads": -1, "filename": "lck.django-0.8.4.tar.gz", "has_sig": false, "md5_digest": "1efa4ae0dfff4fe253ee3a420f91fef8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1615385, "upload_time": "2012-12-31T09:41:00", "url": "https://files.pythonhosted.org/packages/64/74/6766b333aa1acce4436cc35c19a5b4dbf83e98d3947828ec5f593ee0efa8/lck.django-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "46e90437ea2918d56bff0ed95cc2c256", "sha256": "180e3dba5e7746133b072aad9cf6d1e38b3cd302274e25d4db5e17a0139f7133" }, "downloads": -1, "filename": "lck.django-0.8.5.tar.gz", "has_sig": false, "md5_digest": "46e90437ea2918d56bff0ed95cc2c256", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1616081, "upload_time": "2013-01-30T14:14:49", "url": "https://files.pythonhosted.org/packages/fa/ea/c2be713f22fe12270a03c7af0f6ff1fec99effd7e699ff356fa58d59f0e8/lck.django-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "5f30af41e19ce646f3597f2990bba486", "sha256": "d12ae9b3876ec25f002b830fe469d3e542c205c32d3fd970706f21c475b76923" }, "downloads": -1, "filename": "lck.django-0.8.6.tar.gz", "has_sig": false, "md5_digest": "5f30af41e19ce646f3597f2990bba486", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1616302, "upload_time": "2013-02-15T11:41:14", "url": "https://files.pythonhosted.org/packages/14/ad/bdb11a5dadec73d674c011b1909b00da72bfca882cffd45e5c2eb785c804/lck.django-0.8.6.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "5c701a09fb49d6a487bc995a2e21589a", "sha256": "b4d7a7388439819e3dc21d2ca9ac96e4056c7c43d20e93e05bf2883362bd76cb" }, "downloads": -1, "filename": "lck.django-0.8.7.tar.gz", "has_sig": false, "md5_digest": "5c701a09fb49d6a487bc995a2e21589a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1616922, "upload_time": "2013-02-18T21:13:34", "url": "https://files.pythonhosted.org/packages/62/38/d67de034e78109d1cc64eb8c88234cc72dd97e5a18613a8ed41de59ae938/lck.django-0.8.7.tar.gz" } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "a60b22d9bc239a6e8de62281f3b135b9", "sha256": "8c4b0e86e623e1f01e2335a3a33b3500f782e7733427f285aeeb2deb935c64ad" }, "downloads": -1, "filename": "lck.django-0.8.8.tar.gz", "has_sig": false, "md5_digest": "a60b22d9bc239a6e8de62281f3b135b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1617805, "upload_time": "2013-03-03T19:42:18", "url": "https://files.pythonhosted.org/packages/bf/87/36eabfed46498a4e048420c5c6f762ed0a632ed4e9de5feb38f6d21a1f7f/lck.django-0.8.8.tar.gz" } ], "0.8.9": [ { "comment_text": "", "digests": { "md5": "f6fe02584ce99fd0f86769b9775b50c2", "sha256": "f8b4c984c6b31861d3058c956a320fc189833ce0923f79f022e9b62fc145e1ad" }, "downloads": -1, "filename": "lck.django-0.8.9.tar.gz", "has_sig": false, "md5_digest": "f6fe02584ce99fd0f86769b9775b50c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1617519, "upload_time": "2013-03-29T13:29:22", "url": "https://files.pythonhosted.org/packages/9f/d3/6f15728d065636ff349fa8fdb88303947e495053f55f77f7e8ebaaded069/lck.django-0.8.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "97e2d80005bf7f8e36a4eccc6011cdf1", "sha256": "766e560e2597b78789c389730d10b459441eff59d1d51ada966755f31c0189f9" }, "downloads": -1, "filename": "lck.django-0.8.10.tar.gz", "has_sig": false, "md5_digest": "97e2d80005bf7f8e36a4eccc6011cdf1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1618836, "upload_time": "2013-04-29T08:00:45", "url": "https://files.pythonhosted.org/packages/6b/d9/6cbf402df2d793cb0331706988867a0d1c3e3d4eb784744e62edc2a39cd6/lck.django-0.8.10.tar.gz" } ] }