{ "info": { "author": "Andrey Fedoseev", "author_email": "andrey.fedoseev@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Topic :: Internet :: WWW/HTTP" ], "description": "*************************\nDjango Static Precompiler\n*************************\n\nDjango Static Precompiler provides template tags and filters to compile CoffeeScript, LiveScript, SASS / SCSS, LESS, Stylus, Babel and Handlebars.\nIt works with both inline code and external files.\n\n.. image:: https://circleci.com/gh/andreyfedoseev/django-static-precompiler.svg?style=shield\n :target: https://circleci.com/gh/andreyfedoseev/django-static-precompiler\n :alt: Build Status\n\n.. image:: https://codecov.io/github/andreyfedoseev/django-static-precompiler/coverage.svg?branch=master\n :target: https://codecov.io/github/andreyfedoseev/django-static-precompiler?branch=master\n :alt: Code Coverage\n\n.. image:: https://codeclimate.com/github/andreyfedoseev/django-static-precompiler/badges/gpa.svg\n :target: https://codeclimate.com/github/andreyfedoseev/django-static-precompiler\n :alt: Code Climate\n\n.. image:: https://readthedocs.org/projects/django-static-precompiler/badge/\n :target: https://django-static-precompiler.readthedocs.io/\n :alt: Documentation\n\n.. image:: https://badges.gitter.im/Join Chat.svg\n :target: https://gitter.im/andreyfedoseev/django-static-precompiler?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n :alt: Gitter\n\nDocumentation\n=============\n\nDocumentation is available at `http://django-static-precompiler.readthedocs.io `_.\n\n\nInstall\n=======\n\n.. code-block:: sh\n\n pip install django-static-precompiler\n\nUse in templates\n================\n\n.. code-block:: django\n\n {% load compile_static %}\n {% load static %}\n\n \n \n \n\n\nUse in Python\n=============\n\n.. code-block:: python\n\n >>> from static_precompiler.utils import compile_static\n >>> compile_static(\"styles.scss\")\n \"COMPILED/styles.css\"\n\n\nDjango compatibility\n====================\n\n========================= ==== ==== ==== ==== ==== ==== ====\ndjango-static-precompiler Django\n------------------------- ----------------------------------\nversion 2.0 1.11 1.10 1.9 1.8 1.7 1.6\n========================= ==== ==== ==== ==== ==== ==== ====\n1.7+ \\+ \\+ \\+ \\+ \\+ \\+\n1.6 \\+ \\+ \\+ \\+ \\+\n1.5 \\+ \\+ \\+ \\+ \\+\n1.1-1.4 \\+ \\+ \\+ \\+\n1.0 \\+ \\+\n========================= ==== ==== ==== ==== ==== ==== ====\n\n\n\n*********\nChangelog\n*********\n\n1.8.2\n=====\n\n - Add ``clean_css`` option to LESS compiler\n - Fix URL converter to properly handle ``url(..)`` not followed directly by ``;``\n\n1.8.1\n=====\n\n - Fix ``setup.py`` to add compatibility with Python 3.4 and below.\n\n1.8\n===\n\n - Remove deprecated settings: ``COFFEESCRIPT_EXECUTABLE``, ``SCSS_EXECUTABLE``, ``SCSS_USE_COMPASS``, ``LESS_EXECUTABLE``\n - Add ``--ignore-dependencies`` option to ``compilestatic`` command\n - Add ``--delete-stale-files`` option to ``compilestatic`` command\n\n1.7.1\n=====\n\n - Bugfix: properly handle the URLs containing parenthesis or quotes\n\n1.7\n===\n\n - Prevent detection of imports in comments (SCSS)\n - Add support for Django 2.0\n\n1.6\n===\n\n - Add support for Django 1.11\n - Drop support for Django 1.6\n - Add ``include_path`` option to LESS compiler\n - Take account of ``load_paths`` option when doing inline compilation with ``libsass``\n - Bugfix: take account of additional compiler options when doing inline compilation with SASS\n\n1.5\n===\n\n - Add support for Django 1.10 and Python 3.5\n - Improve support for ``load_paths`` setting in SCSS/SASS compilers.\n\n\n1.4\n===\n\n- Fix the ``run_command`` utility function to rely on process return code rather than stderr to determine if compilation\n has finished successfully. WARNING! Changes in ``run_command`` are backward incompatible. If you use this function in\n your custom compiler you should update your code.\n\n\n1.3.1\n=====\n\n- Add support for ``--presets`` option in Babel compiler. See babel-cli `options ` for more information.\n\n1.3\n===\n\n- Fix Stylus compiler to actually enable support for detecting changes in imported files\n- Add ``precision`` option to SASS / SCSS / LibSass compilers. Set it to 8 or more if you compile Bootstrap.\n- Add ``output_style`` option to SASS / SCSS / LibSass compilers.\n- Enable verbose output for ``compilestatic`` management command\n\n1.2\n===\n\n- Add LiveScript compiler\n- Add support for ``--global-var`` option in LESS compiler\n- Add SCSS / SASS compiler based on Libsass\n\n\n1.1\n===\n\n- Add source maps support for SASS/SCSS\n- Add source maps support for LESS\n- Add source maps support for CoffeeScript\n- Add source maps support for Stylus\n- Add source maps support for Babel\n- Add `Handlebars `_ compiler\n- Add support for Django 1.9\n- Add ``plugins`` parameter to Babel compiler\n- Add ``load_paths`` parameter to SASS/SCSS compilers\n\n\n1.0.1\n=====\n\n- Add ``modules`` parameter to Babel compiler\n- Allow to install Watchdog with ``pip install django-static-precompiler[watch]``\n\n1.0\n===\n\n- Add ``compile`` template filter\n- Deprecate ``{% compile %}`` template tag\n- **The following compiler specific template tags are REMOVED:**\n\n * ``{% coffeescript %}``\n * ``{% inlinecoffeescript %}``\n * ``{% sass %}``\n * ``{% inlinesass %}``\n * ``{% scss %}``\n * ``{% inlinescss %}``\n * ``{% less %}``\n * ``{% inlineless %}``\n- Add `Stylus `_ compiler\n\n0.9\n===\n\n- Compiler options are specified with ``STATIC_PRECOMPILER_COMPILERS`` setting.\n- **The following settings are DEPRECATED:**\n\n * ``COFFEESCRIPT_EXECUTABLE``\n * ``SCSS_EXECUTABLE``\n * ``SCSS_USE_COMPASS``\n * ``LESS_EXECUTABLE``\n- ``-C`` (``--no-cache``) flag is removed from SASS/SCSS compilers\n- Add ``STATIC_PRECOMPILER_LIST_FILES`` setting\n- Add `Babel `_ compiler\n\n0.8\n===\n\n- Add ``{% inlinecompile %}`` template tag\n- **The following compiler specific template tags are DEPRECATED:**\n\n * ``{% coffeescript %}``\n * ``{% inlinecoffeescript %}``\n * ``{% sass %}``\n * ``{% inlinesass %}``\n * ``{% scss %}``\n * ``{% inlinescss %}``\n * ``{% less %}``\n * ``{% inlineless %}``\n- Use Django 1.7 migrations\n- BUGFIX: fix sass imports from scss and vice versa\n- BUGFIX: make sure that ``compilestatic`` works if ``watchdog`` isn't installed.\n- BUGFIX: fix compilation error when dependency file was removed or renamed\n\n0.7\n===\n\n- Add ``compilestatic`` management command (replaces ``static_precompiler_watch``)\n- Add ``STATIC_PRECOMPILER_DISABLE_AUTO_COMPILE`` to settings\n- Add ``STATIC_PRECOMPILER_CACHE_NAME`` to settings\n- Bugfixes\n\n0.6\n===\n\n- Add ``STATIC_PRECOMPILER_PREPEND_STATIC_URL`` to settings\n- Add ``{% compile %}`` template tag\n\n0.5.3\n=====\n\n- Update the parsing of ``@import`` statements. Fix the bug with URLs containing commas.\n\n0.5.2\n=====\n\n- ``static_precompiler_watch``: watch for changes in all directories handled by static finders, not only ``STATIC_ROOT``\n- ``static_precompiler_watch``: add ``--no-initial-scan`` option\n\n0.5.1\n=====\n\n- Fix SCSS compilation error when importing Compass styles\n\n0.5\n===\n\n- Add Python 3 support\n\n0.4\n===\n\n- Add ``compile_static`` and ``compile_static_lazy`` utility functions.\n\n0.3\n===\n\n- Bug fixes\n- Add Windows compatibility\n\n\n0.2\n===\n\n- Reduce the max length of varchar fields in Dependency model to meet MySQL limitations\n- static_precompiler_watch: don't fall with exception on compilation errors or if\n source file is not found\n\n0.1\n===\n\n- Initial release\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/andreyfedoseev/django-static-precompiler", "keywords": "sass", "license": "", "maintainer": "", "maintainer_email": "", "name": "django-static-precompiler", "package_url": "https://pypi.org/project/django-static-precompiler/", "platform": "", "project_url": "https://pypi.org/project/django-static-precompiler/", "project_urls": { "Homepage": "https://github.com/andreyfedoseev/django-static-precompiler" }, "release_url": "https://pypi.org/project/django-static-precompiler/1.8.2/", "requires_dist": null, "requires_python": "", "summary": "Django template tags to compile all kinds of static files (SASS, LESS, Stylus, CoffeeScript, Babel, LiveScript, Handlebars).", "version": "1.8.2" }, "last_serial": 3667423, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "0d5de61855ffbcbe8849a971c62bbabd", "sha256": "b7dc5c668980f2ba3225fb4c7baf777a45c926541405ed896fa608f3b1527c88" }, "downloads": -1, "filename": "django-static-precompiler-0.1.tar.gz", "has_sig": false, "md5_digest": "0d5de61855ffbcbe8849a971c62bbabd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15742, "upload_time": "2013-10-31T12:28:54", "url": "https://files.pythonhosted.org/packages/68/0c/ba15a146de21455d60a6f589ba977ec41d9a8a9c64485caedf9ac6f7ab07/django-static-precompiler-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "30d586f6ea0c44ee4bebcf1f06b7aa1c", "sha256": "a975bfe2721c014c5448d7ca697447e465613a177eb671e0a9e872a891457cd4" }, "downloads": -1, "filename": "django-static-precompiler-0.2.tar.gz", "has_sig": false, "md5_digest": "30d586f6ea0c44ee4bebcf1f06b7aa1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16256, "upload_time": "2013-12-03T14:32:01", "url": "https://files.pythonhosted.org/packages/98/fc/47e34d3eb3f6f069c00e5c1ee6e80fc7075994c9ec998674963514d59ac9/django-static-precompiler-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "841afcf0ecacb4be14f4a48c8203a9e8", "sha256": "cf28e3952a09576395a030e658064b15e25a48799155a3ca1a0ba79b110a3d54" }, "downloads": -1, "filename": "django-static-precompiler-0.3.tar.gz", "has_sig": false, "md5_digest": "841afcf0ecacb4be14f4a48c8203a9e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17029, "upload_time": "2014-03-01T13:38:16", "url": "https://files.pythonhosted.org/packages/f1/81/704015d8158daee6654ef154f64ce7a6f3b180ca368b15116ef2aa48c153/django-static-precompiler-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "7d497b044b3b096133fa79fca50d958a", "sha256": "90f8c5b06c4329e81657dbf21d1b4175cd2e15dee80442121c27cb55e26c7464" }, "downloads": -1, "filename": "django-static-precompiler-0.4.tar.gz", "has_sig": false, "md5_digest": "7d497b044b3b096133fa79fca50d958a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17613, "upload_time": "2014-03-29T09:24:01", "url": "https://files.pythonhosted.org/packages/c8/e4/892e5efb2073e16e57e4a5ea98c33ace6f0d43ac42affe9bc3e4d4ac306e/django-static-precompiler-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "1e9e5a9cff4a3f6221511b3f95f9b31a", "sha256": "4906f5b57f325c1625e90738cbdcb94d426a9eb9190d151ef26418d41cc8e0c8" }, "downloads": -1, "filename": "django-static-precompiler-0.5.tar.gz", "has_sig": false, "md5_digest": "1e9e5a9cff4a3f6221511b3f95f9b31a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17895, "upload_time": "2014-04-09T04:57:22", "url": "https://files.pythonhosted.org/packages/87/55/7454930188695f9db3d85fcd418d73d3f54c75164ec32502b2f2b4c12c36/django-static-precompiler-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "ae65ba90d4e595720792e102cbffc1b5", "sha256": "d7d42954b2e3d00247daa8f68da360a15d1b76c9e29ab2e50577aaff2662dce8" }, "downloads": -1, "filename": "django-static-precompiler-0.5.1.tar.gz", "has_sig": false, "md5_digest": "ae65ba90d4e595720792e102cbffc1b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18321, "upload_time": "2014-04-12T13:36:26", "url": "https://files.pythonhosted.org/packages/84/c0/bad013f083f0f4a600edab8056db16a8d8daa4bdf707c443e9cfa720ad0c/django-static-precompiler-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "f2a2d73ce810c10354fc4dd6cfbe69b5", "sha256": "ffc56827aa5b37f9603c54771d21f307a42dce4538233f7e3ad7e0d8f0a64300" }, "downloads": -1, "filename": "django-static-precompiler-0.5.2.tar.gz", "has_sig": false, "md5_digest": "f2a2d73ce810c10354fc4dd6cfbe69b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18960, "upload_time": "2014-04-13T15:56:50", "url": "https://files.pythonhosted.org/packages/02/a5/4906f5d7b46fc59fdd4894a69bc54eef0495f583e697fa22cc731f00cf85/django-static-precompiler-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "36c5cbfdcbe2619bd13f99d173d3fdc6", "sha256": "19b82d71c6242a9c2a8765e8c77f0c8a72ffa3d39fdf19da3987f8fdfe785372" }, "downloads": -1, "filename": "django-static-precompiler-0.5.3.tar.gz", "has_sig": false, "md5_digest": "36c5cbfdcbe2619bd13f99d173d3fdc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19676, "upload_time": "2014-04-20T16:01:19", "url": "https://files.pythonhosted.org/packages/56/b1/11db6a4c013f83babde77618d98d1832291295ecaf1ab3e89e3421a14700/django-static-precompiler-0.5.3.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "a08e606eb48350492f857cfcf1ad5fa6", "sha256": "1ed4c4338648714149283a59f6270999fedc93bcbe5a44ebf2da91c3a18e0e72" }, "downloads": -1, "filename": "django-static-precompiler-0.6.tar.gz", "has_sig": false, "md5_digest": "a08e606eb48350492f857cfcf1ad5fa6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20728, "upload_time": "2014-07-26T11:11:42", "url": "https://files.pythonhosted.org/packages/3f/69/38d3a581560c21a0a3e6f45ac08d734cdde9ffd49711c1faf095e110af0e/django-static-precompiler-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "b0edaaedc599e6d12f638e33d75587a7", "sha256": "d7f040efc0a6ca3b99634840ebe37bd50c8413ebe57aa4037d331984e4c8e00f" }, "downloads": -1, "filename": "django-static-precompiler-0.7.tar.gz", "has_sig": false, "md5_digest": "b0edaaedc599e6d12f638e33d75587a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21310, "upload_time": "2014-07-26T16:50:54", "url": "https://files.pythonhosted.org/packages/af/91/128a057609f5d38e43c6e3a7bd53acefc8fad8d1cb3cefac397d4b1b47cf/django-static-precompiler-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "0cbc0749556c03ba19d81b14c4fc92ed", "sha256": "c58645482fa85da6a005f4dadf4f8df680f90b2e21e7c331a692950381b9bfc8" }, "downloads": -1, "filename": "django-static-precompiler-0.8.tar.gz", "has_sig": false, "md5_digest": "0cbc0749556c03ba19d81b14c4fc92ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23718, "upload_time": "2014-11-24T17:18:47", "url": "https://files.pythonhosted.org/packages/d9/00/c61ed84fff7433dc6924ef9b4c1f7681c1713a3faa1432b2063ef89c066c/django-static-precompiler-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "7f454f35b94f705f2ec5d0a7b54e66af", "sha256": "3d8f1763bbabcf4f53105f5af65004969e91de858a4351f652f0669379457d16" }, "downloads": -1, "filename": "django-static-precompiler-0.9.tar.gz", "has_sig": false, "md5_digest": "7f454f35b94f705f2ec5d0a7b54e66af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127208, "upload_time": "2015-02-18T18:33:12", "url": "https://files.pythonhosted.org/packages/a6/39/d5afdc0ca0dedeb8d1375055bf24024883dc4b851c8ad2cfc0b242a139bc/django-static-precompiler-0.9.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "fe166273937de1872fa53dbc14098da4", "sha256": "412df048f00d75b322dbb55303366e49ad0a6bf93a09556cd955ec2c708f0c39" }, "downloads": -1, "filename": "django-static-precompiler-1.0.tar.gz", "has_sig": false, "md5_digest": "fe166273937de1872fa53dbc14098da4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24534, "upload_time": "2015-09-21T17:15:18", "url": "https://files.pythonhosted.org/packages/64/9c/1c9dba3eea867466d269df2cf07296fbc8b38fdca9a5f182c8ef9a88c190/django-static-precompiler-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "bcec31a9345d47f13fbc4d2c446cbf49", "sha256": "21b2db96afd7a7da46a3a803d830deb20655187a3f800832c42f4d2cb6ed8199" }, "downloads": -1, "filename": "django-static-precompiler-1.0.1.tar.gz", "has_sig": false, "md5_digest": "bcec31a9345d47f13fbc4d2c446cbf49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24875, "upload_time": "2015-09-22T17:05:54", "url": "https://files.pythonhosted.org/packages/c0/a8/6710198463ff58713ccd74b71698ed2aa9cdfbf6030e86aa6f740ff3bb3e/django-static-precompiler-1.0.1.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "e3d5f15b1f7e6c7e657f3baef73ffdbf", "sha256": "92cadfd41556db601f0c57e0bb6a30fec9c3d6782741eeb65911476830c887a0" }, "downloads": -1, "filename": "django-static-precompiler-1.1.tar.gz", "has_sig": false, "md5_digest": "e3d5f15b1f7e6c7e657f3baef73ffdbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27446, "upload_time": "2015-11-22T02:25:22", "url": "https://files.pythonhosted.org/packages/a3/65/55452d2051e68dd0983ff6426b5d8f3b1a64ce29279a9ec3e6af3bd2f9e7/django-static-precompiler-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "c6cc3133db1d707ce7358cb940f79008", "sha256": "98e8328e45cc1a3de6c2d1d717e8046d0f160147b327ed7f5f710df30196b86f" }, "downloads": -1, "filename": "django-static-precompiler-1.2.tar.gz", "has_sig": false, "md5_digest": "c6cc3133db1d707ce7358cb940f79008", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25700, "upload_time": "2016-01-10T00:16:42", "url": "https://files.pythonhosted.org/packages/8d/8a/accdb71414a7df27f2eaec2335acd523520c163f131056eb5a2b687b4b85/django-static-precompiler-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "2a4518adf45f7d598d13c64582f1b5fd", "sha256": "a2299ba00cc267072ac2a81be89b021ec232499ac9f8ac072f077272754ce11e" }, "downloads": -1, "filename": "django-static-precompiler-1.3.tar.gz", "has_sig": false, "md5_digest": "2a4518adf45f7d598d13c64582f1b5fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27069, "upload_time": "2016-02-21T01:42:04", "url": "https://files.pythonhosted.org/packages/51/11/d9d2c8ed34366900b87486b121d04edd1f2af77cf48003e8ca4c44772f11/django-static-precompiler-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "3c2d8f9bbff18b8bdbcc78546c5f9057", "sha256": "8477e8846f4409fa9d55e09f58f0e88c26e4c539e022ce912808bd2d1ea70102" }, "downloads": -1, "filename": "django-static-precompiler-1.3.1.tar.gz", "has_sig": false, "md5_digest": "3c2d8f9bbff18b8bdbcc78546c5f9057", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27247, "upload_time": "2016-03-27T04:17:55", "url": "https://files.pythonhosted.org/packages/ef/49/cf13914f4c3acead9787b4387216edea18eaf7e895aeaf120fa5f311bf2c/django-static-precompiler-1.3.1.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "88dba0ade5c3cdd102db244ac38e4643", "sha256": "4e432814e1c1ebc0fb29696322a318b92f9a7b1a0b4fa6c592ee73a968614504" }, "downloads": -1, "filename": "django-static-precompiler-1.4.tar.gz", "has_sig": false, "md5_digest": "88dba0ade5c3cdd102db244ac38e4643", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27409, "upload_time": "2016-05-09T22:09:08", "url": "https://files.pythonhosted.org/packages/53/99/02aa6ca2e4c0640aa6be2ccd775e22e86f838c0715340786fc4b1bbd5418/django-static-precompiler-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "651076e8060f28afb59eaa1030c8e208", "sha256": "6d37d4242bdb7ed97aae0d8cb2a45ad0416d2a11dfe31b5bfcf382afcbb5bd84" }, "downloads": -1, "filename": "django-static-precompiler-1.5.tar.gz", "has_sig": false, "md5_digest": "651076e8060f28afb59eaa1030c8e208", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28290, "upload_time": "2016-09-26T23:30:12", "url": "https://files.pythonhosted.org/packages/92/0d/2cd427f946f3123a9b2fe69d06c401ea7f9851310d4c256ee39a5e228ebb/django-static-precompiler-1.5.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "940f6015d8ecd2e7e502956ab5167392", "sha256": "d654fd2b3ad609b41870f3247e0f9b1f4a1cf1c6acb5a43afd0fde87bb158fba" }, "downloads": -1, "filename": "django-static-precompiler-1.6.tar.gz", "has_sig": false, "md5_digest": "940f6015d8ecd2e7e502956ab5167392", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28728, "upload_time": "2017-05-24T04:30:31", "url": "https://files.pythonhosted.org/packages/f8/ca/e226a99eab911640e7d7150e2801ecfdc3af05c242f719decbf87b20d51f/django-static-precompiler-1.6.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "c5f304894f0af609e7ab4bf06d780c84", "sha256": "e6aaae21c4f97195846b52ba1a31fa4b142a214e3efa4b57366eebe640c7dc54" }, "downloads": -1, "filename": "django-static-precompiler-1.7.tar.gz", "has_sig": false, "md5_digest": "c5f304894f0af609e7ab4bf06d780c84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31233, "upload_time": "2017-12-04T18:23:54", "url": "https://files.pythonhosted.org/packages/b5/21/2085699351619fa622af8187d61e70132b039b31d067a2bcd6a671744c65/django-static-precompiler-1.7.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "a2c5285384d77a69563495de587031d6", "sha256": "6f8eabbe251c6cd6f3f564b0616a4c38cbd17d82dd72cc9ad6504e724cfeb9d2" }, "downloads": -1, "filename": "django-static-precompiler-1.7.1.tar.gz", "has_sig": false, "md5_digest": "a2c5285384d77a69563495de587031d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31577, "upload_time": "2018-02-10T22:11:38", "url": "https://files.pythonhosted.org/packages/87/bb/b662107ae91a218d1434f96c16efb6d7acfca39567b672026164013476b9/django-static-precompiler-1.7.1.tar.gz" } ], "1.8": [ { "comment_text": "", "digests": { "md5": "eda9c4102eb86314815d9d65d89626a6", "sha256": "9874257cab1c6527c8d288545788369035121c1240dd2fcd3fb02d8b7d46e431" }, "downloads": -1, "filename": "django-static-precompiler-1.8.tar.gz", "has_sig": false, "md5_digest": "eda9c4102eb86314815d9d65d89626a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32606, "upload_time": "2018-03-05T17:26:38", "url": "https://files.pythonhosted.org/packages/90/38/585942c6d37043d12e8c7e55763b6095f906ebd1e5f391eca849e4f6b38b/django-static-precompiler-1.8.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "40822ccda964fd8c1ddf53c9f03e93aa", "sha256": "23a73e208f221d8ce854d7dd6d3e4d426ec1eb820e8b9a8405c25373863ca269" }, "downloads": -1, "filename": "django-static-precompiler-1.8.1.tar.gz", "has_sig": false, "md5_digest": "40822ccda964fd8c1ddf53c9f03e93aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32676, "upload_time": "2018-03-06T18:34:14", "url": "https://files.pythonhosted.org/packages/cd/43/da6fb2bf016994a31ac277eb3a5c2e2c531afaba32af4df6d7398809f998/django-static-precompiler-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "b1a848fd73b6fbb0897777a8797a9317", "sha256": "e4880e9bec5e64ea17f68f0787dc636e7c33a9dd68f497c5dd3733ca3e390bb2" }, "downloads": -1, "filename": "django-static-precompiler-1.8.2.tar.gz", "has_sig": false, "md5_digest": "b1a848fd73b6fbb0897777a8797a9317", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32813, "upload_time": "2018-03-14T03:23:39", "url": "https://files.pythonhosted.org/packages/f7/52/4d0a7c1f42bbfa772e1cb8d1b015e0a35383c47bd21e79e66a551e3d6ddf/django-static-precompiler-1.8.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b1a848fd73b6fbb0897777a8797a9317", "sha256": "e4880e9bec5e64ea17f68f0787dc636e7c33a9dd68f497c5dd3733ca3e390bb2" }, "downloads": -1, "filename": "django-static-precompiler-1.8.2.tar.gz", "has_sig": false, "md5_digest": "b1a848fd73b6fbb0897777a8797a9317", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32813, "upload_time": "2018-03-14T03:23:39", "url": "https://files.pythonhosted.org/packages/f7/52/4d0a7c1f42bbfa772e1cb8d1b015e0a35383c47bd21e79e66a551e3d6ddf/django-static-precompiler-1.8.2.tar.gz" } ] }