{ "info": { "author": "Owais Lone", "author_email": "hello@owaislone.org", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5" ], "description": "django-webpack-loader\n=====================\n\n|Join the chat at https://gitter.im/owais/django-webpack-loader| |Build\nStatus| |Coverage Status|\n\nRead http://owaislone.org/blog/webpack-plus-reactjs-and-django/ for a\ndetailed step by step guide on setting up webpack with django using this\nlibrary.\n\nUse webpack to generate your static bundles without django's staticfiles\nor opaque wrappers.\n\nDjango webpack loader consumes the output generated by\n`webpack-bundle-tracker `__\nand lets you use the generated bundles in django.\n\nA `changelog `__ is also available.\n\nMaintainers\n-----------\n\nIn order to overcome the lack of support for Markdown on PyPi, building\nthis package can use `pandoc `__\nalong with `pypandoc `__ to\nconvert the README.md into a Restructured Text format compatible with\nPyPI. This requires installing ``pandoc`` for your operating system\n(installation instructions on the pandoc site), and ``pypandoc`` which\nwill be installed if you:\n\n::\n\n pip install -r requirements-dev.txt\n\nbefore uploading to PyPI.\n\nIf pandoc or pypandoc fails, the README.md file will be uploaded as it\nwas before this enhancement.\n\nCompatibility\n-------------\n\nTest cases cover Django>=1.6 on Python 2.7 and Python>=3.3. 100% code\ncoverage is the target so we can be sure everything works anytime. It\nshould probably work on older version of django as well but the package\ndoes not ship any test cases for them.\n\nInstall\n-------\n\n.. code:: bash\n\n npm install --save-dev webpack-bundle-tracker\n\n pip install django-webpack-loader\n\nConfiguration\n-------------\n\nAssumptions\n~~~~~~~~~~~\n\nAssuming ``BASE_DIR`` in settings refers to the root of your django app.\n\n.. code:: python\n\n import sys\n import os\n\n BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))\n\nAssuming ``assets/`` is in ``settings.STATICFILES_DIRS`` like\n\n.. code:: python\n\n STATICFILES_DIRS = (\n os.path.join(BASE_DIR, 'assets'),\n )\n\nAssuming your webpack config lives at ``./webpack.config.js`` and looks\nlike this\n\n.. code:: javascript\n\n var path = require('path');\n var webpack = require('webpack');\n var BundleTracker = require('webpack-bundle-tracker');\n\n module.exports = {\n context: __dirname,\n entry: './assets/js/index',\n output: {\n path: path.resolve('./assets/webpack_bundles/'),\n filename: \"[name]-[hash].js\"\n },\n\n plugins: [\n new BundleTracker({filename: './webpack-stats.json'})\n ]\n }\n\nDefault Configuration\n~~~~~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n WEBPACK_LOADER = {\n 'DEFAULT': {\n 'CACHE': not DEBUG,\n 'BUNDLE_DIR_NAME': 'webpack_bundles/', # must end with slash\n 'STATS_FILE': os.path.join(BASE_DIR, 'webpack-stats.json'),\n 'POLL_INTERVAL': 0.1,\n 'TIMEOUT': None,\n 'IGNORE': ['.+\\.hot-update.js', '.+\\.map']\n }\n }\n\nCACHE\n^^^^^\n\n.. code:: python\n\n WEBPACK_LOADER = {\n 'DEFAULT': {\n 'CACHE': not DEBUG\n }\n }\n\nWhen ``CACHE`` is set to True, webpack-loader will read the stats file\nonly once and cache the result. This means web workers need to be\nrestarted in order to pick up any changes made to the stats files.\n\nBUNDLE\\_DIR\\_NAME\n^^^^^^^^^^^^^^^^^\n\n.. code:: python\n\n WEBPACK_LOADER = {\n 'DEFAULT': {\n 'BUNDLE_DIR_NAME': 'bundles/' # end with slash\n }\n }\n\n``BUNDLE_DIR_NAME`` refers to the dir in which webpack outputs the\nbundles. It should not be the full path. If ``./assets`` is one of you\nstatic dirs and webpack generates the bundles in\n``./assets/output/bundles/``, then ``BUNDLE_DIR_NAME`` should be\n``output/bundles/``.\n\nIf the bundle generates a file called ``main-cf4b5fab6e00a404e0c7.js``\nand your STATIC\\_URL is ``/static/``, then the ``',\n '']\n\nHow to use in Production\n------------------------\n\n**It is up to you**. There are a few ways to handle this. I like to have\nslightly separate configs for production and local. I tell git to ignore\nmy local stats + bundle file but track the ones for production. Before\npushing out newer version to production, I generate a new bundle using\nproduction config and commit the new stats file and bundle. I store the\nstats file and bundles in a directory that is added to the\n``STATICFILES_DIR``. This gives me integration with collectstatic for\nfree. The generated bundles are automatically collected to the target\ndirectory and synched to S3.\n\n``./webpack_production.config.js``\n\n.. code:: javascript\n\n var config = require('./webpack.config.js');\n var BundleTracker = require('webpack-bundle-tracker');\n\n config.output.path = require('path').resolve('./assets/dist');\n\n config.plugins = [\n new BundleTracker({filename: './webpack-stats-prod.json'})\n ]\n\n // override any other settings here like using Uglify or other things that make sense for production environments.\n\n module.exports = config;\n\n``settings.py``\n\n.. code:: python\n\n if not DEBUG:\n WEBPACK_LOADER.update({\n 'BUNDLE_DIR_NAME': 'dist/',\n 'STATS_FILE': os.path.join(BASE_DIR, 'webpack-stats-prod.json')\n })\n\nYou can also simply generate the bundles on the server before running\ncollectstatic if that works for you.\n\nExtra\n-----\n\nJinja2 Configuration\n~~~~~~~~~~~~~~~~~~~~\n\nIf you need to output your assets in a jinja template we provide a\nJinja2 extension that's compatible with the `Django\nJinja `__ module and Django 1.8.\n\nTo install the extension add it to the django\\_jinja ``TEMPLATES``\nconfiguration in the ``[\"OPTIONS\"][\"extension\"]`` list.\n\n.. code:: python\n\n TEMPLATES = [\n {\n \"BACKEND\": \"django_jinja.backend.Jinja2\",\n \"OPTIONS\": {\n \"extensions\": [\n \"django_jinja.builtins.extensions.DjangoFiltersExtension\",\n \"webpack_loader.contrib.jinja2ext.WebpackExtension\",\n ],\n }\n }\n ]\n\nThen in your base jinja template:\n\n.. code:: html\n\n {{ render_bundle('main') }}\n\n--------------\n\nEnjoy your webpack with django :)\n\n.. |Join the chat at https://gitter.im/owais/django-webpack-loader| image:: https://badges.gitter.im/Join%20Chat.svg\n :target: https://gitter.im/owais/django-webpack-loader?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n.. |Build Status| image:: https://travis-ci.org/owais/django-webpack-loader.svg?branch=master\n :target: https://travis-ci.org/owais/django-webpack-loader\n.. |Coverage Status| image:: https://coveralls.io/repos/owais/django-webpack-loader/badge.svg?branch=master&service=github\n :target: https://coveralls.io/github/owais/django-webpack-loader?branch=master\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/owais/django-webpack-loader/tarball/0.6.0", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/owais/django-webpack-loader", "keywords": "django,webpack,assets", "license": "", "maintainer": "", "maintainer_email": "", "name": "django-webpack-loader", "package_url": "https://pypi.org/project/django-webpack-loader/", "platform": "", "project_url": "https://pypi.org/project/django-webpack-loader/", "project_urls": { "Download": "https://github.com/owais/django-webpack-loader/tarball/0.6.0", "Homepage": "https://github.com/owais/django-webpack-loader" }, "release_url": "https://pypi.org/project/django-webpack-loader/0.6.0/", "requires_dist": null, "requires_python": "", "summary": "Transparently use webpack with django", "version": "0.6.0" }, "last_serial": 3607831, "releases": { "0.0.2": [ { "comment_text": "", "digests": { "md5": "daa2c712a179c4fdb316c6f834663cb9", "sha256": "41a2cecb34d69ab648b4f31dc04e8229efe402b94f2abd274adcfd4b08ce5e50" }, "downloads": -1, "filename": "django-webpack-loader-0.0.2.tar.gz", "has_sig": false, "md5_digest": "daa2c712a179c4fdb316c6f834663cb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1687, "upload_time": "2015-05-16T17:21:30", "url": "https://files.pythonhosted.org/packages/0b/11/64f934fa5f1d17d67ee4f130d47d3da29cedda02fef586c4edd2873e9fde/django-webpack-loader-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "1d6c594ab5ea4662f7123b7cb998e21e", "sha256": "03a381976d52a7bfdc725a90a0d8b89959485d3e961ebc18902bdfb26e4d44bb" }, "downloads": -1, "filename": "django-webpack-loader-0.0.3.tar.gz", "has_sig": false, "md5_digest": "1d6c594ab5ea4662f7123b7cb998e21e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1701, "upload_time": "2015-05-16T20:00:50", "url": "https://files.pythonhosted.org/packages/38/f2/ffbbdf31e160cf7469863ba7ed62cf9ae2bf2d63fc4a668438076892e9cc/django-webpack-loader-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "25292c524c89ed2698570c4124054a99", "sha256": "6bb0f8320081f7236e5f05c0e27624baa388349c5469735b85de4baa0cbc1b5d" }, "downloads": -1, "filename": "django-webpack-loader-0.0.4.tar.gz", "has_sig": false, "md5_digest": "25292c524c89ed2698570c4124054a99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2015, "upload_time": "2015-05-20T19:40:32", "url": "https://files.pythonhosted.org/packages/70/9d/f22060f870921f08d2b45e8feee9fda181da90d0c2a26bad4cba522987ca/django-webpack-loader-0.0.4.tar.gz" } ], "0.0.4.1": [ { "comment_text": "", "digests": { "md5": "a41240ab5e827ea67e376a8d86a97ef1", "sha256": "1d9df1205d80025c5ca44e0a0ae08e43f2645833f21c3d27f8308618fb259ac6" }, "downloads": -1, "filename": "django-webpack-loader-0.0.4.1.tar.gz", "has_sig": false, "md5_digest": "a41240ab5e827ea67e376a8d86a97ef1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2023, "upload_time": "2015-05-20T19:49:57", "url": "https://files.pythonhosted.org/packages/23/09/d327b3337ffe0f1ba6588cb0d4749f5607a4390351b9a51b394febeeeeec/django-webpack-loader-0.0.4.1.tar.gz" } ], "0.0.4.2": [ { "comment_text": "", "digests": { "md5": "bd7fd39026095945f45da0ba90511304", "sha256": "538da368f820e5cfa0dd9b61c77a6249be707e79656b899fa4a36519bc89182a" }, "downloads": -1, "filename": "django-webpack-loader-0.0.4.2.tar.gz", "has_sig": false, "md5_digest": "bd7fd39026095945f45da0ba90511304", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2814, "upload_time": "2015-05-21T17:10:20", "url": "https://files.pythonhosted.org/packages/a9/b1/9d74f8af505316d3ffd5bdaf24bdc7ffc5cf6a8c669e080e87ed2b7ffc25/django-webpack-loader-0.0.4.2.tar.gz" } ], "0.0.4.3": [ { "comment_text": "", "digests": { "md5": "666495f3892a5a43718107ced8784521", "sha256": "0225e7c240c117dbffc1542cd3b258a4bc95cb833aa610311b6ea627ab3698b3" }, "downloads": -1, "filename": "django-webpack-loader-0.0.4.3.tar.gz", "has_sig": false, "md5_digest": "666495f3892a5a43718107ced8784521", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2820, "upload_time": "2015-05-22T09:55:01", "url": "https://files.pythonhosted.org/packages/fa/37/2de3e21987f4cf58d3ba37e44ea6839b462bf442024f26d73f0172c672be/django-webpack-loader-0.0.4.3.tar.gz" } ], "0.0.4.4": [ { "comment_text": "", "digests": { "md5": "6504edbef084218540d10ff74a721314", "sha256": "618f1b2ad5e25a0a87250799ac3da5b1e7cad1bf8b2730959e9abfdcef3a8839" }, "downloads": -1, "filename": "django-webpack-loader-0.0.4.4.tar.gz", "has_sig": false, "md5_digest": "6504edbef084218540d10ff74a721314", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2822, "upload_time": "2015-05-23T07:32:02", "url": "https://files.pythonhosted.org/packages/82/52/712756261ce3b919f85df7b036fe068297b093e00f3fa1422674df9533df/django-webpack-loader-0.0.4.4.tar.gz" } ], "0.0.4.5": [ { "comment_text": "", "digests": { "md5": "78f5a765330e0f4fea42e647fbf11fb7", "sha256": "b019e698acf2e09e6b9a1f65dec051d639fad0d3793affeaeb5da7e4d51d2703" }, "downloads": -1, "filename": "django-webpack-loader-0.0.4.5.tar.gz", "has_sig": false, "md5_digest": "78f5a765330e0f4fea42e647fbf11fb7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2845, "upload_time": "2015-05-23T09:12:11", "url": "https://files.pythonhosted.org/packages/9c/46/5ccb02fa303ea2001c63e0feb5ce07714169593b1e9af89dfa5f9e1b86d7/django-webpack-loader-0.0.4.5.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "7084971631b2a2caaa7eff93935a3539", "sha256": "d04cf38ded88e937cbf11fb8679f295cdedf8927ec22a39f0aedde0c3ddf074f" }, "downloads": -1, "filename": "django-webpack-loader-0.0.5.tar.gz", "has_sig": false, "md5_digest": "7084971631b2a2caaa7eff93935a3539", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2841, "upload_time": "2015-05-23T10:06:08", "url": "https://files.pythonhosted.org/packages/92/aa/f9c45f43d742af74fcfe92448a1ad5ce76120ab3ca5f0280a5e101e22d7c/django-webpack-loader-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "b43741476488511407bec349446087aa", "sha256": "7a7c3b41a16971c7aaf9c716fc3a03df2b397877aca34803f7e258fbd892ad29" }, "downloads": -1, "filename": "django-webpack-loader-0.0.6.tar.gz", "has_sig": false, "md5_digest": "b43741476488511407bec349446087aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2888, "upload_time": "2015-05-24T08:10:52", "url": "https://files.pythonhosted.org/packages/06/df/b782ba1136e887654c214dc4b7b1c935ff3309a44a68c30513de7f192c71/django-webpack-loader-0.0.6.tar.gz" } ], "0.0.6.1": [ { "comment_text": "", "digests": { "md5": "fd2db2ff268401fa11dbae1f3096df60", "sha256": "2788b14dd092addba5854fb72d5b9c33e4ed39db03a08844347f670c9dc3b8e9" }, "downloads": -1, "filename": "django-webpack-loader-0.0.6.1.tar.gz", "has_sig": false, "md5_digest": "fd2db2ff268401fa11dbae1f3096df60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2890, "upload_time": "2015-05-24T08:13:57", "url": "https://files.pythonhosted.org/packages/70/f2/d427a0f025a830a18768b4ff5ee5433cfbe3d5b6bc42ae01509082f01391/django-webpack-loader-0.0.6.1.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "db2d5e180818c31fcc0dc8cc27440e83", "sha256": "ad2d0a6100014c45bb41025aa5c09827d0a1477664f972553c80f54947d28ee0" }, "downloads": -1, "filename": "django-webpack-loader-0.0.7.tar.gz", "has_sig": false, "md5_digest": "db2d5e180818c31fcc0dc8cc27440e83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2880, "upload_time": "2015-05-24T19:48:26", "url": "https://files.pythonhosted.org/packages/06/fb/475145843007b3c510a655dbd6eaf2d9afc39805d469aa0febb3b4dfbe13/django-webpack-loader-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "bbb802bdf0c4784082b9e9a803086681", "sha256": "ac1c1282cd67f9bddfef94a77cb4c10e3403e4964a2e588bbf68d1e9462b67ae" }, "downloads": -1, "filename": "django-webpack-loader-0.0.8.tar.gz", "has_sig": false, "md5_digest": "bbb802bdf0c4784082b9e9a803086681", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2953, "upload_time": "2015-05-24T20:24:37", "url": "https://files.pythonhosted.org/packages/8e/50/d8ae236132c16574675b6c146e612ca19f6ccf2f565d8cd41e0af7b16238/django-webpack-loader-0.0.8.tar.gz" } ], "0.1": [], "0.1.1": [ { "comment_text": "", "digests": { "md5": "29364c9e4c84b4932e989a00c389552b", "sha256": "ccdf49dccce5bbe1700f2f348c2377da07d0883363f4911ea73196564f040696" }, "downloads": -1, "filename": "django-webpack-loader-0.1.1.tar.gz", "has_sig": false, "md5_digest": "29364c9e4c84b4932e989a00c389552b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2947, "upload_time": "2015-05-25T20:03:06", "url": "https://files.pythonhosted.org/packages/c0/5b/f05e988b6e2c79547a7c920e0603a8fc12849e4d1b41671dacda8a7072bd/django-webpack-loader-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "476e7787abb71754ec2f3bba5f7d668c", "sha256": "d472957a5d3aa8d4f183c9b693884024144e34b9e72c28b6151c91477ade8045" }, "downloads": -1, "filename": "django-webpack-loader-0.1.2.tar.gz", "has_sig": false, "md5_digest": "476e7787abb71754ec2f3bba5f7d668c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2959, "upload_time": "2015-05-25T20:11:04", "url": "https://files.pythonhosted.org/packages/01/8f/b7f77f5e9ee8722c20361d5fc3ea118b29857831c02daaeb16f0c2f387bc/django-webpack-loader-0.1.2.tar.gz" } ], "0.1.2.1": [ { "comment_text": "", "digests": { "md5": "5fd3590aadb5c854b06447a317513e32", "sha256": "6a1431213c39bd94a4bb0d5b3de4c2b3f371d64c66228f69a32bc3653dac99f3" }, "downloads": -1, "filename": "django-webpack-loader-0.1.2.1.tar.gz", "has_sig": false, "md5_digest": "5fd3590aadb5c854b06447a317513e32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2974, "upload_time": "2015-05-26T21:43:59", "url": "https://files.pythonhosted.org/packages/94/cc/14a58abc8cfd8c8fc2b3d31eec19953d772302393906f56f449c676bb9c6/django-webpack-loader-0.1.2.1.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "d602b2c1a1190f625d026f2733bdec71", "sha256": "c67f43e8eb6d9e8c9206df58e6d59e3d6e3bd81efece60a9123060f1012e72d6" }, "downloads": -1, "filename": "django-webpack-loader-0.1.3.tar.gz", "has_sig": false, "md5_digest": "d602b2c1a1190f625d026f2733bdec71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3088, "upload_time": "2015-08-22T20:34:04", "url": "https://files.pythonhosted.org/packages/55/c9/f931466470e662270620632cccd1ca7c1e2cdc6fa2086afe6d458a01fe02/django-webpack-loader-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "e38f416aee113216131c3bd1dd89e037", "sha256": "b0b1e66f008e177de5501daa58c3b7dc6b9bf98480820a0415d8fe4df710f52c" }, "downloads": -1, "filename": "django-webpack-loader-0.1.4.tar.gz", "has_sig": false, "md5_digest": "e38f416aee113216131c3bd1dd89e037", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3139, "upload_time": "2015-08-30T10:54:02", "url": "https://files.pythonhosted.org/packages/74/dc/d65c71117692b653115b160eb5a596f14d254d1c15ac0d60c61f99b03119/django-webpack-loader-0.1.4.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "e864405410983a37cbb9f6ee4d75c78f", "sha256": "ef0c0bcfdc3626aed43888dc26d4c7ba15492dcdfcfa6725638d50b3ab2368f8" }, "downloads": -1, "filename": "django-webpack-loader-0.2.0.tar.gz", "has_sig": false, "md5_digest": "e864405410983a37cbb9f6ee4d75c78f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3802, "upload_time": "2015-09-10T09:22:34", "url": "https://files.pythonhosted.org/packages/1c/58/dfd5afb6f1cee4642ce8d664a52b3cd0bc2e7146a99dce0e258723f2a6a0/django-webpack-loader-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "1c89a7724999693b3187b4c8e1b704e7", "sha256": "b7c2284accd63b8e129a1499c2cbdbc41d9718b643c70277eaa60d93eed039b9" }, "downloads": -1, "filename": "django-webpack-loader-0.2.1.tar.gz", "has_sig": false, "md5_digest": "1c89a7724999693b3187b4c8e1b704e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3897, "upload_time": "2015-09-21T09:30:00", "url": "https://files.pythonhosted.org/packages/75/13/ece20f51b013b2e0b1361afa4d290f7464fa4dea3ed7f9be88bef1789122/django-webpack-loader-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "4607c4e231d9669d9b423b9ea358d871", "sha256": "8c044925effdca15e15b5b09d0852058a5e8433be6d0297111d144ab5a35ec73" }, "downloads": -1, "filename": "django-webpack-loader-0.2.2.tar.gz", "has_sig": false, "md5_digest": "4607c4e231d9669d9b423b9ea358d871", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3899, "upload_time": "2015-09-21T09:39:52", "url": "https://files.pythonhosted.org/packages/57/88/0a35327ba3e8da5a75cc27f454aaabc681be39882dc80b09233d78edfa7a/django-webpack-loader-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "9aab4e933e02b95c23d5a5febb0d2cfd", "sha256": "0e310ec7c69ce1ef718406f49588cb9101b40e28f6f2dd9a4d4a828d301f8248" }, "downloads": -1, "filename": "django-webpack-loader-0.2.3.tar.gz", "has_sig": false, "md5_digest": "9aab4e933e02b95c23d5a5febb0d2cfd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3913, "upload_time": "2015-12-03T23:11:49", "url": "https://files.pythonhosted.org/packages/1a/dc/d216e21fd478d6de950470c4ab8be94594b854a69e7e37b839026c0108ff/django-webpack-loader-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "cfd64f21ee2f76c9166b9ff683cfa9ce", "sha256": "e3e03ea8a2e4ca5df8b57a16cad8180a415b414d36defb5a51a78901677d97af" }, "downloads": -1, "filename": "django-webpack-loader-0.2.4.tar.gz", "has_sig": false, "md5_digest": "cfd64f21ee2f76c9166b9ff683cfa9ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3922, "upload_time": "2015-12-23T11:16:48", "url": "https://files.pythonhosted.org/packages/91/e2/434871ef67684c8c4cc6881fb4cb8e69a4e4f2cfda15809ace5a22e48ee1/django-webpack-loader-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "441a0c9f23a2cd50a391fc7b1cf26eaf", "sha256": "d07551285bb15db68c26c11c15051fb74dde8a311562e8ed1d36df1160371a47" }, "downloads": -1, "filename": "django_webpack_loader-0.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "441a0c9f23a2cd50a391fc7b1cf26eaf", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15574, "upload_time": "2016-02-21T10:41:48", "url": "https://files.pythonhosted.org/packages/6d/2d/cb1605ede4d407b0dce7093d6c6ff53207df649b20987fc07a2d4507d440/django_webpack_loader-0.3.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a2688396fdbd116287ea0c3024d2e629", "sha256": "729c8d1b0d3f1449a2f7964c7e5351d0494bbe0470afdf9570e26593ac75fe13" }, "downloads": -1, "filename": "django-webpack-loader-0.3.0.tar.gz", "has_sig": false, "md5_digest": "a2688396fdbd116287ea0c3024d2e629", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8963, "upload_time": "2016-02-21T10:41:38", "url": "https://files.pythonhosted.org/packages/94/84/72c95ec555c8cea9c852903bb3e071df9309c6d3399168a3aeaeb0ba9b24/django-webpack-loader-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "e94bc172e365d1a7e5a149fd77238557", "sha256": "49fe516dda20a07e28c5908884fb037d0fda5ff12482b95478c1ed8896ab0ae1" }, "downloads": -1, "filename": "django-webpack-loader-0.3.1.tar.gz", "has_sig": false, "md5_digest": "e94bc172e365d1a7e5a149fd77238557", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9267, "upload_time": "2016-07-24T09:35:00", "url": "https://files.pythonhosted.org/packages/af/9f/624ae007ffaf8454aa6c2a4f6902336b166164897d539e6c23fa5ca902fa/django-webpack-loader-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "55e339baea71db34957eae4af71997dd", "sha256": "ff595b7565b8b81926f25c689af4c059ffc351e5294dd6561becb3c6b4a6f3e8" }, "downloads": -1, "filename": "django_webpack_loader-0.3.2-py2-none-any.whl", "has_sig": false, "md5_digest": "55e339baea71db34957eae4af71997dd", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 15138, "upload_time": "2016-07-24T10:02:18", "url": "https://files.pythonhosted.org/packages/bc/2b/78cc11a6ff77240c4c469ea41a9b56714b478ec3d28515e92ce7047aaf00/django_webpack_loader-0.3.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e7242f77d5d40baacde2028f26da4410", "sha256": "0828040c5d89217c94c3212d1a42b221e007722a20d7d909580eb1611c144134" }, "downloads": -1, "filename": "django_webpack_loader-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e7242f77d5d40baacde2028f26da4410", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15140, "upload_time": "2016-07-24T10:02:21", "url": "https://files.pythonhosted.org/packages/2e/9e/974ee298cf674d9cf6634657c131172e70d8414fc27bcbaa6928adcf8a79/django_webpack_loader-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a35df865e0fe40383b6cfe4ffe8b6c1a", "sha256": "9d2d5637dfed4462676909c74fd76b6619ef9fb48be095e4ff1f60c5fd25713c" }, "downloads": -1, "filename": "django-webpack-loader-0.3.2.tar.gz", "has_sig": false, "md5_digest": "a35df865e0fe40383b6cfe4ffe8b6c1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9268, "upload_time": "2016-07-24T10:02:24", "url": "https://files.pythonhosted.org/packages/a4/07/5b23ef88f49f3595c062419bcbc3a86fd0996085861bba2c300307990420/django-webpack-loader-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "96dfd799343284e41b5dfe6e6e17fa6e", "sha256": "0fe315bda9236f298c56fc2c2f64d30e432059dd69b6ab3cecbd6b86e4a03643" }, "downloads": -1, "filename": "django_webpack_loader-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "96dfd799343284e41b5dfe6e6e17fa6e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15476, "upload_time": "2016-07-24T19:44:52", "url": "https://files.pythonhosted.org/packages/73/a7/f4a2b133daeb733e0d02efeeffc6252bdaf984a7e24c5465136e7782cfc0/django_webpack_loader-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b23d8b294503c8f6342645279d2d33c9", "sha256": "2481388370dc5015a1136bddea4631eb275ab8d9646bfd9a6c581ac555bacfcd" }, "downloads": -1, "filename": "django-webpack-loader-0.3.3.tar.gz", "has_sig": false, "md5_digest": "b23d8b294503c8f6342645279d2d33c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9487, "upload_time": "2016-07-24T19:44:55", "url": "https://files.pythonhosted.org/packages/05/d5/d993a8f0a50e0e5401b47e8f2519b0fa35f00859e2b80ea557681584ab80/django-webpack-loader-0.3.3.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "cf3b541288d0023234e78a6aa1bb908e", "sha256": "209fdeaf785636d6397f4108182a52d6598beef89774837fbd2c097711c26381" }, "downloads": -1, "filename": "django_webpack_loader-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cf3b541288d0023234e78a6aa1bb908e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7834, "upload_time": "2016-11-06T22:20:09", "url": "https://files.pythonhosted.org/packages/9b/cc/b4f24ed2f69a6729b2b87319c513c7b813a47b6f6cd2053fbcc046697bba/django_webpack_loader-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ffe706fd5ea4f798c22df8b11def864", "sha256": "84800a5d759111131f80fc4b177fa79c2af277d3e8653511234acca3660f23bd" }, "downloads": -1, "filename": "django-webpack-loader-0.4.0.tar.gz", "has_sig": false, "md5_digest": "2ffe706fd5ea4f798c22df8b11def864", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10280, "upload_time": "2016-11-06T22:20:12", "url": "https://files.pythonhosted.org/packages/c1/b1/3fe41fe4d0eac2ac5f00318d3d91da4c0796db9ff80aa14d5bdf18c9ecff/django-webpack-loader-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "8e37e0203afccf7eb003f9bc391a0313", "sha256": "0de4150fca4ac1cf8b4468d82770d43567d38c48fb308694e6d76fb9b5760826" }, "downloads": -1, "filename": "django_webpack_loader-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8e37e0203afccf7eb003f9bc391a0313", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16473, "upload_time": "2016-11-06T22:24:10", "url": "https://files.pythonhosted.org/packages/98/dd/41c9f90e9d98f1ee74273fc1184a77ebcf6795becb4989ce373cfb15704f/django_webpack_loader-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a73c6034ce1c430ea0a8ec5fde0c3244", "sha256": "075c322d2748779ef8622149dca70a85b2741bf0b95ad78d918e6689812d4c06" }, "downloads": -1, "filename": "django-webpack-loader-0.4.1.tar.gz", "has_sig": false, "md5_digest": "a73c6034ce1c430ea0a8ec5fde0c3244", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11661, "upload_time": "2016-11-06T22:24:15", "url": "https://files.pythonhosted.org/packages/48/93/ca59887c689e7010867137802294b5fc195791b8862d5570198bb2c5cacd/django-webpack-loader-0.4.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "84c5de47c0c2214779384dc19cbca13a", "sha256": "0a8536e36a30d719018cd4c5da6e9d2377771134e713c14e617bb484b4f0acce" }, "downloads": -1, "filename": "django_webpack_loader-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "84c5de47c0c2214779384dc19cbca13a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17288, "upload_time": "2017-05-20T06:04:57", "url": "https://files.pythonhosted.org/packages/6a/1d/3680c3cd7bf5a35a0ed451201fbdd93d7b17e63045d97bb8e2d4ba754e5f/django_webpack_loader-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c55d4b7d6f4d06d681132c47ebfa4d41", "sha256": "7094bcd8cc40c9824e5b482ce8ff9e8ae09e1982e5d08e078e5fe2411fb40a03" }, "downloads": -1, "filename": "django-webpack-loader-0.5.0.tar.gz", "has_sig": false, "md5_digest": "c55d4b7d6f4d06d681132c47ebfa4d41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12229, "upload_time": "2017-05-20T06:05:00", "url": "https://files.pythonhosted.org/packages/2e/7f/2e1779c26687351ecc61216404f21a996bf8ca8ef4f8c5a8a029c5941c6e/django-webpack-loader-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "55e08aab48b6dbe21905930a1ff042af", "sha256": "970b968c2a8975fb7eff56a3bab5d0d90d396740852d1e0c50c5cfe2b824199a" }, "downloads": -1, "filename": "django_webpack_loader-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "55e08aab48b6dbe21905930a1ff042af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17592, "upload_time": "2018-02-23T05:16:13", "url": "https://files.pythonhosted.org/packages/59/95/5f22937ebb7aae30bbd8e1d4f428a36bdd98ac97c3ed12ebba9c6902496c/django_webpack_loader-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d2e4fe047648ab9f4f18b5d1a2fa9c9", "sha256": "60bab6b9a037a5346fad12d2a70a6bc046afb33154cf75ed640b93d3ebd5f520" }, "downloads": -1, "filename": "django-webpack-loader-0.6.0.tar.gz", "has_sig": false, "md5_digest": "3d2e4fe047648ab9f4f18b5d1a2fa9c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17385, "upload_time": "2018-02-23T05:16:14", "url": "https://files.pythonhosted.org/packages/ff/0f/e812908c5dcc7c8cac5beba2cddd14bbfe045496117b3d306a71b19fc828/django-webpack-loader-0.6.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "55e08aab48b6dbe21905930a1ff042af", "sha256": "970b968c2a8975fb7eff56a3bab5d0d90d396740852d1e0c50c5cfe2b824199a" }, "downloads": -1, "filename": "django_webpack_loader-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "55e08aab48b6dbe21905930a1ff042af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17592, "upload_time": "2018-02-23T05:16:13", "url": "https://files.pythonhosted.org/packages/59/95/5f22937ebb7aae30bbd8e1d4f428a36bdd98ac97c3ed12ebba9c6902496c/django_webpack_loader-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d2e4fe047648ab9f4f18b5d1a2fa9c9", "sha256": "60bab6b9a037a5346fad12d2a70a6bc046afb33154cf75ed640b93d3ebd5f520" }, "downloads": -1, "filename": "django-webpack-loader-0.6.0.tar.gz", "has_sig": false, "md5_digest": "3d2e4fe047648ab9f4f18b5d1a2fa9c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17385, "upload_time": "2018-02-23T05:16:14", "url": "https://files.pythonhosted.org/packages/ff/0f/e812908c5dcc7c8cac5beba2cddd14bbfe045496117b3d306a71b19fc828/django-webpack-loader-0.6.0.tar.gz" } ] }