{ "info": { "author": "Alex Kavanaugh", "author_email": "kavanaugh.development@outlook.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3.4", "Topic :: Database :: Database Engines/Servers", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities" ], "description": "django-ewiz\n%%%%%%%%%%%\n\nA non-relational Django database backend that utilizes EnterpriseWizard's REST interface.\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n:Version: 1.5.4\n:Dependencies: Python 3.4+, Django>=1.5, djangotoolbox>=1.6.2, requests>=2.2.0\n:Home page: https://github.com/kavdev/django-ewiz\n:Author: Alex Kavanaugh \n:License: GNU LGPL (http://www.gnu.org/licenses/lgpl.html)\n\n*NOTE:* Versions 1.3+ will work with the EnterpriseWizard anti-sql block. In order to achieve this, regular expression and case-insensitive query operations were removed.\n\nInstallation\n============\n\nRun ``pip install django-ewiz``\n\nAdd *django_ewiz* to ``INSTALLED_APPS``\n\n.. code:: python\n\n INSTALLED_APPS = (\n ...\n 'django_ewiz',\n ...\n )\n\nUsage\n============\n\nBasic Usage\n-----------\n\nIn the ``DATABASES`` settings dictionary, simply use *django_ewiz* as the ENGINE key.\n\n.. code:: python\n\n 'default': {\n 'ENGINE': 'django_ewiz',\n 'NAME': '', # The name of the knowlegebase\n 'USER': '', # The name of the user\n 'PASSWORD': '', # The user's password\n 'HOST': '', # EnterpriseWizard's REST base url, generally 'www.example.com/ewws/'. Don't include the protocol string (e.g. 'http://').\n 'PORT': '', # Either 80 or 443 (HTTP or HTTPS requests only)\n 'NUM_CONNECTIONS': '', # Default: 1, Allows multiple concurrent connections to be used when retrieving multiple tickets in a query. \n },\n\nThat's it! All database operations performed will be abstracted and should function as the usual engines do (unless what you wish to do conflicts with the options below).\n\n\n*The following query operations are supported:*\n\n* iexact\n* icontains\n* in\n* gt\n* gte\n* lt\n* lte\n* istartswith\n* iendswith\n* range\n* year\n* isnull\n\n*The following query operations will be converted to their respective case-insensitive forms:* `(version 1.3+)`\n\n* exact\n* contains\n* startswith\n* endswith\n\n*The following query operations are no longer supported:* `(version 1.3+)`\n\n* regex\n* iregex\n\n*NOTE:* Not all ticket fields can be changed via REST. Add ``editable=False`` as a model option to remove DatabaseErrors.\n\n\nRelated Fields\n--------------\n\nEnterpriseWizard supports foreign table relationships in it's REST API. To mark a field as related, simply add ``help_text=':'`` as a model field option.\n\n.. code:: python\n\n requestor_username = CharField(help_text=':', db_column='submitter_username')\n\nSurprisingly many fields are related fields. If a DatabaseError is raised and you aren't sure why, try making the field related.\n\n\nFile Uploads\n------------\n\ndjango-ewiz does support file uploads - just not in a direct manner (binary uploads to the file field won't work [more research on abstracting that will be done later])\n\nTo mark a field as a file field, add ``help_text='file'`` as a model field option. Since trying to modify the field directly won't work, adding ``editable=False`` is recommended to avoid confusion.\n\n.. code:: python\n\n file_field = CharField(help_text='file', editable=False, db_column='attached_files')\n\nTo upload a file, use the provided EwizAttacher class (``from django_ewiz import EwizAttacher``) with the following parameters:\n\n* `settingsDict` - the DATABASES dictionary that contains ewiz connection settings. e.g. settings.DATABASES['default']\n* `model` - the model instance to which a file should be uploaded (the model must include one and only one file field). e.g. models.AccountRequest.objects.get(ticket_id = 1)\n* `file_reference` - a Python file object. If the file is coming from a django form, grab it via request.FILES['form_field_name'].file\n* `file_name` - the desired file name. If the file is coming from a django form, you can grab its name via request.FILES['form_field_name'].name\n\n\nFile Upload Example\n===================\n\n\n`forms.py`\n\n.. code:: python\n\n from django.forms import Form, FileField\n\n class EwizUploadForm(Form):\n uploaded_file = FileField(required=True)\n\n\n`models.py`\n\n.. code:: python\n\n from django.db.models import Model, AutoField, CharField\n\n class AccountRequest(Model):\n ticket_id = AutoField(primary_key=True, db_column='id')\n subject_username = CharField(help_text=':')\n\n # Use this field only in conjunction with EwizAttacher - do not attempt to directly populate it\n file_field = CharField(help_text='file', editable=False, db_column='attached_files')\n\n class Meta:\n db_table = u'account_request'\n managed = False\n verbose_name = u'Account Request'\n\n`views.py`\n\n.. code:: python\n\n from django.conf import settings\n from django.views.generic.edit import FormView\n\n from django_ewiz import EwizAttacher\n\n from .forms import EwizUploadForm\n from .models import AccountRequest\n\n class UploadDemoView(FormView):\n template_name = \"ewizdemo.html\"\n form_class = EwizUploadForm\n\n def form_valid(self, form):\n # Create a new account request\n ticket = AccountRequest(subject_username=self.request.user.username)\n ticket.save()\n\n # Grab the file\n file_reference = self.request.FILES['uploaded_file'].file\n\n # Upload the file\n EwizAttacher(settings_dict=settings.DATABASES['default'], model=ticket, file_reference=file_reference, file_name=self.request.user.username + u'.pdf').attach_file()", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/kavdev/django-ewiz", "keywords": "django ewiz enterprise wizard srs", "license": "GNU LGPL (http://www.gnu.org/licenses/lgpl.html)", "maintainer": null, "maintainer_email": null, "name": "django-ewiz", "package_url": "https://pypi.org/project/django-ewiz/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-ewiz/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/kavdev/django-ewiz" }, "release_url": "https://pypi.org/project/django-ewiz/1.5.4/", "requires_dist": null, "requires_python": null, "summary": "A non-relational Django database backend that utilizes EnterpriseWizard's REST interface.", "version": "1.5.4" }, "last_serial": 4691718, "releases": { "1.1.17": [ { "comment_text": "", "digests": { "md5": "1742a65d90b3ef9c98e4932a1fbf3b00", "sha256": "5e17d47940d18232a1dcd0b2288bc04d0cee63d3e7ba49c591bc8b715c8bbea6" }, "downloads": -1, "filename": "django-ewiz-1.1.17.tar.gz", "has_sig": false, "md5_digest": "1742a65d90b3ef9c98e4932a1fbf3b00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43697, "upload_time": "2013-08-23T23:29:15", "url": "https://files.pythonhosted.org/packages/78/da/98435c86991b221e043f44f37ccd7d4dfd26d6d7566185ec9261300c8471/django-ewiz-1.1.17.tar.gz" } ], "1.1.19": [ { "comment_text": "", "digests": { "md5": "56d37676f382bb7651d57aca1d94d3b7", "sha256": "629d481a61b5849264682e32e2aae1812033f92d997ef758f9b79725c897bbc2" }, "downloads": -1, "filename": "django-ewiz-1.1.19.tar.gz", "has_sig": false, "md5_digest": "56d37676f382bb7651d57aca1d94d3b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43724, "upload_time": "2013-10-05T17:18:07", "url": "https://files.pythonhosted.org/packages/55/5e/20ac4d6534f6385bd900392a16cad7c93912f5c0059dbfbcf515b862541b/django-ewiz-1.1.19.tar.gz" } ], "1.1.20": [ { "comment_text": "", "digests": { "md5": "0319d95da42d8e8f784917d1731bd0ec", "sha256": "b9c05cedcb5a55eaec414abb2a33e2351df34b167bcc50f7daf0132d0edadd7d" }, "downloads": -1, "filename": "django-ewiz-1.1.20.tar.gz", "has_sig": false, "md5_digest": "0319d95da42d8e8f784917d1731bd0ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43750, "upload_time": "2014-01-10T00:45:24", "url": "https://files.pythonhosted.org/packages/b8/a6/a6f2f791519c5e8e90e82234334149ee1fc2496eef329586c8d203b5f9ad/django-ewiz-1.1.20.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "a07b3d0daa1f639a7de8b5f18935e2f6", "sha256": "ed3caf18def4f9ff663e253bb0cee997b90d97ed0469a741494991985decafd2" }, "downloads": -1, "filename": "django-ewiz-1.2.0.tar.gz", "has_sig": false, "md5_digest": "a07b3d0daa1f639a7de8b5f18935e2f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25035, "upload_time": "2014-01-12T08:28:46", "url": "https://files.pythonhosted.org/packages/b3/ee/bfd75957613442d594456f20558ca61bf9012d292b9af053fb1af090a39f/django-ewiz-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "812a71a71e021ae4f8b86e53de95c7a0", "sha256": "31c5aa4fb144fc8bede0301fee8f1c49ddf55db2f3d7a8ca8097e4083ee69d86" }, "downloads": -1, "filename": "django-ewiz-1.2.1.tar.gz", "has_sig": false, "md5_digest": "812a71a71e021ae4f8b86e53de95c7a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24984, "upload_time": "2014-01-14T20:25:21", "url": "https://files.pythonhosted.org/packages/29/6d/c3d04bb86326f472b2a2cb596d9953348aceea834ae75b5666223a011ee7/django-ewiz-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "c853727007057a9a1ba43a74db9f8cfa", "sha256": "e12ab27b7a921be3b9fbb747f36abb7caf529d2ea3f939ad81dbca70ea7756f1" }, "downloads": -1, "filename": "django-ewiz-1.2.2.tar.gz", "has_sig": false, "md5_digest": "c853727007057a9a1ba43a74db9f8cfa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25017, "upload_time": "2014-02-28T01:10:31", "url": "https://files.pythonhosted.org/packages/9b/a4/a9462cf5163806d06e81740ed890e01220570db4584187e19f253c5c3af1/django-ewiz-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "91c1df2b6c5bf69684467024c8d5ea29", "sha256": "e6567dacd10443d36c7119c6fdb06b17f5c3b3dbfaa98ed58ad3f9786c70a774" }, "downloads": -1, "filename": "django-ewiz-1.2.3.tar.gz", "has_sig": false, "md5_digest": "91c1df2b6c5bf69684467024c8d5ea29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25031, "upload_time": "2014-02-28T03:14:47", "url": "https://files.pythonhosted.org/packages/a6/f8/8a4225227aa2dff12465f6dddbff15ce0f84b730e041537a22af1c86d3a1/django-ewiz-1.2.3.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "69169cf83f6d1728074a811ca9730b98", "sha256": "0d625d4548603b5c8830fdc5ae2664b65d7b8c7722bc10db45970de0a10f0c2c" }, "downloads": -1, "filename": "django-ewiz-1.3.0.tar.gz", "has_sig": false, "md5_digest": "69169cf83f6d1728074a811ca9730b98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25531, "upload_time": "2014-07-31T04:16:26", "url": "https://files.pythonhosted.org/packages/b5/11/b8519d2a9af99baad8018dd528063002e587b4fe497fc59f9b0338e228d5/django-ewiz-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "7e3ca3dfcaa0f9aaa984cf90ad6a567c", "sha256": "c05fc13a8fe8250c6b97faa4bccdeb82f9793db301f49f528e822f95d742f535" }, "downloads": -1, "filename": "django-ewiz-1.3.1.tar.gz", "has_sig": false, "md5_digest": "7e3ca3dfcaa0f9aaa984cf90ad6a567c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25553, "upload_time": "2014-08-19T19:16:32", "url": "https://files.pythonhosted.org/packages/73/d4/de7621899cb6a7eb8c2c894dadfd733a3b8b0598fc9079979a9a67682c74/django-ewiz-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "4c3d08cf8f45e4f20477312322df839c", "sha256": "abc0efdb2c359374a43484bdd9556c24398e5bca60a76e5a7de1bba6066a5f50" }, "downloads": -1, "filename": "django-ewiz-1.3.2.tar.gz", "has_sig": false, "md5_digest": "4c3d08cf8f45e4f20477312322df839c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25601, "upload_time": "2014-09-24T20:53:13", "url": "https://files.pythonhosted.org/packages/70/e1/03acd02f21f4ba54c2f84586476cb8f40b53b98841b54c8700b724fb1f0b/django-ewiz-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "577919fff5ab0ff5d69d576462ec8234", "sha256": "dd9022844591ffb7f9923b30ff0c65ad906d7b5e305dbf3d522c7da6f3f09a21" }, "downloads": -1, "filename": "django-ewiz-1.3.3.tar.gz", "has_sig": false, "md5_digest": "577919fff5ab0ff5d69d576462ec8234", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28682, "upload_time": "2014-10-06T07:55:27", "url": "https://files.pythonhosted.org/packages/be/72/d40238f87751eb6a4b7023ba969345e4c4bcd5dd3c673dc590193c1240e2/django-ewiz-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "4b53599b5d3fdd27e9ba8b9d4b53736b", "sha256": "ddd23011b2820745828e632d4ba1cd525db58cc8864960fed844bf4b00067e43" }, "downloads": -1, "filename": "django-ewiz-1.3.4.tar.gz", "has_sig": false, "md5_digest": "4b53599b5d3fdd27e9ba8b9d4b53736b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28705, "upload_time": "2014-10-06T21:07:46", "url": "https://files.pythonhosted.org/packages/fb/9f/7f580ef2de0a732f93518830e1dfefee64923d2a0d5125c34c7eb5e2ed46/django-ewiz-1.3.4.tar.gz" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "83e47bd7d0073bfa3326e605cc79621b", "sha256": "80bbfc2ffc7383bdda5eb5cba5908bcb48d61912f65993fafe720721c01a161e" }, "downloads": -1, "filename": "django-ewiz-1.3.5.tar.gz", "has_sig": false, "md5_digest": "83e47bd7d0073bfa3326e605cc79621b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28722, "upload_time": "2014-10-07T06:02:28", "url": "https://files.pythonhosted.org/packages/c3/f3/9016384e22f593d769983f461cfc27fcef0be822a6940a973528d129cf3e/django-ewiz-1.3.5.tar.gz" } ], "1.3.6": [ { "comment_text": "", "digests": { "md5": "ec878045ac785ada9dc682767f5e9b5c", "sha256": "986e3f7172c8301a195843391829c38214c533f4399e238662d2df8cbdd5210f" }, "downloads": -1, "filename": "django-ewiz-1.3.6.tar.gz", "has_sig": false, "md5_digest": "ec878045ac785ada9dc682767f5e9b5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28756, "upload_time": "2014-10-07T07:31:51", "url": "https://files.pythonhosted.org/packages/c1/37/6edd8834c59e27e7e8b19cbc5c9e10750015ce27d6283b023bdde2719cdd/django-ewiz-1.3.6.tar.gz" } ], "1.3.7": [ { "comment_text": "", "digests": { "md5": "d30c3fc497b4cbb2b9631b9be8c9a718", "sha256": "dd56412826857dfff724b23e672677ef0c41b5ebaa66cca4f6e37d9bf8084e38" }, "downloads": -1, "filename": "django-ewiz-1.3.7.tar.gz", "has_sig": false, "md5_digest": "d30c3fc497b4cbb2b9631b9be8c9a718", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28758, "upload_time": "2014-10-07T07:36:52", "url": "https://files.pythonhosted.org/packages/0e/97/d0b5fdfb580c8dacbd7bffda1abf9e1851b637f29a9ef0265b9329f05c83/django-ewiz-1.3.7.tar.gz" } ], "1.3.8": [ { "comment_text": "", "digests": { "md5": "a82623ef3b9675f4b5fb33610d46d35a", "sha256": "a690598d8662a6613f603b387de56931803929c5945b3bc868c9da8417757759" }, "downloads": -1, "filename": "django-ewiz-1.3.8.tar.gz", "has_sig": false, "md5_digest": "a82623ef3b9675f4b5fb33610d46d35a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28773, "upload_time": "2014-10-13T18:36:49", "url": "https://files.pythonhosted.org/packages/98/6a/bb6fbba48dfc67a14af1463f7ed81f08256634e22460879d8aadb0b439a9/django-ewiz-1.3.8.tar.gz" } ], "1.3.9": [ { "comment_text": "", "digests": { "md5": "cf380ce5a677b4efc05b2b95a309260e", "sha256": "2e5daca4bb2e87599f932948045268ee8654a0fd1e9bc00c6ac034a80b77c81d" }, "downloads": -1, "filename": "django-ewiz-1.3.9.tar.gz", "has_sig": false, "md5_digest": "cf380ce5a677b4efc05b2b95a309260e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29263, "upload_time": "2014-12-12T03:47:37", "url": "https://files.pythonhosted.org/packages/36/f6/2635e046d0127fce7f62668d39a96e0e30273ae89301db954dbba9bca6d5/django-ewiz-1.3.9.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "e488cd84a7042ac66c37e11ff51dd52d", "sha256": "bc15e64e390296bc6d446e8aef51e80276841c3d3b05236ca21a69c6db4aa112" }, "downloads": -1, "filename": "django-ewiz-1.4.0.tar.gz", "has_sig": false, "md5_digest": "e488cd84a7042ac66c37e11ff51dd52d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28442, "upload_time": "2015-07-09T00:20:59", "url": "https://files.pythonhosted.org/packages/98/ee/f444fdb04a34b6b645984bf771cee65784cd49ccfbf5fa378854f40fdc0a/django-ewiz-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "303e8b8184ae71088c6078225846239f", "sha256": "83db849f7ca3dce86f3510b8373e6b29baaeeb423c404242350b66b48410a9c9" }, "downloads": -1, "filename": "django-ewiz-1.4.1.tar.gz", "has_sig": false, "md5_digest": "303e8b8184ae71088c6078225846239f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28255, "upload_time": "2015-07-09T22:14:00", "url": "https://files.pythonhosted.org/packages/c0/18/d9d400ad4b537be6dc4ea99df1053ecc808fa8c0cd1651437ad5744c2a3c/django-ewiz-1.4.1.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "b2b8c62439fc53c2e80cb3c81e6951f5", "sha256": "4bf55687b8f14143576603dde779e5e54e8d3037a3f9deee9e20fb665297dc9b" }, "downloads": -1, "filename": "django_ewiz-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2b8c62439fc53c2e80cb3c81e6951f5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 18326, "upload_time": "2015-10-21T21:47:10", "url": "https://files.pythonhosted.org/packages/ca/fa/3bc60abeb18c93295d27f2f17b8e38b6cbba9e2f05c97e237e10b499b107/django_ewiz-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bae35d51035d3e7a0b8570bc7c99f7a1", "sha256": "ae3b0bc03f11b5dcd9564f467fc4f81a09f02ac77d5ad404ecae55df248c98f3" }, "downloads": -1, "filename": "django-ewiz-1.5.0.tar.gz", "has_sig": false, "md5_digest": "bae35d51035d3e7a0b8570bc7c99f7a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28015, "upload_time": "2015-10-21T21:47:03", "url": "https://files.pythonhosted.org/packages/b5/b2/92166d5b6e5f2c108caba5aa6d46c1ba232e1bec6991d565785001b23887/django-ewiz-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "70aff8fc0321a0c26d7f956552ce987c", "sha256": "26d0ab01a2959eb54257d7b1bfcd62be79eba879d739dd17741520d80433cd2f" }, "downloads": -1, "filename": "django_ewiz-1.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "70aff8fc0321a0c26d7f956552ce987c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 18599, "upload_time": "2015-11-05T21:03:16", "url": "https://files.pythonhosted.org/packages/29/ef/197705cffcdd431db3de4907aa1a91253ead2b7ab18554f37ad268eb79d6/django_ewiz-1.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "117c4900a7387b008c1f014c718da7ea", "sha256": "dd8a06223c35b06aa5602670f5031ef0e7b55cf22875fda54e01b2b5017081e6" }, "downloads": -1, "filename": "django-ewiz-1.5.1.tar.gz", "has_sig": false, "md5_digest": "117c4900a7387b008c1f014c718da7ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28274, "upload_time": "2015-11-05T21:03:01", "url": "https://files.pythonhosted.org/packages/75/87/c2e1254237208deb11edffc79e101232929087dd503746edfb01ad3d7296/django-ewiz-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "3e6e8f7944124c3f2947f31b1e1864cd", "sha256": "dff9bb7902afc3c6ece50561985058828206d7e6442231be8bb7fba3e24db349" }, "downloads": -1, "filename": "django_ewiz-1.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3e6e8f7944124c3f2947f31b1e1864cd", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 18648, "upload_time": "2015-12-21T08:26:15", "url": "https://files.pythonhosted.org/packages/65/0a/4096bfbd0df590f0bfc7579e53bba67fde813bc8d1f2ac3465d29696e14e/django_ewiz-1.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7e5de2fd8b3c8210e63e6a44ed37c012", "sha256": "eaead4fd55a43d5e4bab512bbd8fb0c1df0b3ee9af263143080a94a92bcf1a57" }, "downloads": -1, "filename": "django-ewiz-1.5.2.tar.gz", "has_sig": false, "md5_digest": "7e5de2fd8b3c8210e63e6a44ed37c012", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28369, "upload_time": "2015-12-21T08:26:10", "url": "https://files.pythonhosted.org/packages/27/55/cc8426c41d94358155e6001715ee89130c7b2d84f5c80a054ed48f1163c5/django-ewiz-1.5.2.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "3e8152cc4cac6e06303990f9f5ae415c", "sha256": "dfff4218b78d644330f82bd9bb92cb2e71522f9f0123b60c28708d710f4fb643" }, "downloads": -1, "filename": "django_ewiz-1.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3e8152cc4cac6e06303990f9f5ae415c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 18657, "upload_time": "2016-01-29T22:05:23", "url": "https://files.pythonhosted.org/packages/71/79/9cef5911bed9a91401afd7ea0e214bb1a3c102abbac8754a9b384a0ea155/django_ewiz-1.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "991f87f8f21bf80caf189bb26d60cfe4", "sha256": "07f0cd6999af3edb9c275cd21d503708b5b94cb960825f388283991708eacd47" }, "downloads": -1, "filename": "django-ewiz-1.5.3.tar.gz", "has_sig": false, "md5_digest": "991f87f8f21bf80caf189bb26d60cfe4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26870, "upload_time": "2016-01-29T22:04:09", "url": "https://files.pythonhosted.org/packages/a9/9a/f9a3add4ec05222263eebeece9178d0902292581c86eb87091bd6d20151a/django-ewiz-1.5.3.tar.gz" } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "7849f1e9f36d68bb9d1a98648aa369b4", "sha256": "5655eb9bc693e94753d3f1f164a19dbcb96277ccb26c006411db13fe8de856bc" }, "downloads": -1, "filename": "django_ewiz-1.5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7849f1e9f36d68bb9d1a98648aa369b4", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 18687, "upload_time": "2016-04-29T20:52:39", "url": "https://files.pythonhosted.org/packages/68/cd/216761799db74eae1257a160bd388ea7578f74e742329019257527d85806/django_ewiz-1.5.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "632d6f6adac5a39be161ef01c0f6ab96", "sha256": "f785fbb194a98e69ca0eb7c650fe76c7edb687f3529c00aff68efc1eac2bd824" }, "downloads": -1, "filename": "django-ewiz-1.5.4.tar.gz", "has_sig": false, "md5_digest": "632d6f6adac5a39be161ef01c0f6ab96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26939, "upload_time": "2016-04-29T20:52:33", "url": "https://files.pythonhosted.org/packages/9c/d6/66aeb4064e46f9b1ef9950ce4025a1f5cd6a62651f2ed5510c7478d47d10/django-ewiz-1.5.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7849f1e9f36d68bb9d1a98648aa369b4", "sha256": "5655eb9bc693e94753d3f1f164a19dbcb96277ccb26c006411db13fe8de856bc" }, "downloads": -1, "filename": "django_ewiz-1.5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7849f1e9f36d68bb9d1a98648aa369b4", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 18687, "upload_time": "2016-04-29T20:52:39", "url": "https://files.pythonhosted.org/packages/68/cd/216761799db74eae1257a160bd388ea7578f74e742329019257527d85806/django_ewiz-1.5.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "632d6f6adac5a39be161ef01c0f6ab96", "sha256": "f785fbb194a98e69ca0eb7c650fe76c7edb687f3529c00aff68efc1eac2bd824" }, "downloads": -1, "filename": "django-ewiz-1.5.4.tar.gz", "has_sig": false, "md5_digest": "632d6f6adac5a39be161ef01c0f6ab96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26939, "upload_time": "2016-04-29T20:52:33", "url": "https://files.pythonhosted.org/packages/9c/d6/66aeb4064e46f9b1ef9950ce4025a1f5cd6a62651f2ed5510c7478d47d10/django-ewiz-1.5.4.tar.gz" } ] }