{ "info": { "author": "Beau Gunderson", "author_email": "beau@beaugunderson.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries", "Topic :: Utilities" ], "description": "django-gulp\n-----------\n\n``django-gulp`` overrides ``./manage.py runserver`` and\n``./manage.py collectstatic`` so that they also run your gulp tasks.\n\nI\u2019ve used this in conjunction with watchify and livereload in gulp, so\nthat my simple unadorned runserver automatically watches and compiles\nnew JavaScript files with browserify and live reloads new CSS that\u2019s\nbeen automatically compiled from SASS.\n\nInstallation\n~~~~~~~~~~~~\n\nAdd ``\"django_gulp\"`` to your ``INSTALLED_APPS`` setting like this,\nmaking sure that it comes before ``django.contrib.staticfiles`` (or\nother apps that override ``runserver`` or ``collectstatic`` in the list\nif they\u2019re listed):\n\n::\n\n INSTALLED_APPS = (\n 'django_gulp',\n ...\n )\n\nNow when you run ``./manage.py runserver`` or\n``./manage.py collectstatic`` your ``gulp`` tasks will run as well!\n\nSettings\n~~~~~~~~\n\n``GULP_CWD`` defaults to the current working directory. Override it if\nyour ``gulpfile.js`` does not reside within the Django project\u2019s\ntoplevel directory.\n\n``GULP_PRODUCTION_COMMAND`` defaults to ``gulp build --production``.\n``GULP_DEVELOP_COMMAND`` defaults to ``gulp``. Note that when specifying\nthis setting manually, ``GULP_CWD`` is ignored.\n\nHeroku\n~~~~~~\n\n``django-gulp`` works on Heroku! You\u2019ll just need to use buildpack-multi\nand make sure your ``.buildpacks`` file looks like this:\n\n::\n\n https://github.com/heroku/heroku-buildpack-nodejs.git\n https://github.com/heroku/heroku-buildpack-python.git\n\nTo use buildback-multi set your configuration like so:\n\n::\n\n $ heroku config:set BUILDPACK_URL=https://github.com/heroku/heroku-buildpack-multi.git\n\nExample output\n~~~~~~~~~~~~~~\n\n.. code:: sh\n\n $ ./manage.py runserver\n >>> Starting gulp\n >>> gulp process on pid 47863\n Performing system checks...\n\n System check identified no issues.\n May 04, 2015 - 18:27:52\n Django version 1.8.1, using settings 'example.settings'\n Starting development server at http://127.0.0.1:8000/\n Quit the server with CONTROL-C.\n [18:27:53] Using gulpfile ~/p/example/gulpfile.js\n [18:27:53] Starting 'bower-install'...\n [18:27:54] Using cwd: /Users/beau/p/example\n [18:27:54] Using bower dir: static/vendor\n [18:27:54] Starting 'sass'...\n [18:27:54] Starting 'watch'...\n [18:27:54] Finished 'watch' after 19 ms\n [18:27:54] Starting 'watchify'...\n [18:28:08] Watching files required by bundle-about.js\n [18:28:08] Bundling bundle-about.js...\n [18:28:08] Watching files required by bundle-accounts-login.js\n [18:28:08] Bundling bundle-accounts-login.js...\n [18:28:08] Watching files required by bundle-accounts-signup.js\n [18:28:08] Bundling bundle-accounts-signup.js...\n [18:28:08] Watching files required by bundle-activities.js\n [18:28:08] Bundling bundle-activities.js...\n [18:28:08] Finished 'watchify' after 14 s\n [18:28:09] Finished 'sass' after 15 s\n ^C>>> Closing gulp process\n\n.. code:: sh\n\n $ ./manage.py collectstatic\n [18:32:54] Using gulpfile ~/p/example/gulpfile.js\n [18:32:54] Starting 'bower-install'...\n [18:32:55] Using cwd: /Users/beau/p/example\n [18:32:55] Using bower dir: static/vendor\n [18:32:55] Starting 'sass'...\n [18:32:56] Starting 'browserify'...\n [18:33:05] Bundling bundle-about.js...\n [18:33:05] Bundling bundle-accounts-login.js...\n [18:33:05] Bundling bundle-accounts-signup.js...\n [18:33:05] Bundling bundle-activities.js...\n [18:33:05] Finished 'browserify' after 9.39 s\n [18:33:08] Finished 'sass' after 13 s\n [18:33:14] Finished 'bower-install' after 19 s\n [18:33:14] Starting 'bower-main-files'...\n [18:33:14] Starting 'bower-detritus'...\n [18:33:14] Finished 'bower-main-files' after 104 ms\n [18:33:14] Finished 'bower-detritus' after 507 ms\n [18:33:14] Starting 'bower'...\n [18:33:14] Finished 'bower' after 18 \u03bcs\n [18:33:14] Starting 'build'...\n [18:33:14] Finished 'build' after 5 \u03bcs\n\n You have requested to collect static files at the destination\n location as specified in your settings:\n\n /Users/beau/p/example/static-files\n\n This will overwrite existing files!\n Are you sure you want to do this?\n\n Type 'yes' to continue, or 'no' to cancel: yes\n Copying '/Users/beau/p/example/build/js/bundle-about.js'\n Copying '/Users/beau/p/example/build/js/bundle-about.map.json'\n Copying '/Users/beau/p/example/build/js/bundle-accounts-login.js'\n Copying '/Users/beau/p/example/build/js/bundle-accounts-login.map.json'\n Copying '/Users/beau/p/example/build/js/bundle-accounts-signup.js'\n Copying '/Users/beau/p/example/build/js/bundle-accounts-signup.map.json'\n Copying '/Users/beau/p/example/build/js/bundle-activities.js'\n Copying '/Users/beau/p/example/build/js/bundle-activities.map.json'\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/beaugunderson/django-gulp", "keywords": "django", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django-gulp", "package_url": "https://pypi.org/project/django-gulp/", "platform": "", "project_url": "https://pypi.org/project/django-gulp/", "project_urls": { "Homepage": "https://github.com/beaugunderson/django-gulp" }, "release_url": "https://pypi.org/project/django-gulp/4.1.0/", "requires_dist": null, "requires_python": "", "summary": "Run your gulp tasks with runserver and collectstatic", "version": "4.1.0" }, "last_serial": 4008444, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "31ff78eb11543a280024d584a4e15089", "sha256": "80a2d0f6749744d9e2c959104e76dcd6d0f71adf5fa15f3070676d4175768de5" }, "downloads": -1, "filename": "django_gulp-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "31ff78eb11543a280024d584a4e15089", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5742, "upload_time": "2015-05-03T21:31:10", "url": "https://files.pythonhosted.org/packages/9f/d0/defa11986e31dc58056b87849c39803f14047f3b3a9297812d5332b27b1b/django_gulp-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "72600c7cfad73b98520125d2e7a20358", "sha256": "9595eea2fb4d628dd46feaf37e0e4f6b07ac93b547cc7df50357980bf3953274" }, "downloads": -1, "filename": "django-gulp-1.0.0.tar.gz", "has_sig": false, "md5_digest": "72600c7cfad73b98520125d2e7a20358", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4205, "upload_time": "2015-05-03T21:31:07", "url": "https://files.pythonhosted.org/packages/3f/47/f98220b68989587a55c2698acdc233d373daa07d9b8a0267586b8d5af796/django-gulp-1.0.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "4d445154c6ccf810ca5b364e974fc480", "sha256": "c39bb0339187fb73b3f9cbf5bc1be8304342fdd5e6da39de3b9a65c3747b52a5" }, "downloads": -1, "filename": "django_gulp-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d445154c6ccf810ca5b364e974fc480", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7790, "upload_time": "2015-05-05T19:02:23", "url": "https://files.pythonhosted.org/packages/60/ff/060a15d7267aaf7012d820eb1d4c273d2a5fa1bab0d2614dc99638c55bb6/django_gulp-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b50fa2de4ffe4b8f6a0a3a5fe282550", "sha256": "dce033674daf8f3ac8f24600e8682f4dcc7c4f1b697e3a5222fe663877a36ab3" }, "downloads": -1, "filename": "django-gulp-2.0.0.tar.gz", "has_sig": false, "md5_digest": "3b50fa2de4ffe4b8f6a0a3a5fe282550", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5588, "upload_time": "2015-05-05T19:02:20", "url": "https://files.pythonhosted.org/packages/a5/22/a707bfbe9727298aaaf8e9b0822bccc35da21404b7182c36d90bb06052a0/django-gulp-2.0.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "72c30f2877820fdb6eb841e73e45fae1", "sha256": "f4bccb040c413175a3d1c9021d3e76b34f8097ee2b24b198564cada8636a2cc4" }, "downloads": -1, "filename": "django_gulp-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "72c30f2877820fdb6eb841e73e45fae1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7914, "upload_time": "2015-10-28T16:57:19", "url": "https://files.pythonhosted.org/packages/e9/e2/282efdcfe3d798cf56e20d34a7949a5bb79a6addf0eb91dbb5abad25e2f9/django_gulp-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c190ecac0e7f947a56ebeeb9bee34f1", "sha256": "679909fb44253728d9d6f5d548723065da1ff5378f1c08bdc5f079c7deb2f2a8" }, "downloads": -1, "filename": "django-gulp-2.1.0.tar.gz", "has_sig": false, "md5_digest": "9c190ecac0e7f947a56ebeeb9bee34f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5655, "upload_time": "2015-10-28T16:57:14", "url": "https://files.pythonhosted.org/packages/66/d2/bfddc0ce7d32344f16ecc219158df6e6f41b6a8c6f3f1065655aef17c0d5/django-gulp-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "ec89fe6f824f7fbd91bf90c05d6a7f78", "sha256": "2c08b00c29349f51a046625338b792b6dbb93004aeccffd61c19db8fd44ae283" }, "downloads": -1, "filename": "django_gulp-2.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ec89fe6f824f7fbd91bf90c05d6a7f78", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8055, "upload_time": "2015-10-28T17:27:15", "url": "https://files.pythonhosted.org/packages/22/d0/0b5f6943cfd9482a575d79412bce124459cd18b369310cd2ec051f26299c/django_gulp-2.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fa400a39adc4a10a5cb02dee0fa09c4c", "sha256": "1c32ff904bf76043889cc8643da4e70554d5cd0dfbd9dae934cac25ec1da29b6" }, "downloads": -1, "filename": "django-gulp-2.1.1.tar.gz", "has_sig": false, "md5_digest": "fa400a39adc4a10a5cb02dee0fa09c4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5707, "upload_time": "2015-10-28T17:27:08", "url": "https://files.pythonhosted.org/packages/8e/e4/4295072ca1baa6976a1c30f9c82917db86b5512c0c0b0fb08412cf74e32b/django-gulp-2.1.1.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "c4c686f47b0a3e423a1bb27d5e79e232", "sha256": "7b770c22e33598e4fc2725c9618396d7038bac179ec9fda286050d8913214d80" }, "downloads": -1, "filename": "django_gulp-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c4c686f47b0a3e423a1bb27d5e79e232", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8284, "upload_time": "2015-12-09T00:49:01", "url": "https://files.pythonhosted.org/packages/a0/ec/d5fa2d0cd3b67e07a5585d6f035fccadba63b90aab267d92e25d8dfc1deb/django_gulp-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a53d689627cdce14f5f20a852c23b45f", "sha256": "ddde23951235fdc19e92bd1a66013727d89e94a881edccdaee43dc5675d8e071" }, "downloads": -1, "filename": "django-gulp-2.2.0.tar.gz", "has_sig": false, "md5_digest": "a53d689627cdce14f5f20a852c23b45f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5845, "upload_time": "2015-12-09T00:48:54", "url": "https://files.pythonhosted.org/packages/e1/b4/7085e906ca51f687de1951ee099fd88700e8332278efa5a9a99d159ef36b/django-gulp-2.2.0.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "da80b2b3a232dc9d699e735d100e8346", "sha256": "b2940a8195f05c6e7b84fc90f9d2b56611f0d05e654f974e5d90cc8336850678" }, "downloads": -1, "filename": "django_gulp-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "da80b2b3a232dc9d699e735d100e8346", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8180, "upload_time": "2015-12-11T17:37:38", "url": "https://files.pythonhosted.org/packages/61/2a/f1a31ddb6c7365155eb047230afb5e4d458e76e88a8bccc2791f03bd4a9f/django_gulp-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ed9ce66366b2cf42435d44d35b0b94e", "sha256": "d7bfdec26b6f30e15ed904e8112b9736d894427604d7a4ca0084f3528c367dfb" }, "downloads": -1, "filename": "django-gulp-2.3.0.tar.gz", "has_sig": false, "md5_digest": "0ed9ce66366b2cf42435d44d35b0b94e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5971, "upload_time": "2015-12-11T17:37:43", "url": "https://files.pythonhosted.org/packages/63/f6/b95ef33ee247a882ba5856a276143d90113b6ee13f3ddd5754f5b94984cd/django-gulp-2.3.0.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "16184e7d498766c7d4d34b11b1eb1f40", "sha256": "ab2e4886499c6071cb0e7e14387a426f6a89031fb1b6f671d6769b5bb0819553" }, "downloads": -1, "filename": "django_gulp-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "16184e7d498766c7d4d34b11b1eb1f40", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8430, "upload_time": "2016-04-27T11:45:19", "url": "https://files.pythonhosted.org/packages/93/85/b00b016a944b0553f8d906b0506593b0e2e1afc62ab404d41b6fa874fbb6/django_gulp-2.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f5fd4a555dff6870e756ac38c3e08372", "sha256": "5bbb6fc7e5a20e176c357335eb390f9632a527b07a6f6afb9f1038ec28e4099a" }, "downloads": -1, "filename": "django-gulp-2.4.0.tar.gz", "has_sig": false, "md5_digest": "f5fd4a555dff6870e756ac38c3e08372", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5937, "upload_time": "2016-04-27T11:45:40", "url": "https://files.pythonhosted.org/packages/7f/31/599b6cab80a10d853ec15e3a4e74553148278cd49ae10e7370f5be7861a1/django-gulp-2.4.0.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "12c49e94a1822ab7c793d11409e10880", "sha256": "1257fd7689828ddac158aa449d7bda983c9bb23701b2a26ffeb6d4b5ade656a5" }, "downloads": -1, "filename": "django_gulp-2.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "12c49e94a1822ab7c793d11409e10880", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8479, "upload_time": "2016-06-28T23:41:21", "url": "https://files.pythonhosted.org/packages/fb/d7/7907419f5f3adc8645faf2ee5a3eb9aa9e6742f3dbcc78aaead19da19988/django_gulp-2.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "658bf4a00aba768b32a3e71f145d55c3", "sha256": "40bfb45d5c510ed0a2f36380e91f89c30750c461cd99a32eab472a746f34bb23" }, "downloads": -1, "filename": "django-gulp-2.4.1.tar.gz", "has_sig": false, "md5_digest": "658bf4a00aba768b32a3e71f145d55c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5964, "upload_time": "2016-06-28T23:41:26", "url": "https://files.pythonhosted.org/packages/28/51/6f1ed9bc96501d9ca962b5971489950392deb0818613390c6d834763f131/django-gulp-2.4.1.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "fd66bda65badba174418c3285fa34a03", "sha256": "e08c0145a383c181b01adf34c5fb2b667df6a76ab91bf2aae2f76d9089812b49" }, "downloads": -1, "filename": "django_gulp-2.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd66bda65badba174418c3285fa34a03", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8478, "upload_time": "2016-08-24T05:49:01", "url": "https://files.pythonhosted.org/packages/2c/50/2e150b96d77636bee720427f93f3081851e8a9c88a31ae3488f74ffda030/django_gulp-2.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "882120e34261a3d9f08f73127a66005f", "sha256": "4c6b5264ab5201fadb2758606525206b9f8a7d48e19df7c33c4b64fcdd6a8cfb" }, "downloads": -1, "filename": "django-gulp-2.5.0.tar.gz", "has_sig": false, "md5_digest": "882120e34261a3d9f08f73127a66005f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5969, "upload_time": "2016-08-24T05:49:04", "url": "https://files.pythonhosted.org/packages/ce/a8/9e14b99e6bf37b60bbd986c64e3971a817cd220d7074fcdf1f68f8ef7999/django-gulp-2.5.0.tar.gz" } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "2efcb4ba7aa10c778cf25c8befbeaa1a", "sha256": "0380e488a893b253be1e25893cdff0de930a6f5382ef1d198f428d95b9743161" }, "downloads": -1, "filename": "django_gulp-2.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2efcb4ba7aa10c778cf25c8befbeaa1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8481, "upload_time": "2017-04-05T21:42:48", "url": "https://files.pythonhosted.org/packages/3a/aa/6fa9d71ee871723fd9b2942f9fd4d564447dc54f3d3cac429739cc63b50f/django_gulp-2.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c78c5594f5139961d262fc740eda20b7", "sha256": "5ad41f3319cd2f80adce0b045e388d3ab90415de7aff3081ae7eb96ca733b6d6" }, "downloads": -1, "filename": "django-gulp-2.5.1.tar.gz", "has_sig": false, "md5_digest": "c78c5594f5139961d262fc740eda20b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5952, "upload_time": "2017-04-05T21:42:50", "url": "https://files.pythonhosted.org/packages/39/ff/fcf806f8a12fff0b7d4b25d8e343b12745866f9740a012838607a97621ec/django-gulp-2.5.1.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "1437e3c31c403e8faec8c7b090131008", "sha256": "6f471de9c218d401b2bc17a51e1669fa85ab48df6257d904b0e1f84c12a09eb1" }, "downloads": -1, "filename": "django_gulp-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1437e3c31c403e8faec8c7b090131008", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 8486, "upload_time": "2017-07-31T20:03:00", "url": "https://files.pythonhosted.org/packages/47/6f/aa8d7f6a217cbf852f7df866af9cd74cdc0da5e2f23f16d41e1ad82871bb/django_gulp-3.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "96c0a3d8bf086fae0ab10009355f7fbc", "sha256": "254925f9ae1d07bcf9651d4c4c4c886e411eceeadd90f7e14228a3dc4829dbb6" }, "downloads": -1, "filename": "django-gulp-3.0.0.tar.gz", "has_sig": false, "md5_digest": "96c0a3d8bf086fae0ab10009355f7fbc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5956, "upload_time": "2017-07-31T20:02:58", "url": "https://files.pythonhosted.org/packages/5f/54/9d6adbb74adfbd579fb47282777ca136f55326be4ff88b3c6c8dfded033b/django-gulp-3.0.0.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "cd19d9a10edc9214ea4cab28bf85c239", "sha256": "a030dc0feb26b010f33aaf51132044cb2f760522b5c9e038323d0265a2925a52" }, "downloads": -1, "filename": "django_gulp-4.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd19d9a10edc9214ea4cab28bf85c239", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 6192, "upload_time": "2018-06-27T16:27:08", "url": "https://files.pythonhosted.org/packages/01/6f/438826df79da0d848524a16ae2c8eba9a16b1d6af1ebea54b970bf88714b/django_gulp-4.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8062953e4e5a6f0f2db217b2608c0027", "sha256": "ad4efa5a10ec9beb5b90cc429e2f609904cf43238a6e01f35f9ada44ccfdc7e9" }, "downloads": -1, "filename": "django-gulp-4.0.0.tar.gz", "has_sig": false, "md5_digest": "8062953e4e5a6f0f2db217b2608c0027", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6194, "upload_time": "2018-06-27T16:27:07", "url": "https://files.pythonhosted.org/packages/2e/77/a3d7ddcdfffe220b6574e91c7b18217b785f36f56d99d3eaa277479c5b43/django-gulp-4.0.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "a5e6b08f855b097f811647a94e63244f", "sha256": "6893af527a38a6890ea226a366ec85ed2f84fa2dc64e10fe9b3af205f3bff0d4" }, "downloads": -1, "filename": "django_gulp-4.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a5e6b08f855b097f811647a94e63244f", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 6206, "upload_time": "2018-06-27T16:45:05", "url": "https://files.pythonhosted.org/packages/f3/15/d3fc839fb712f64f3152dfb27341fb662093e161773faf865a3065397637/django_gulp-4.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "01092783807a45875d826f6d1d1ebfbd", "sha256": "cd34d926e3205616a866ccb2c5e85eceedc608b4d6eb479090d5565f2add5fce" }, "downloads": -1, "filename": "django-gulp-4.0.1.tar.gz", "has_sig": false, "md5_digest": "01092783807a45875d826f6d1d1ebfbd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6231, "upload_time": "2018-06-27T16:45:03", "url": "https://files.pythonhosted.org/packages/cf/d8/3c57449523e69ef80fa73466f0b801cbc8afe18b16e4941e1bba0d396bfc/django-gulp-4.0.1.tar.gz" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "2090651e11c5290361cacf285cf5a30b", "sha256": "00d56f903fbbffe6338ffcf0522bbadf1e5775ffd8a37d7c9567bfe3ae9dc31e" }, "downloads": -1, "filename": "django_gulp-4.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2090651e11c5290361cacf285cf5a30b", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 7023, "upload_time": "2018-06-27T18:20:55", "url": "https://files.pythonhosted.org/packages/d4/24/455b77dcff0e9faa30d301e85a0638daede4f727a712c0a55f842d444f12/django_gulp-4.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aefdd91c58a919cb35af78de3a0c74ed", "sha256": "5f1b738689fd498504b368f5818633bf1c5a11ede9e79f67c248ce55776d6961" }, "downloads": -1, "filename": "django-gulp-4.1.0.tar.gz", "has_sig": false, "md5_digest": "aefdd91c58a919cb35af78de3a0c74ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6411, "upload_time": "2018-06-27T18:20:53", "url": "https://files.pythonhosted.org/packages/5f/1a/d796f16711fdf28b0b2b31f15c77f8c98547e91422be73273cb4776ead26/django-gulp-4.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2090651e11c5290361cacf285cf5a30b", "sha256": "00d56f903fbbffe6338ffcf0522bbadf1e5775ffd8a37d7c9567bfe3ae9dc31e" }, "downloads": -1, "filename": "django_gulp-4.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2090651e11c5290361cacf285cf5a30b", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 7023, "upload_time": "2018-06-27T18:20:55", "url": "https://files.pythonhosted.org/packages/d4/24/455b77dcff0e9faa30d301e85a0638daede4f727a712c0a55f842d444f12/django_gulp-4.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aefdd91c58a919cb35af78de3a0c74ed", "sha256": "5f1b738689fd498504b368f5818633bf1c5a11ede9e79f67c248ce55776d6961" }, "downloads": -1, "filename": "django-gulp-4.1.0.tar.gz", "has_sig": false, "md5_digest": "aefdd91c58a919cb35af78de3a0c74ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6411, "upload_time": "2018-06-27T18:20:53", "url": "https://files.pythonhosted.org/packages/5f/1a/d796f16711fdf28b0b2b31f15c77f8c98547e91422be73273cb4776ead26/django-gulp-4.1.0.tar.gz" } ] }