{ "info": { "author": "landscape.io", "author_email": "code@landscape.io", "bugtrack_url": null, "classifiers": [ "Environment :: Console", "Intended Audience :: Developers", "Operating System :: Unix", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Quality Assurance" ], "description": "pylint-django\n=============\n\n.. image:: https://travis-ci.org/PyCQA/pylint-django.svg?branch=master\n :target: https://travis-ci.org/PyCQA/pylint-django\n\n.. image:: https://landscape.io/github/landscapeio/pylint-django/master/landscape.png\n :target: https://landscape.io/github/landscapeio/pylint-django\n\n.. image:: https://coveralls.io/repos/PyCQA/pylint-django/badge.svg\n :target: https://coveralls.io/r/PyCQA/pylint-django\n\n.. image:: https://img.shields.io/pypi/v/pylint-django.svg\n :target: https://pypi.python.org/pypi/pylint-django\n\n\nAbout\n-----\n\n``pylint-django`` is a `Pylint `__ plugin for improving code\nanalysis when analysing code using Django. It is also used by the\n`Prospector `__ tool.\n\n\nInstallation\n------------\n\nTo install::\n\n pip install pylint-django\n\n\n**WARNING:** ``pylint-django`` will not install ``Django`` by default because\nthis causes more trouble than good,\n`see discussion `__. If you wish\nto automatically install the latest version of ``Django`` then::\n\n pip install pylint-django[with_django]\n\notherwise sort out your testing environment and please **DO NOT** report issues\nabout missing Django!\n\n\nUsage\n-----\n\nEnsure ``pylint-django`` is installed and on your path and then execute::\n\n pylint --load-plugins pylint_django [..other options..] \n\n\nProspector\n----------\n\nIf you have ``prospector`` installed, then ``pylint-django`` will already be\ninstalled as a dependency, and will be activated automatically if Django is\ndetected::\n\n prospector [..other options..]\n\n\nFeatures\n--------\n\n* Prevents warnings about Django-generated attributes such as\n ``Model.objects`` or ``Views.request``.\n* Prevents warnings when using ``ForeignKey`` attributes (\"Instance of\n ForeignKey has no member\").\n* Fixes pylint's knowledge of the types of Model and Form field attributes\n* Validates ``Model.__unicode__`` methods.\n* ``Meta`` informational classes on forms and models do not generate errors.\n* Flags dangerous use of the exclude attribute in ModelForm.Meta.\n\n\nAdditional plugins\n------------------\n\n``pylint_django.checkers.db_performance`` looks for migrations which add new\nmodel fields and these fields have a default value. According to\n`Django docs `__\nthis may have performance penalties especially on large tables. The prefered way\nis to add a new DB column with ``null=True`` because it will be created instantly\nand then possibly populate the table with the desired default values.\n\nOnly the last migration from a sub-directory will be examined!\n\nThis plugin is disabled by default! To enable it::\n\n pylint --load-plugins pylint_django --load-plugins pylint_django.checkers.db_performance\n\n\nKnown issues\n------------\n\nIf you reference foreign-key models by their name (as string) ``pylint-django`` may not be\nable to find the model and will report issues because it has no idea what the underlying\ntype of this field is. If your ``models.py`` itself is not importing the foreign-key class\nthere's probably some import problem (circular dependencies) preventing referencing the\nforeign-key class directly, in which case ``pylint-django`` can't do a huge amount.\nIf it's just done for convenience that's really up to you the developer to fix.\n\n\nContributing\n------------\n\nPlease feel free to add your name to the ``CONTRIBUTORS.rst`` file if you want to\nbe credited when pull requests get merged. You can also add to the\n``CHANGELOG.rst`` file if you wish, although we'll also do that when merging.\n\n\nTests\n-----\n\nThe structure of the test package follows that from pylint itself.\n\nIt is fairly simple: create a module starting with ``func_`` followed by\na test name, and insert into it some code. The tests will run pylint\nagainst these modules. If the idea is that no messages now occur, then\nthat is fine, just check to see if it works by running ``scripts/test.sh``.\n\nIdeally, add some pylint error suppression messages to the file to prevent\nspurious warnings, since these are all tiny little modules not designed to\ndo anything so there's no need to be perfect.\n\nIt is possible to make tests with expected error output, for example, if\nadding a new message or simply accepting that pylint is supposed to warn.\nA ``test_file_name.txt`` file contains a list of expected error messages in the\nformat\n``error-type:line number:class name or empty:1st line of detailed error text``.\n\n\nLicense\n-------\n\n``pylint-django`` is available under the GPLv2 license.\n\nChangelog\n=========\n\nVersion 2.0.11 (10 July 2019)\n-----------------------------\n\n- Use ``functools.wrap`` to preserve ``leave_module`` info (Mohit Solanki)\n\n\nVersion 2.0.10 (07 July 2019), Novi Sad etition\n-----------------------------------------------\n\n- Suppress ``no-member`` for ``ManyToManyField``. Fix\n `#192 `_ and\n `#237 `_ (Pierre Chiquet)\n\n- Fix ``UnboundLocalError`` with ``ForeignKey(to=)``. Fix\n `#232 `_ (Sardorbek Imomaliev)\n\n\nVersion 2.0.9 (26 April 2019)\n-----------------------------\n\n- Fix ``UnboundLocalError: local variable 'key_cls' referenced before assignment``\n for cases when models is a python package, the ``to`` argument is a string\n that is used in this pattern ``app.Model`` and also there is some other\n ``bool`` const like ``null=True`` right after ``to``. (Sardorbek Imomaliev)\n- Don't crash if ForeignKey field doesn't have keyword arguments Fix\n `#230 `_\n\n\nVersion 2.0.8 (18 April 2019)\n-----------------------------\n\n- Support recursive (self) ForeignKey relations. Fix\n `#208 `_ (Daniil Kharkov)\n\n\nVersion 2.0.7 (16 April 2019)\n-----------------------------\n\n- Fixed ``AstroidImportError`` for ``DecimalField``. Fix\n `#221 `_ (Daniil Kharkov)\n- Add ``load_configuration()`` in ``pylint_django/__init__.py``. Fix #222\n `#222 `_\n- Support ForeignKey relations with ``to`` keyword. Fix\n `#223 `_ (Daniil Kharkov)\n\n\nVersion 2.0.6 (27 Feb 2019)\n---------------------------\n\n- Updating dependency version of pylint-plugin-utils as pylint 2.3 release\n was not compatible `#220 `_\n- Improvements to tox.ini:\n `#217 `_\n and `#216 `_ (@aerostitch)\n- Add support for new load_configuration hook of pylint\n `#214 `_ (@matusvalo)\n- 'urlpatterns' no longer reported as an invalid constant name\n\n\nVersion 2.0.5 (17 Dec 2018)\n---------------------------\n\nBumping the version number because there's been a mix-up between\nGitHub tags and the versions pushed to PyPI for 2.0.3 and 2.0.4.\n\nPlease use 2.0.5 which includes the changes mentioned below!\n\n\nVersion 2.0.4 (do not use)\n--------------------------\n\n- Avoid traceback with concurrent execution. Fix\n `#197 `_\n- Suppress ``no-member`` errors for ``LazyFunction`` in factories\n- Suppress ``no-member`` errors for ``RelatedManager`` fields\n- Clean up compatibility code:\n `PR #207 `_\n\n\nVersion 2.0.3 (do not use)\n--------------------------\n\n- Fixing compatability between ranges of astroid (2.0.4 -> 2.1) and\n pylint (2.1.1 -> 2.2).\n `#201 `_ and\n `#202 `_\n\nVersion 2.0.2 (26 Aug 2018)\n---------------------------\n\n- Suppress false-positive no-self-argument in factory.post_generation. Fix\n `#190 `_ (Federico Bond)\n\n\nVersion 2.0.1 (20 Aug 2018)\n---------------------------\n\n- Enable testing with Django 2.1\n- Add test for Model.objects.get_or_create(). Close\n `#156 `__\n- Add test for objects.exclude(). Close\n `#177 `__\n- Fix Instance of 'Model' has no 'id' member (no-member),\n fix Class 'UserCreationForm' has no 'declared_fields' member. Close\n `#184 `__\n- Fix for Instance of 'ManyToManyField' has no 'add' member. Close\n `#163 `__\n- Add test & fix for unused arguments on class based views\n\n\nVersion 2.0 (25 July 2018)\n--------------------------\n\n- Requires pylint >= 2.0 which doesn't support Python 2 anymore!\n- Add modelform-uses-unicode check to flag dangerous use of the exclude\n attribute in ModelForm.Meta (Federico Bond).\n\n\nVersion 0.11.1 (25 May 2018), the DjangoCon Heidelberg edition\n--------------------------------------------------------------\n\n- Enable test case for ``urlpatterns`` variable which was previously disabled\n- Disable ``unused-argument`` message for the ``request`` argument passed to\n view functions. Fix\n `#155 `__\n- Add transformations for ``model_utils`` managers instead of special-casing them.\n Fix\n `#160 `__\n\n\nVersion 0.11 (18 April 2018), the TestCon Moscow edition\n--------------------------------------------------------\n\n- New ``JsonResponseChecker`` that looks for common anti-patterns with\n http responses returning JSON. This includes::\n\n HttpResponse(json.dumps(data))\n\n HttpResponse(data, content_type='application/json')\n\n JsonResponse(data, content_type=...)\n\n\nVersion 0.10.0 (10 April 2018)\n------------------------------\n\n- Remove the compatibility layer for older astroid versions\n- Make flake8 happy. Fix\n `#102 `__\n- Fix: compatibility with Python < 3.6 caused by ``ModuleNotFoundError``\n not available on older versions of Python (Juan Rial)\n- Show README and CHANGELOG on PyPI. Fix\n `#122 `__\n- Fix explicit unicode check with ``python_2_unicode_compatible`` base models\n (Federico Bond)\n- Suppress ``not-an-iterable`` message for 'objects'. Fix\n `#117 `__\n- Teach pylint_django that ``objects.all()`` is subscriptable. Fix\n `#144 `__\n- Suppress ``invalid-name`` for ``wsgi.application``. Fix\n `#77 `__\n- Add test for ``WSGIRequest.context``. Closes\n `#78 `__\n- Register transforms for ``FileField``. Fix\n `#60 `__\n- New checker ``pylint_django.checkers.db_performance``.\n Enables checking of migrations and reports when there's an\n ``AddField`` operation with a default value which may slow down applying\n migrations on large tables. This may also lead to production tables\n being locked while migrations are being applied. Fix\n `#118 `__\n- Suppress ``no-member`` for ``factory.SubFactory`` objects.\n Useful when model factories use ``factory.SubFactory()`` for foreign\n key relations.\n\n\nVersion 0.9.4 (12 March 2018)\n-----------------------------\n\n- Add an optional dependency on Django\n- Fix the ``DjangoInstalledChecker`` so it can actually warn when\n Django isn't available\n- Fix `#136 `__ by\n adding automated build and sanity test scripts\n\nVersion 0.9.3 (removed from PyPI)\n---------------------------------\n\n- Fix `#133 `__ and\n `#134 `__ by\n including package data when building wheel and tar.gz packages for\n PyPI (Joseph Herlant)\n\nVersion 0.9.2 (broken)\n----------------------\n\n- Fix `#129 `__ -\n Move tests under ``site-packages/pylint_django`` (Mr. Senko)\n- Fix `#96 `__ - List\n Django as a dependency (Mr. Senko)\n\nVersion 0.9.1 (26 Feb 2018)\n---------------------------\n\n- Fix `#123 `__ -\n Update links after the move to PyCQA (Mr. Senko)\n- Add test for Meta class from django\\_tables2 (Mr. Senko)\n- Fix flake8 complaints (Peter Bittner)\n- Add missing .txt and .rc test files to MANIFEST.in (Joseph Herlant)\n\nVersion 0.9 (25 Jan 2018)\n-------------------------\n\n- Fix `#120 `__ -\n TypeError: 'NamesConsumer' object does not support indexing (Simone\n Basso)\n- Fix `#110 `__ and\n `#35 `__ - resolve\n ForeignKey models specified as strings instead of class names (Mr.\n Senko)\n\nVersion 0.8.0 (20 Jan 2018)\n---------------------------\n\n- This is the last version to support Python 2. Issues a deprecation\n warning!\n- `#109 `__, adding\n 'urlpatterns', 'register', 'app\\_name' to good names. Obsoletes\n `#111 `__, fixes\n `#108 `__ (Vinay\n Pai)\n- Add 'handler500' to good names (Mr. Senko)\n- `#103 `__: Support\n factory\\_boy's DjangoModelFactory Meta class (Konstantinos\n Koukopoulos)\n- `#100 `__: Fix\n E1101:Instance of '**proxy**\\ ' has no 'format' member' when using\n .format() on a ugettext\\_lazy translation. Fixes\n `#80 `__\n (canarduck)\n- `#99 `__: Add tests\n and transforms for DurationField, fixes\n `#95 `__ (James M.\n Allen)\n- `#92 `__: Add json\n field to WSGIRequest proxy (sjk4sc)\n- `#84 `__: Add support\n for django.contrib.postgres.fields and UUIDField (Villiers Strauss)\n- Stop testing with older Django versions. Currently testing with\n Django 1.11.x and 2.0\n- Stop testing on Python 2, no functional changes in the source code\n though\n- Update tests and require latest version of pylint (>=1.8), fixes\n `#53 `__,\n `#97 `__\n- `#81 `__ Fix\n 'duplicate-except' false negative for except blocks which catch the\n ``DoesNotExist`` exception.\n\nVersion 0.7.4\n-------------\n\n- `#88 `__ Fixed builds\n with Django 1.10 (thanks to\n `federicobond `__)\n- `#91 `__ Fixed race\n condition when running with pylint parallel execution mode (thanks to\n `jeremycarroll `__)\n- `#64 `__ \"Meta is\n old style class\" now suppressed on BaseSerializer too (thanks to\n `unklphil `__)\n- `#70 `__ Updating to\n handle newer pylint/astroid versions (thanks to\n `iXce `__)\n\nVersion 0.7.2\n-------------\n\n- `#76 `__ Better\n handling of mongoengine querysetmanager\n- `#73 `__\n `#72 `__ Make package\n zip safe to help fix some path problems\n- `#68 `__ Suppressed\n invalid constant warning for \"app\\_name\" in urls.py\n- `#67 `__ Fix\n view.args and view.kwargs\n- `#66 `__ accessing\n \\_meta no longer causes a protected-access warning as this is a\n public API as of Django 1.8\n- `#65 `__ Add support\n of mongoengine module.\n- `#59 `__ Silence\n old-style-class for widget Meta\n\nVersion 0.7.1\n-------------\n\n- `#52 `__ - Fixed\n stupid mistake when using versioninfo\n\nVersion 0.7\n-----------\n\n- `#51 `__ - Fixed\n compatibility with pylint 1.5 / astroid 1.4.1\n\nVersion 0.6.1\n-------------\n\n- `#43 `__ - Foreign\n key ID access (``somefk_id``) does not raise an 'attribute not found'\n warning\n- `#31 `__ - Support\n for custom model managers (thanks\n `smirolo `__)\n- `#48 `__ - Added\n support for django-restframework (thanks\n `mbertolacci `__)\n\nVersion 0.6\n-----------\n\n- Pylint 1.4 dropped support for Python 2.6, therefore a constraint is\n added that pylint-django will only work with Python2.6 if pylint<=1.3\n is installed\n- `#40 `__ - pylint\n 1.4 warned about View and Model classes not having enough public\n methods; this is suppressed\n- `#37 `__ - fixed an\n infinite loop when using astroid 1.3.3+\n- `#36 `__ - no\n longer warning about lack of ``__unicode__`` method on abstract model\n classes\n- `PR #34 `__ - prevent\n warning about use of ``super()`` on ModelManager classes\n\nVersion 0.5.5\n-------------\n\n- `PR #27 `__ - better\n ``ForeignKey`` transforms, which now work when of the form\n ``othermodule.ModelClass``. This also fixes a problem where an\n inferred type would be ``_Yes`` and pylint would fail\n- `PR #28 `__ - better\n knowledge of ``ManyToManyField`` classes\n\nVersion 0.5.4\n-------------\n\n- Improved resiliance to inference failure when Django types cannot be\n inferred (which can happen if Django is not on the system path\n\nVersion 0.5.3\n-------------\n\n- `Issue #25 `__\n Fixing cases where a module defines ``get`` as a method\n\nVersion 0.5.2\n-------------\n\n- Fixed a problem where type inference could get into an infinite loop\n\nVersion 0.5.1\n-------------\n\n- Removed usage of a Django object, as importing it caused Django to\n try to configure itself and thus throw an ImproperlyConfigured\n exception.\n\nVersion 0.5\n-----------\n\n- `Issue #7 `__\n Improved handling of Django model fields\n- `Issue #10 `__ No\n warning about missing **unicode** if the Django python3/2\n compatability tools are used\n- `Issue #11 `__\n Improved handling of Django form fields\n- `Issue #12 `__\n Improved handling of Django ImageField and FileField objects\n- `Issue #14 `__\n Models which do not define **unicode** but whose parents do now have\n a new error (W5103) instead of incorrectly warning about no\n **unicode** being present.\n- `Issue #21 `__\n ``ForeignKey`` and ``OneToOneField`` fields on models are replaced\n with instance of the type they refer to in the AST, which allows\n pylint to generate correct warnings about attributes they may or may\n not have.\n\nVersion 0.3\n-----------\n\n- Python3 is now supported\n- ``__unicode__`` warning on models does not appear in Python3\n\nVersion 0.2\n-----------\n\n- Pylint now recognises ``BaseForm`` as an ancestor of ``Form`` and\n subclasses\n- Improved ``Form`` support\n- `Issue #2 `__ - a\n subclass of a ``Model`` or ``Form`` also has warnings about a\n ``Meta`` class suppressed.\n- `Issue #3 `__ -\n ``Form`` and ``ModelForm`` subclasses no longer warn about ``Meta``\n classes.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/PyCQA/pylint-django", "keywords": "pylint,django,plugin", "license": "GPLv2", "maintainer": "", "maintainer_email": "", "name": "pylint-django", "package_url": "https://pypi.org/project/pylint-django/", "platform": "", "project_url": "https://pypi.org/project/pylint-django/", "project_urls": { "Homepage": "https://github.com/PyCQA/pylint-django" }, "release_url": "https://pypi.org/project/pylint-django/2.0.11/", "requires_dist": [ "pylint (>=2.0)", "pylint-plugin-utils (>=0.5)", "coverage; extra == 'for_tests'", "django-tables2; extra == 'for_tests'", "factory-boy; extra == 'for_tests'", "pytest; extra == 'for_tests'", "Django; extra == 'with_django'" ], "requires_python": "", "summary": "A Pylint plugin to help Pylint understand the Django web framework", "version": "2.0.11" }, "last_serial": 5512141, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "3086588be09b931b130e9efb7d325c24", "sha256": "f7724ce3616875ad82813a475f2947e8152c4138421663db581abe76322f771c" }, "downloads": -1, "filename": "pylint-django-0.1.tar.gz", "has_sig": false, "md5_digest": "3086588be09b931b130e9efb7d325c24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4408, "upload_time": "2013-10-25T08:38:48", "url": "https://files.pythonhosted.org/packages/49/28/0116b9d2c7932ba5e99bf468d5ee37e3d66fae1f58bf73e682a86418badf/pylint-django-0.1.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "1726e221803c8bd4e6f21248c011444b", "sha256": "0e7c8b477cd26f78bf9bda6ea0da513af9a5b36f5d3b175f378522110aa994d9" }, "downloads": -1, "filename": "pylint_django-0.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1726e221803c8bd4e6f21248c011444b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 57752, "upload_time": "2018-04-10T20:03:39", "url": "https://files.pythonhosted.org/packages/34/a7/47d7ae26c64ebc4b36c97d44662eefc64760dff3c0e3e7e4a2d8ee066e52/pylint_django-0.10.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "20bbc044df323ce31738594fb0c26b83", "sha256": "03967f924792c1622f85330cd33887494da2ea6778bf1eabc7e0b566f2e71efa" }, "downloads": -1, "filename": "pylint-django-0.10.0.tar.gz", "has_sig": false, "md5_digest": "20bbc044df323ce31738594fb0c26b83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42151, "upload_time": "2018-04-10T20:03:30", "url": "https://files.pythonhosted.org/packages/8f/18/783073cef4caa4dab4950130e1143eed75ec178b5ca887a2a39b290b404d/pylint-django-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "80eeb6adea0a6cf45b9f01a80fc8087e", "sha256": "23f4b5ef46ae0caaf0c88aeabde7fad027d6f732f21c4894cd3f80a8cdc58072" }, "downloads": -1, "filename": "pylint_django-0.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "80eeb6adea0a6cf45b9f01a80fc8087e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 57758, "upload_time": "2018-04-10T20:11:45", "url": "https://files.pythonhosted.org/packages/77/ef/de30a72a394bfc2083908d20ae11353d2031d7cecb6ac53748f9055249b9/pylint_django-0.10.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a758a710030f78fdb2f13ac33b6a741f", "sha256": "ad218afd8ed1e394ec87f5abc5a9be8efc1d186f48ec1daa8810e40b167a408a" }, "downloads": -1, "filename": "pylint-django-0.10.1.tar.gz", "has_sig": false, "md5_digest": "a758a710030f78fdb2f13ac33b6a741f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42153, "upload_time": "2018-04-10T20:11:39", "url": "https://files.pythonhosted.org/packages/e8/a2/75a8f90d0d55886af93c453a5d54dbb036123ff106af6f15b456835ec8ee/pylint-django-0.10.1.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "a3d0c1c6512cc683cff137f85b29336a", "sha256": "ca68fe67837956d408600bdd6c4e9ef6cccb48f058a6640eed729845a25912b0" }, "downloads": -1, "filename": "pylint_django-0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "a3d0c1c6512cc683cff137f85b29336a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 60057, "upload_time": "2018-04-18T08:13:32", "url": "https://files.pythonhosted.org/packages/81/2e/272540cd726bd1ac7ca7ab540b1a85b15d67ba8af9b72c57f1d80e8396e2/pylint_django-0.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "292303ef090c325878fe6c2292fbb8b7", "sha256": "8818c2034df5fad2dc4bd029a91f088a6a3d8eaad5070c19b32ba3fef04b25dc" }, "downloads": -1, "filename": "pylint-django-0.11.tar.gz", "has_sig": false, "md5_digest": "292303ef090c325878fe6c2292fbb8b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43177, "upload_time": "2018-04-18T08:13:41", "url": "https://files.pythonhosted.org/packages/78/0b/a7191fe18561e21b2f0663ce30859c3f7597e19535db3b564d1c7513aeff/pylint-django-0.11.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "28ef8d4ca960cb33d86d53d8e567bb14", "sha256": "70a723115a9649d6082f6ef09209ff299ce5b90c19005e351f7eb62889888694" }, "downloads": -1, "filename": "pylint_django-0.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "28ef8d4ca960cb33d86d53d8e567bb14", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 62190, "upload_time": "2018-05-25T08:48:18", "url": "https://files.pythonhosted.org/packages/b9/8f/f7d599ab5b1a038defe1cb3c10958ef65785ea4c256e94db83a4536c9f25/pylint_django-0.11.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d69ee7804161e21f320a208bfa687288", "sha256": "ff10fbf6e0ab207fbb8ec26f5b6a3f4fa604233b38182ccda038a08ba1b8ba80" }, "downloads": -1, "filename": "pylint-django-0.11.1.tar.gz", "has_sig": false, "md5_digest": "d69ee7804161e21f320a208bfa687288", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43987, "upload_time": "2018-05-25T08:48:11", "url": "https://files.pythonhosted.org/packages/68/d9/5f3fa1b9d24fd4b2f6e83ecdd8709f1f4bd73434b7c6e94583c088d426ea/pylint-django-0.11.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "3a5104b49528954f0990989cda6a6c77", "sha256": "56726a89d45c4b1f28a4e642fd6677e288c7aa420ee4de01568ce673524d91ba" }, "downloads": -1, "filename": "pylint-django-0.2.tar.gz", "has_sig": false, "md5_digest": "3a5104b49528954f0990989cda6a6c77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5220, "upload_time": "2014-01-05T09:29:46", "url": "https://files.pythonhosted.org/packages/29/4b/973af177460188d47165b7038bf311118beaf4b2c0abaebf40a1de29de4c/pylint-django-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "7ea237f9e573f51d85f879859f566651", "sha256": "42222538fb9651a4323d791925560f968e1a3e43b5fbbe0665932d6eb730321e" }, "downloads": -1, "filename": "pylint-django-0.2.1.tar.gz", "has_sig": false, "md5_digest": "7ea237f9e573f51d85f879859f566651", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5177, "upload_time": "2014-01-05T09:49:53", "url": "https://files.pythonhosted.org/packages/30/ba/669036b83ef221efbaa7e0164c45da8a67e56f3742659251e688b0dc6769/pylint-django-0.2.1.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "5399799e56db22f083669b437eaae067", "sha256": "1b0be123120076697b30b398e34ef0b6032587742408ad46a376acaad9a1549b" }, "downloads": -1, "filename": "pylint-django-0.3.tar.gz", "has_sig": false, "md5_digest": "5399799e56db22f083669b437eaae067", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5241, "upload_time": "2014-01-26T07:48:02", "url": "https://files.pythonhosted.org/packages/d0/f3/45b8b510b551160bc1cd04cf4cc36b459d9adf022fe451aa8a1e72559027/pylint-django-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "930ebe023b13d619b22759245b33e124", "sha256": "553e8c808b736ff52175c8e86dbde034f83ddb1407e7a16eef0bd8cb8be7810e" }, "downloads": -1, "filename": "pylint-django-0.4.tar.gz", "has_sig": false, "md5_digest": "930ebe023b13d619b22759245b33e124", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5733, "upload_time": "2014-06-16T08:45:26", "url": "https://files.pythonhosted.org/packages/42/84/e3f383668b25ef95799162dfc3129612010a4167ca6f8ff9c5b341bfa633/pylint-django-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "6b04594594c81b339abb6ab3f8f8752a", "sha256": "3c29d6fd56a1d582607bf0183369bbf0f64ba811f531d755ec3cbfb8a49ab0ed" }, "downloads": -1, "filename": "pylint-django-0.5.tar.gz", "has_sig": false, "md5_digest": "6b04594594c81b339abb6ab3f8f8752a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9297, "upload_time": "2014-09-24T21:38:30", "url": "https://files.pythonhosted.org/packages/1a/f3/ee4f6dd5950eaefa44154cf535d13b814a340c5177224a5c639bad7a2009/pylint-django-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "3dc384dc78e577f856c155ee82002f5f", "sha256": "3f9273cb4b79ae9ca4bf0c477e4cc228683d64a4c409a7ac3f1191b3fa2736cf" }, "downloads": -1, "filename": "pylint-django-0.5.1.tar.gz", "has_sig": false, "md5_digest": "3dc384dc78e577f856c155ee82002f5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9427, "upload_time": "2014-09-25T08:39:22", "url": "https://files.pythonhosted.org/packages/b0/f0/663b007ab60e2a411dbaa315a4d93e003646f021829a7998e2d46bcb30d3/pylint-django-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "bb94191795e43527bb1ab6b1a11456ba", "sha256": "7c218ca84b02986bdd5cda8cae9922fe51625f9151050cd4fcf88c6a3010e280" }, "downloads": -1, "filename": "pylint-django-0.5.2.tar.gz", "has_sig": false, "md5_digest": "bb94191795e43527bb1ab6b1a11456ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9446, "upload_time": "2014-09-25T09:59:01", "url": "https://files.pythonhosted.org/packages/3c/b9/f25e9796ede77629f314246d1a32437e47418ed5fcc645612d22cbc854c3/pylint-django-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "3e8a2e97c2533ebbaf7e48126e8d2ac5", "sha256": "7934934e197fdd05ca96446c8bf93784ce5394668dcd0139402965af4f8477a2" }, "downloads": -1, "filename": "pylint-django-0.5.3.tar.gz", "has_sig": false, "md5_digest": "3e8a2e97c2533ebbaf7e48126e8d2ac5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9790, "upload_time": "2014-09-25T14:32:34", "url": "https://files.pythonhosted.org/packages/80/81/43907f30232b428faa977379cff0a252b5d848d13b506e807c527477e810/pylint-django-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "e2efc42c9ac89965cdc3c322acb1388e", "sha256": "3e85f8b872617262ec0f79a7e18fba26eca935ac62c5a815a766441c6067b541" }, "downloads": -1, "filename": "pylint-django-0.5.4.tar.gz", "has_sig": false, "md5_digest": "e2efc42c9ac89965cdc3c322acb1388e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9466, "upload_time": "2014-09-27T10:43:58", "url": "https://files.pythonhosted.org/packages/08/06/05210facefcfc2f255472f4d6f8dca17bc3b2c177c0996233469ec645e14/pylint-django-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "774cbc7119615bf06d2f3eb88060cb66", "sha256": "24e3408f82b280da7a9ad3b30c118fe33ffacc5a8c63fbe5ab5a18302d60c8c2" }, "downloads": -1, "filename": "pylint-django-0.5.5.tar.gz", "has_sig": false, "md5_digest": "774cbc7119615bf06d2f3eb88060cb66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10015, "upload_time": "2014-10-01T05:44:49", "url": "https://files.pythonhosted.org/packages/fb/68/fed2e4d3052dedc2eb72beffbd96fff11e4ea8a5ab008164ef7c7c0ba5f1/pylint-django-0.5.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "4eace40f983889d2586f185a1abf1d93", "sha256": "f688cfc91d5733378fd7b193e35d54bff57f9f41790a71e68c2e2b1df01adf60" }, "downloads": -1, "filename": "pylint-django-0.6.tar.gz", "has_sig": false, "md5_digest": "4eace40f983889d2586f185a1abf1d93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10657, "upload_time": "2015-01-31T14:49:06", "url": "https://files.pythonhosted.org/packages/d4/f6/fec8612e3ea1b15becaffa2291fccce927611343ea1b2d5aa8512e4a907c/pylint-django-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "3ca0bd770f2774b3fa7de9be30986a6e", "sha256": "d38ae4f2057c845c660acaa28437ad411c1ac582ddb45e7daaf03b489b6ab743" }, "downloads": -1, "filename": "pylint-django-0.6.1.tar.gz", "has_sig": false, "md5_digest": "3ca0bd770f2774b3fa7de9be30986a6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10910, "upload_time": "2015-06-18T05:33:28", "url": "https://files.pythonhosted.org/packages/ac/ee/78749fa52295e11c68073c539b5c27100d61a9e0a910d65b83f9c06d3b57/pylint-django-0.6.1.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "e6217877cca0ed7d2997b881207f4672", "sha256": "3008890e63f503002b0f388c75f951ee9e7ddf78c364ab91709f3229d6e93e49" }, "downloads": -1, "filename": "pylint-django-0.7.tar.gz", "has_sig": false, "md5_digest": "e6217877cca0ed7d2997b881207f4672", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11935, "upload_time": "2015-12-01T22:26:52", "url": "https://files.pythonhosted.org/packages/15/81/bbccf3bec7c96fd6000a4ca21b8f8834dbcf8db1c1697103760c49dceb62/pylint-django-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "4e170e1276bb00ad4996f24daae1786e", "sha256": "0eec500647a68f986250f9a8e9b233b3f5dd397fba37a80ace6b985f7a70de30" }, "downloads": -1, "filename": "pylint-django-0.7.1.tar.gz", "has_sig": false, "md5_digest": "4e170e1276bb00ad4996f24daae1786e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11939, "upload_time": "2015-12-02T16:44:54", "url": "https://files.pythonhosted.org/packages/15/4a/4742d399b528751dbd2d45621a6a3f5f14f9b3f64cf8413a20aad4a3fc20/pylint-django-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "1df4a4d183f34ffa109906609674fb8e", "sha256": "b8e51d6b694401e23040ddafc3a4c7da92faaa1718b007ad66aa36e40ec84506" }, "downloads": -1, "filename": "pylint-django-0.7.2.tar.gz", "has_sig": false, "md5_digest": "1df4a4d183f34ffa109906609674fb8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12752, "upload_time": "2016-06-16T12:02:56", "url": "https://files.pythonhosted.org/packages/ca/dd/128127370cac5fa97136ceaa4f772060fb73c97cce214d5a04c6d4182d16/pylint-django-0.7.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "51a40bd25c7196a63dc450d0897aa6f9", "sha256": "87edcdb8d8dee96e143c29f15d81537d3a11c9668973281332e73c4423c685ea" }, "downloads": -1, "filename": "pylint_django-0.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "51a40bd25c7196a63dc450d0897aa6f9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 36115, "upload_time": "2018-01-20T07:56:38", "url": "https://files.pythonhosted.org/packages/74/8a/25ee508acd19af4cc1fb6fb45f3d6abe487ef5ba584a587ea13353adf604/pylint_django-0.8.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "074e1627ec9a72a98d10f6d77bb86eb6", "sha256": "46589a147fee3e3f8a66f5626bcee5de79ee58cb907f1131ee6515ca1df33162" }, "downloads": -1, "filename": "pylint-django-0.8.0.tar.gz", "has_sig": false, "md5_digest": "074e1627ec9a72a98d10f6d77bb86eb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26265, "upload_time": "2018-01-20T07:55:01", "url": "https://files.pythonhosted.org/packages/42/09/c730994b340c1da54e6fbea6100bc93bded78cce33a75cf2b4b94afc4ca0/pylint-django-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "a54cb9dbeaa226328b2943f7a877b13f", "sha256": "5a9c47660623cd178228a4a8666eedf1f4824df5deb58c21a09b2015f72beda2" }, "downloads": -1, "filename": "pylint-django-0.8.1.tar.gz", "has_sig": false, "md5_digest": "a54cb9dbeaa226328b2943f7a877b13f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26310, "upload_time": "2018-12-14T09:40:13", "url": "https://files.pythonhosted.org/packages/8b/bf/32e7c077c7b1ac0cbdfd126d1c62a8446752ea7c13c896ca06a7a10ec942/pylint-django-0.8.1.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "8c5efe58f2a1ba002ba10b1a1805acca", "sha256": "3ed4117b5d845e3555cac76938bbfe158e85d6887f3f763f94bc48e91177cb84" }, "downloads": -1, "filename": "pylint_django-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8c5efe58f2a1ba002ba10b1a1805acca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 36475, "upload_time": "2018-01-24T22:53:23", "url": "https://files.pythonhosted.org/packages/3b/ff/01b151e6a4a7c205021517425e76cbdd3099aa11fb47fc6db7de4b675c0d/pylint_django-0.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3a85d37a1cd56cabc518c2d0673bb83f", "sha256": "7a3267eb4513ece61889cbf406d98752fd1a998bcb408eec7d21262358f8f790" }, "downloads": -1, "filename": "pylint-django-0.9.0.tar.gz", "has_sig": false, "md5_digest": "3a85d37a1cd56cabc518c2d0673bb83f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26577, "upload_time": "2018-01-24T22:53:31", "url": "https://files.pythonhosted.org/packages/27/bf/39f42e35453b86b7bde7ac9f4bd9a6b4c84da0593ef69b25481d3a873e5e/pylint-django-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "2663c45306a6d82928511ce1a8cbaa84", "sha256": "caa87de582ac8d565ae020c780cb7cb8f117d903641edfde0c69faf994549b38" }, "downloads": -1, "filename": "pylint_django-0.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2663c45306a6d82928511ce1a8cbaa84", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 36986, "upload_time": "2018-02-26T21:42:11", "url": "https://files.pythonhosted.org/packages/73/ba/e214dcd1c8a1732f886ab293c7cee4f1a6f2cac54d1b2bdfcf8332cbd8bb/pylint_django-0.9.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7483195006289b377c08c32015aaec3a", "sha256": "80d42bf98002f2f452c644887375d9462317434ccf8d8bcaffad5ebd1cb5fab2" }, "downloads": -1, "filename": "pylint-django-0.9.1.tar.gz", "has_sig": false, "md5_digest": "7483195006289b377c08c32015aaec3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26976, "upload_time": "2018-02-26T21:42:16", "url": "https://files.pythonhosted.org/packages/6f/5f/58f1adb27e82b98130e9226476f7e9e96b4dc1155b44197e11a335691ecc/pylint-django-0.9.1.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "0dc721f947f6ebf0d0fa01b0858346ae", "sha256": "0ccb38ac08df8f380e2a7d86b40b46ba4d68c64993c4b8c88a6ba6cd1a644ecc" }, "downloads": -1, "filename": "pylint_django-0.9.3-py3-none-any.whl", "has_sig": false, "md5_digest": "0dc721f947f6ebf0d0fa01b0858346ae", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 38866, "upload_time": "2018-03-07T21:22:09", "url": "https://files.pythonhosted.org/packages/08/7a/52c035b5bc91abf11d5818abad552f5507774a95dd8f2de2a7946216fca1/pylint_django-0.9.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e3b0bdee2db83ebc6e29361175620ff", "sha256": "994715c3f0ff37d86def2224bf15b46b482f3b75096f9d9cc9f4cb1e8d58b0ac" }, "downloads": -1, "filename": "pylint-django-0.9.3.tar.gz", "has_sig": false, "md5_digest": "0e3b0bdee2db83ebc6e29361175620ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30728, "upload_time": "2018-03-07T21:22:10", "url": "https://files.pythonhosted.org/packages/df/87/ebf64e5fcec1861a71999b134d0a1394f2351c58b3ca32f733ab0ae55619/pylint-django-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "4d13585c29a55692be8f75c7fe5cb1bd", "sha256": "d014c0a64996914f748cd7d803cce5e41496ca5898f3a69c54d4b600aa72f7de" }, "downloads": -1, "filename": "pylint_django-0.9.4-py3-none-any.whl", "has_sig": false, "md5_digest": "4d13585c29a55692be8f75c7fe5cb1bd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39011, "upload_time": "2018-03-12T20:43:38", "url": "https://files.pythonhosted.org/packages/45/93/345de0e3ba5c9010b09697b189beac6d511c01db20ec870b47a0b7bc176b/pylint_django-0.9.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7012ed87de4db8bb3330edfc9fcaef86", "sha256": "681f5105c98c9a96ed10895ad346d132659a56c313181a9e2642f6fb5029f5f2" }, "downloads": -1, "filename": "pylint-django-0.9.4.tar.gz", "has_sig": false, "md5_digest": "7012ed87de4db8bb3330edfc9fcaef86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30870, "upload_time": "2018-03-12T20:43:45", "url": "https://files.pythonhosted.org/packages/17/bb/0f5b4ed2822ce476f8cde1a86bfcee2f988c09d51a4df839b97dbb6393bf/pylint-django-0.9.4.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "680614d265870a02a02ed70d37a842f5", "sha256": "5c5a20c443b4e70fdc8c47e42cff8ce79c953954e918f8e559f6e1d05a971585" }, "downloads": -1, "filename": "pylint_django-2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "680614d265870a02a02ed70d37a842f5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58452, "upload_time": "2018-07-25T06:42:11", "url": "https://files.pythonhosted.org/packages/47/7a/ff0112899b4de9addad71f50026a47e572ed535584c9f84899d4f50e4af1/pylint_django-2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3abfc5d7b82ab37d0ff343eb2d67f8a5", "sha256": "70f2b5397aa2468373fcf87d64a700b359050e905e56e2dbaf954e6edb04c593" }, "downloads": -1, "filename": "pylint-django-2.0.tar.gz", "has_sig": false, "md5_digest": "3abfc5d7b82ab37d0ff343eb2d67f8a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42933, "upload_time": "2018-07-25T06:42:17", "url": "https://files.pythonhosted.org/packages/80/88/7b40a2d3572678677fdc75c94dff7db43ab2ea5f02d9fdbff9c7e0704213/pylint-django-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "2f9feb86373e59fd8d10bbe72b07280e", "sha256": "3950201e5b02c03d6498fcf286542d4fc212095029a403360269d16fab1e9f3f" }, "downloads": -1, "filename": "pylint_django-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2f9feb86373e59fd8d10bbe72b07280e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 60123, "upload_time": "2018-08-20T13:05:18", "url": "https://files.pythonhosted.org/packages/0a/3c/5b6e0a1459d7082c6b151ec257a8855c235c21e22d002dafaebaa06e3164/pylint_django-2.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a619a9987259c9fc7a3a699a15ad1349", "sha256": "10dc93b443b77f549f2fe605a01f7ce9ff1a1fe9340e63a37c7b34f5b7ed530f" }, "downloads": -1, "filename": "pylint-django-2.0.1.tar.gz", "has_sig": false, "md5_digest": "a619a9987259c9fc7a3a699a15ad1349", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44148, "upload_time": "2018-08-20T13:05:11", "url": "https://files.pythonhosted.org/packages/c3/51/b42068bbc129bdb7ac82fd10276c8c1fb5d20f232f7aef735ed825742627/pylint-django-2.0.1.tar.gz" } ], "2.0.10": [ { "comment_text": "", "digests": { "md5": "41f8bd9fb8a62d9e6b44335861f93d24", "sha256": "c7cb6384ea7b33ea77052a5ae07358c10d377807390ef27b2e6ff997303fadb7" }, "downloads": -1, "filename": "pylint_django-2.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "41f8bd9fb8a62d9e6b44335861f93d24", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67060, "upload_time": "2019-07-07T12:52:51", "url": "https://files.pythonhosted.org/packages/da/fb/0591fabae68a5f4b24652053a232ead9e0e3e18b77260d087e8afabb7ccc/pylint_django-2.0.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1bb84a50ca7fb90c678464d69fa0970b", "sha256": "75c69d1ec2275918c37f175976da20e2f1e1e62e067098a685cd263ffa833dfd" }, "downloads": -1, "filename": "pylint-django-2.0.10.tar.gz", "has_sig": false, "md5_digest": "1bb84a50ca7fb90c678464d69fa0970b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48274, "upload_time": "2019-07-07T12:52:53", "url": "https://files.pythonhosted.org/packages/45/15/382b28daff5fe123ee7a222370e9460cdc5d582d65dc4c82d3151f08ec57/pylint-django-2.0.10.tar.gz" } ], "2.0.11": [ { "comment_text": "", "digests": { "md5": "68ed23bf11966c9631a77d9093d1232d", "sha256": "e1273decd5ee60eaf9a742f62dd67bacb7ccf2cb1e7641dba0361108d0dff455" }, "downloads": -1, "filename": "pylint_django-2.0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "68ed23bf11966c9631a77d9093d1232d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67186, "upload_time": "2019-07-10T13:24:50", "url": "https://files.pythonhosted.org/packages/f3/e0/5b8a6696bab63174e2940286b4f4eb5400ab14343e38b2070de0d4b754a8/pylint_django-2.0.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5a87a9bd020526ad1ad7d4d89c5fdbd", "sha256": "6740b60dd94b6896cffa28d7fe1bb5dd167cbdcb3d9fb3db01b30390ea18b987" }, "downloads": -1, "filename": "pylint-django-2.0.11.tar.gz", "has_sig": false, "md5_digest": "e5a87a9bd020526ad1ad7d4d89c5fdbd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48413, "upload_time": "2019-07-10T13:24:52", "url": "https://files.pythonhosted.org/packages/7d/07/b75084430b7f2db89b70d7c34af968951aa4e5c1e8289ddd4dd0708c35f0/pylint-django-2.0.11.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "874d5f5fcec478a92a8ea694dbffc5c4", "sha256": "bf313f10b68ed915a34f0f475cc9ff8c7f574a95302beb48b79c5993f7efd84c" }, "downloads": -1, "filename": "pylint_django-2.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "874d5f5fcec478a92a8ea694dbffc5c4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 60822, "upload_time": "2018-08-26T19:37:36", "url": "https://files.pythonhosted.org/packages/fb/52/baefcc89acf7d9f8960fb0a45aa0cd44dc380eae24cebb9eb576ff101c79/pylint_django-2.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cb2199c48a337ec0ed9a046398710471", "sha256": "5dc5f85caef2c5f9e61622b9cbd89d94edd3dcf546939b2974d18de4fa90d676" }, "downloads": -1, "filename": "pylint-django-2.0.2.tar.gz", "has_sig": false, "md5_digest": "cb2199c48a337ec0ed9a046398710471", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44542, "upload_time": "2018-08-26T19:37:43", "url": "https://files.pythonhosted.org/packages/a3/50/005323386b346bb2faa3ba553f2a2a07f5cbd6bea552cefe624f5ba45b8d/pylint-django-2.0.2.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "e148bc069aeea5313758cbd887876eb5", "sha256": "fe2bcf0debeb5ef3f8350fccce5abf2c91fd036acdb55737fe2b6ce09b9240d3" }, "downloads": -1, "filename": "pylint_django-2.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "e148bc069aeea5313758cbd887876eb5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 61842, "upload_time": "2018-12-17T09:13:39", "url": "https://files.pythonhosted.org/packages/c7/15/27cecc8048956a55afcf4971e38bad83493b2c183ac5be74eadaea3494e1/pylint_django-2.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6dba6d7a22d5dcc004e2ea6f0577fdb1", "sha256": "f2899a0f33c9bede0c9912ade9a57bbfc4b400b4912c59bea055353f9d2ff56f" }, "downloads": -1, "filename": "pylint-django-2.0.4.tar.gz", "has_sig": false, "md5_digest": "6dba6d7a22d5dcc004e2ea6f0577fdb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48211, "upload_time": "2018-11-26T15:28:53", "url": "https://files.pythonhosted.org/packages/8e/cc/a2e6fa06c5df890bf2b5695d5634eeb70587d31985bd2e3a50d5545ec06a/pylint-django-2.0.4.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "dae56cf8a8ce51ee88c44959d2e15a5d", "sha256": "ea3ae50a42904feecceb408d173dec00098938f3e5690d2c0fda2dda5dde5825" }, "downloads": -1, "filename": "pylint_django-2.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "dae56cf8a8ce51ee88c44959d2e15a5d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 62041, "upload_time": "2018-12-17T09:22:23", "url": "https://files.pythonhosted.org/packages/78/d7/92064546f54037c7e11f152d874f523cf1706ff5fd212be522ae26ba9087/pylint_django-2.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "887ad797c85c8e22f2a4deaa33044187", "sha256": "23d673c940710081d1e7417886cd14b0eca39ca9d9e50373961903cf2a607ccd" }, "downloads": -1, "filename": "pylint-django-2.0.5.tar.gz", "has_sig": false, "md5_digest": "887ad797c85c8e22f2a4deaa33044187", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45401, "upload_time": "2018-12-17T09:22:25", "url": "https://files.pythonhosted.org/packages/d6/d5/7e2afddbe57bfa8f3f397ed562e50ee3033ffee0ec649c1cac93de7b00df/pylint-django-2.0.5.tar.gz" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "08f77135606f0249d8cb7e41b5df2b67", "sha256": "b4e2c73a6c8b7a38c901c476da0a1eeb34841e6b7352c3e88f3f8035640d5d00" }, "downloads": -1, "filename": "pylint_django-2.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "08f77135606f0249d8cb7e41b5df2b67", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 62152, "upload_time": "2019-02-27T22:05:15", "url": "https://files.pythonhosted.org/packages/36/52/9fceab6728db889e9d4c419a7988315f9e34f8ef421f37b58247847e9cc3/pylint_django-2.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "27514a665850fce66bfaebb99c308881", "sha256": "e313047ca5c2ce0abd17da75ce8c97227cb3411c1d449ade948a485d6dc4bfdd" }, "downloads": -1, "filename": "pylint-django-2.0.6.tar.gz", "has_sig": false, "md5_digest": "27514a665850fce66bfaebb99c308881", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49244, "upload_time": "2019-02-27T22:05:17", "url": "https://files.pythonhosted.org/packages/ae/50/a4c913165cdd4a67720af8ff698bf49404d948ff42f3b956ccc55a3619dd/pylint-django-2.0.6.tar.gz" } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "b45d7dbd1615a98b24b3f22343e6c085", "sha256": "67e1b9fbf9b8f608052130fc22be4953cdbfbae4837fff6b76343f62ef072614" }, "downloads": -1, "filename": "pylint_django-2.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "b45d7dbd1615a98b24b3f22343e6c085", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 62917, "upload_time": "2019-04-16T11:34:27", "url": "https://files.pythonhosted.org/packages/4e/4c/d7333ac633d31fa135a4b3e07e17f96e2778c7eaf7aed16d62fc6f294711/pylint_django-2.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9f15803e2dfccd570a44b1b00f5874f1", "sha256": "4689dd6e9e392528e00ee13983f06ef489dd46bdda124a4176dae5a9096434d0" }, "downloads": -1, "filename": "pylint-django-2.0.7.tar.gz", "has_sig": false, "md5_digest": "9f15803e2dfccd570a44b1b00f5874f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46359, "upload_time": "2019-04-16T11:34:29", "url": "https://files.pythonhosted.org/packages/68/17/4a30999ef16d9b62851cfea11c31e443c425f49e55c5719c351399b30d52/pylint-django-2.0.7.tar.gz" } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "68450ea2caa3d2e6ca10b80e1ba81507", "sha256": "6949f790249d10f95f34e7bc1673ad4570c30bc5dcbd843eab99493b2e04079b" }, "downloads": -1, "filename": "pylint_django-2.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "68450ea2caa3d2e6ca10b80e1ba81507", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 63179, "upload_time": "2019-04-18T08:42:50", "url": "https://files.pythonhosted.org/packages/2a/4e/8f6f2db4f33562708dbd24be69e95651252b5a5673a20ff5121f0f4b5877/pylint_django-2.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "72345849603e158fb3d36b6b8bcde48c", "sha256": "befb69b47843ffd8a0af7b0f7555d819f5b2dab425b4f07ed229cc2dbf01ad94" }, "downloads": -1, "filename": "pylint-django-2.0.8.tar.gz", "has_sig": false, "md5_digest": "72345849603e158fb3d36b6b8bcde48c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46611, "upload_time": "2019-04-18T08:42:52", "url": "https://files.pythonhosted.org/packages/49/a0/0a4ef0b0978bf9a47ce4797681149ce418a3714d3e6cedde39ddd9147f39/pylint-django-2.0.8.tar.gz" } ], "2.0.9": [ { "comment_text": "", "digests": { "md5": "5893247fe28854259e23ee75ab307602", "sha256": "e4abeef83f6f6577951ca0b2d12f73fc0c53dd33272fee4982c8cb42e4ae64ad" }, "downloads": -1, "filename": "pylint_django-2.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "5893247fe28854259e23ee75ab307602", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 65946, "upload_time": "2019-04-26T10:26:26", "url": "https://files.pythonhosted.org/packages/07/08/e7235bba5762e1ea77ba287443dc16a3b7c0aed9d6c0b856c66624301e65/pylint_django-2.0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "70fb2bedce9ee81b86762afe84f17f25", "sha256": "c0562562bffbdc97a26d007d818231348633282bec66ba445540a036a0ae76f5" }, "downloads": -1, "filename": "pylint-django-2.0.9.tar.gz", "has_sig": false, "md5_digest": "70fb2bedce9ee81b86762afe84f17f25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47769, "upload_time": "2019-04-26T10:26:28", "url": "https://files.pythonhosted.org/packages/ec/5c/864814b9c09601f9c7c2ad7c223e757b8702bb0e1b394cc4c0c441c20da8/pylint-django-2.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "68ed23bf11966c9631a77d9093d1232d", "sha256": "e1273decd5ee60eaf9a742f62dd67bacb7ccf2cb1e7641dba0361108d0dff455" }, "downloads": -1, "filename": "pylint_django-2.0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "68ed23bf11966c9631a77d9093d1232d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67186, "upload_time": "2019-07-10T13:24:50", "url": "https://files.pythonhosted.org/packages/f3/e0/5b8a6696bab63174e2940286b4f4eb5400ab14343e38b2070de0d4b754a8/pylint_django-2.0.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5a87a9bd020526ad1ad7d4d89c5fdbd", "sha256": "6740b60dd94b6896cffa28d7fe1bb5dd167cbdcb3d9fb3db01b30390ea18b987" }, "downloads": -1, "filename": "pylint-django-2.0.11.tar.gz", "has_sig": false, "md5_digest": "e5a87a9bd020526ad1ad7d4d89c5fdbd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48413, "upload_time": "2019-07-10T13:24:52", "url": "https://files.pythonhosted.org/packages/7d/07/b75084430b7f2db89b70d7c34af968951aa4e5c1e8289ddd4dd0708c35f0/pylint-django-2.0.11.tar.gz" } ] }