{ "info": { "author": "Jacob Rief", "author_email": "jacob.rief@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 2.2", "Framework :: Django :: 3.0", "Framework :: Django :: 3.1", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "# django-sass-processor\n\nAnnoyed having to run a Compass, Grunt or Gulp daemon while developing Django projects?\n\nWell, then this app is for you! Compile SASS/SCSS files on the fly without having to manage\nthird party services nor special IDE plugins.\n\n[![Build Status](https://travis-ci.org/jrief/django-sass-processor.svg)](https://travis-ci.org/jrief/django-sass-processor)\n[![PyPI](https://img.shields.io/pypi/pyversions/django-sass-processor.svg)]()\n[![PyPI version](https://img.shields.io/pypi/v/django-sass-processor.svg)](https://pypi.python.org/pypi/django-sass-processor)\n[![PyPI](https://img.shields.io/pypi/l/django-sass-processor.svg)]()\n[![Downloads](https://img.shields.io/pypi/dm/django-sass-processor.svg)](https://pypi.python.org/pypi/django-sass-processor)\n[![Twitter Follow](https://img.shields.io/twitter/follow/shields_io.svg?style=social&label=Follow&maxAge=2592000)](https://twitter.com/jacobrief)\n\n\n## Other good reasons for using this library\n\n* Refer SASS/SCSS files directly from your sources, instead of referring a compiled CSS file,\nhaving to rely on another utility which creates them from SASS/SCSS files, hidden in\nyour source tree.\n* Use Django's `settings.py` for the configuration of paths, box sizes etc., instead of having another\nSCSS specific file (typically `_variables.scss`), to hold these.\n* Extend your SASS functions by calling Python functions directly out of your Django project.\n* View SCSS errors directly in the debug console of your Django's development server.\n\n**django-sass-processor** converts `*.scss` or `*.sass` files into `*.css` while rendering\ntemplates. For performance reasons this is done only once, since the preprocessor keeps track on\nthe timestamps and only recompiles, if any of the imported SASS/SCSS files is younger than the\ncorresponding generated CSS file.\n\n## Introduction\n\nThis Django app provides a templatetag `{% sass_src 'path/to/file.scss' %}`, which can be used\ninstead of the built-in templatetag `static`. This templatetag also works inside Jinja2 templates.\n\nIf SASS/SCSS files shall be referenced through the `Media` class, or `media` property, the SASS\nprocessor can be used directly.\n\nAdditionally, **django-sass-processor** is shipped with a management command, which can convert\nthe content of all occurrences inside the templatetag `sass_src` as an offline operation. Hence\nthe **libsass** compiler is not required in a production environment.\n\nDuring development, a [sourcemap](https://developer.chrome.com/devtools/docs/css-preprocessors) is\ngenerated along side with the compiled `*.css` file. This allows to debug style sheet errors much\neasier.\n\nWith this tool, you can safely remove your Ruby installations \"Compass\" and \"SASS\" from your Django\nprojects. You neither need any directory \"watching\" daemons based on node.js.\n\n## Project's Home\n\nOn GitHub:\n\nhttps://github.com/jrief/django-sass-processor\n\nPlease use the issue tracker to report bugs or propose new features.\n\n## Installation\n\n```\npip install libsass django-compressor django-sass-processor\n```\n\n`django-compressor` is required only for offline compilation, when using the command\n`manage.py compilescss`.\n\n`libsass` is not required on the production environment, if SASS/SCSS files have been precompiled\nand deployed using offline compilation.\n\n## Configuration\n\nIn `settings.py` add to:\n\n```python\nINSTALLED_APPS = [\n ...\n 'sass_processor',\n ...\n]\n```\n\n**django-sass-processor** is shipped with a special finder, to locate the generated `*.css` files\nin the directory referred by `SASS_PROCESSOR_ROOT` (or, if unset `STATIC_ROOT`). Just add it to\nyour `settings.py`. If there is no `STATICFILES_FINDERS` in your `settings.py` don't forget\nto include the **Django** [default finders](https://docs.djangoproject.com/en/stable/ref/settings/#std:setting-STATICFILES_FINDERS).\n\n```python\nSTATICFILES_FINDERS = [\n 'django.contrib.staticfiles.finders.FileSystemFinder',\n 'django.contrib.staticfiles.finders.AppDirectoriesFinder',\n 'sass_processor.finders.CssFinder',\n ...\n]\n```\n\nOptionally, add a list of additional search paths, the SASS compiler may examine when using the\n`@import \"...\";` statement in SASS/SCSS files:\n\n```python\nimport os\n\nSASS_PROCESSOR_INCLUDE_DIRS = [\n os.path.join(PROJECT_PATH, 'extra-styles/scss'),\n os.path.join(PROJECT_PATH, 'node_modules'),\n]\n```\n\nAdditionally, **django-sass-processor** will traverse all installed Django apps (`INSTALLED_APPS`)\nand look into their static folders. If any of them contain a file matching the regular expression\npattern `^_.+\\.(scss|sass)$` (read: filename starts with an underscore and is of type `scss` or\n`sass`), then that app specific static folder is added to the **libsass** include dirs. This\nfeature can be disabled in your settings with:\n\n```python\nSASS_PROCESSOR_AUTO_INCLUDE = False\n```\n\nIf inside of your SASS/SCSS files, you also want to import (using `@import \"path/to/scssfile\";`)\nfiles which do not start with an underscore, then you can configure another Regex pattern in your\nsettings, for instance:\n\n```python\nSASS_PROCESSOR_INCLUDE_FILE_PATTERN = r'^.+\\.scss$'\n```\n\nwill look for all files of type `scss`. Remember that SASS/SCSS files which start with an\nunderscore, are intended to be imported by other SASS/SCSS files, while files starting with a\nletter or number are intended to be included by the HTML tag\n``.\n\nDuring development, or when `SASS_PROCESSOR_ENABLED = True`, the compiled file is placed into the\nfolder referenced by `SASS_PROCESSOR_ROOT` (if unset, this setting defaults to `STATIC_ROOT`).\nHaving a location outside of the working directory prevents to pollute your local `static/css/...`\ndirectories with auto-generated files. Therefore assure, that this directory is writable by the\nDjango runserver.\n\n\n#### Fine tune SASS compiler parameters in `settings.py`.\n\nInteger `SASS_PRECISION` sets floating point precision for output css. libsass'\ndefault is `5`. Note: **bootstrap-sass** requires `8`, otherwise various\nlayout problems _will_ occur.\n\n```python\nSASS_PRECISION = 8\n```\n\n`SASS_OUTPUT_STYLE` sets coding style of the compiled result, one of `compact`,\n`compressed`, `expanded`, or `nested`. Default is `nested` for `DEBUG`\nand `compressed` in production.\n\nNote: **libsass-python** 0.8.3 has [problem encoding result while saving on\nWindows](https://github.com/dahlia/libsass-python/pull/82), the issue is already\nfixed and will be included in future `pip` package release, in the meanwhile\navoid `compressed` output style.\n\n```python\nSASS_OUTPUT_STYLE = 'compact'\n```\n\n### Jinja2 support\n\n`sass_processor.jinja2.ext.SassSrc` is a Jinja2 extension. Add it to your Jinja2 environment to enable the tag `sass_src`, there is no need for a `load` tag. Example of how to add your Jinja2 environment to Django:\n\nIn `settings.py`:\n\n```python\nTEMPLATES = [{\n 'BACKEND': 'django.template.backends.jinja2.Jinja2',\n 'DIRS': [],\n 'APP_DIRS': True,\n 'OPTIONS': {\n 'environment': 'yourapp.jinja2.environment'\n },\n ...\n}]\n```\n\nMake sure to add the default template backend, if you're still using Django templates elsewhere.\nThis is covered in the [Upgrading templates documentation](https://docs.djangoproject.com/en/stable/ref/templates/upgrading/).\n\nIn `yourapp/jinja2.py`:\n\n```python\n# Include this for Python 2.\nfrom __future__ import absolute_import\n\nfrom jinja2 import Environment\n\n\ndef environment(**kwargs):\n extensions = [] if 'extensions' not in kwargs else kwargs['extensions']\n extensions.append('sass_processor.jinja2.ext.SassSrc')\n kwargs['extensions'] = extensions\n\n return Environment(**kwargs)\n```\n\nIf you want to make use of the `compilescss` command, then you will also have to add the following to your settings:\n\n```python\nfrom yourapp.jinja2 import environment\n\nCOMPRESS_JINJA2_GET_ENVIRONMENT = environment\n```\n\n### Using ManifestStaticFilesStorage\n\nIf your project is configured to use the\n[ManifestStaticFilesStorage](https://docs.djangoproject.com/en/stable/ref/contrib/staticfiles/#manifeststaticfilesstorage),\nthen please configure two different storage classes in `settings.py`, one for the lookup of *.scss-files, and one\nfor delivering the compiled *.css-files.\n\n```python\nSTATICFILES_STORAGE = 'django.contrib.staticfiles.storage.ManifestStaticFilesStorage'\n\nSASS_PROCESSOR_STORAGE = 'django.contrib.staticfiles.storage.FileSystemStorage'\nSASS_PROCESSOR_STORAGE_OPTIONS = {\n 'location': STATIC_ROOT,\n 'base_url': STATIC_URL,\n}\n\n```\n\n\n## Usage\n\n### In your Django templates\n\n```django\n{% load sass_tags %}\n\n\n```\n\nThe above template code will be rendered as HTML\n\n```html\n\n```\n\nYou can safely use this templatetag inside a [Sekizai](https://django-sekizai.readthedocs.io/)'s\n`{% addtoblock \"css\" %}` statement.\n\n### In Media classes or properties\n\nIn Python code, you can access the API of the SASS processor directly. This for instance is useful\nin Django's admin or form framework.\n\n```python\nfrom sass_processor.processor import sass_processor\n\nclass SomeAdminOrFormClass(...):\n ...\n class Media:\n css = {\n 'all': [sass_processor('myapp/css/mystyle.scss')],\n }\n```\n\n## Add vendor prefixes to CSS rules using values from https://caniuse.com/\n\nWriting SCSS shall be fast and easy and you should not have to care, whether to add vendor specific\nprefixes to your CSS directives. Unfortunately there is no pure Python package to solve this, but\nwith a few node modules, we can add this to our process chain.\n\nAs superuser install\n\n```shell\nnpm install -g npx\n```\n\nand inside your project root, install\n\n```shell\nnpm install postcss-cli autoprefixer\n```\n\nCheck that the path of `node_modules` corresponds to its entry in the settings directive\n`STATICFILES_DIRS` (see below).\n\nIn case `npx` can not be found in your system path, use the settings directive\n`NODE_NPX_PATH = /path/to/npx` to point to that executable.\n\nIf everything is setup correctly, **django-sass-processor** adds all required vendor prefixes to\nthe compiled CSS files. For further information, refer to the\n[Autoprefixer](https://github.com/postcss/autoprefixer) package.\n\nTo disable autoprefixing, set `NODE_NPX_PATH = None`.\n\n**Important note**: If `npx` is installed, but `postcss` and/or `autoprefixer` are missing\nin the local `node_modules`, setting `NODE_NPX_PATH` to `None` is manadatory, otherwise\n**django-sass-processor** does not know how to postprocess the generated CSS files.\n\n## Offline compilation\n\nIf you want to precompile all occurrences of your SASS/SCSS files for the whole project, on the\ncommand line invoke:\n\n```shell\n./manage.py compilescss\n```\n\nThis is useful for preparing production environments, where SASS/SCSS files can't be compiled on\nthe fly.\n\nTo simplify the deployment, the compiled `*.css` files are stored side-by-side with their\ncorresponding SASS/SCSS files. After compiling the files run\n\n```shell\n./manage.py collectstatic\n```\n\nas you would in a normal deployment.\n\nIn case you don't want to expose the SASS/SCSS files in a production environment,\ndeploy with:\n\n```shell\n./manage.py collectstatic --ignore=*.scss\n```\n\nTo get rid of the compiled `*.css` files in your local static directories, simply reverse the\nabove command:\n\n```shell\n./manage.py compilescss --delete-files\n```\n\nThis will remove all occurrences of previously generated `*.css` files.\n\nOr you may compile results to the `SASS_PROCESSOR_ROOT` directory directy (if not specified - to\n`STATIC_ROOT`):\n\n```shell\n./manage.py compilescss --use-storage\n```\n\nCombine with `--delete-files` switch to purge results from there.\n\nIf you use an alternative templating engine set its name in `--engine` argument. Currently\n`django` and `jinja2` are supported, see\n[django-compressor documentation](http://django-compressor.readthedocs.org/en/latest/) on how to\nset up `COMPRESS_JINJA2_GET_ENVIRONMENT` to configure jinja2 engine support.\n\nDuring offline compilation **django-sass-processor** parses all Python files and looks for\ninvocations of `sass_processor('path/to/sassfile.scss')`. Therefore the string specifying\nthe filename must be hard coded and shall not be concatenated or being somehow generated.\n\n### Alternative templates\n\nBy default, **django-sass-processor** will locate SASS/SCSS files from .html templates,\nbut you can extend or override this behavior in your settings with:\n\n```python\nSASS_TEMPLATE_EXTS = ['.html','.jade']\n```\n\n## Configure SASS variables through settings.py\n\nIn SASS, a nasty problem is to set the correct include paths for icons and fonts. Normally this is\ndone through a `_variables.scss` file, but this inhibits a configuration through your projects\n`settings.py`.\n\nTo avoid the need for duplicate configuration settings, **django-sass-processor** offers a SASS\nfunction to fetch any arbitrary configuration directive from the project's `settings.py`. This\nis specially handy to set the include path of your Glyphicons font directory. Assume, Bootstrap-SASS\nhas been installed using:\n\n```shell\nnpm install bootstrap-sass\n```\n\nthen locate the directory named `node_modules` and add it to your settings, so that your fonts are\naccessible through the Django's `django.contrib.staticfiles.finders.FileSystemFinder`:\n\n```python\nSTATICFILES_DIRS = [\n ...\n ('node_modules', '/path/to/your/project/node_modules/'),\n ...\n]\n\nNODE_MODULES_URL = STATIC_URL + 'node_modules/'\n```\n\nWith the SASS function `get-setting`, it is possible to override any SASS variable with a value\nconfigured in the project's `settings.py`. For the Glyphicons font search path, add this to your\n`_variables.scss`:\n\n```scss\n$icon-font-path: unquote(get-setting(NODE_MODULES_URL) + \"bootstrap-sass/assets/fonts/bootstrap/\");\n```\n\nand `@import \"variables\";` whenever you need Glyphicons. You then can safely remove any font\nreferences, such as ``\nfrom you HTML templates.\n\n\n### Configure SASS variables through Python functions\n\nIt is even possible to call Python functions from inside any module. Do this by adding\n`SASS_PROCESSOR_CUSTOM_FUNCTIONS` to the project's `settings.py`. This shall contain a mapping\nof SASS function names pointing to a Python function name.\n\nExample:\n\n```python\nSASS_PROCESSOR_CUSTOM_FUNCTIONS = {\n 'get-color': 'myproject.utils.get_color',\n}\n```\n\nThis allows to invoke Python functions out of any `*.scss` file. \n\n```scss\n$color: get-color(250, 10, 120);\n```\n\nHere we pass the parameters '250, 10, 120' into the function `def get_color(red, green, blue)`\nin Python module `myproject.utils`. Note that this function receives the values as `sass.Number`,\nhence extract values using `red.value`, etc.\n\nIf one of these customoized functions returns a value, which is not a string, then convert it\neither to a Python string or to a value of type `sass.SassNumber`. For other types, refer to their\ndocumentation.\n\nSuch customized functions must accept parameters explicilty, otherwise `sass_processor` does not\nknow how to map them. Variable argument lists therefore can not be used.\n\n\n## Error reporting\n\nWhenever **django-sass-processor** runs in debug mode and fails to compile a SASS/SCSS file, it\nraises a `sass.CompileError` exception. This shows the location of the error directly on the\nDjango debug console and is very useful during development.\n\nThis behaviour can be overridden using the settings variable `SASS_PROCESSOR_FAIL_SILENTLY`.\nIf it is set to `True`, instead of raising that exception, the compilation error message is send\nto the Django logger.\n\n\n## Using other storage backends for compiled CSS files\n\nUnder the hood, SASS processor will use any storage configured in your settings as `STATICFILES_STORAGE`.\nThis means you can use anything you normally use for serving static files, e.g. S3.\n\nA custom Storage class can be used if your deployment needs to serve generated CSS files from elsewhere,\ne.g. when your static files storage is not writable at runtime and you nede to re-compile CSS\nin production. To use a custom storage, configure it in `SASS_PROCESSOR_STORAGE`. You can also\nconfigure a dictionary with options that will be passed to the storage class as keyword arguments\nin `SASS_PROCESSOR_STORAGE_OPTIONS` (e.g. if you want to use `FileSystemStorage`, but with\na different `location` or `base_url`:\n\n```python\nSASS_PROCESSOR_STORAGE = 'django.core.files.storage.FileSystemStorage'\nSASS_PROCESSOR_STORAGE_OPTIONS = {\n 'location': '/srv/media/generated',\n 'base_url': 'https://media.myapp.example.com/generated'\n}\n```\n\n\n### Amazon's S3 Storage\n\nUsing the S3 storage backend from [django-storages](https://django-storages.readthedocs.io/en/latest/)\nwith its regular configuration (if you do not otherwise use it for service static files):\n\n```python\nSASS_PROCESSOR_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'\n```\n\n\n## Heroku\n\nIf you are deploying to [Heroku](https://www.heroku.com/), use the\n[heroku-buildpack-django-sass](https://elements.heroku.com/buildpacks/drpancake/heroku-buildpack-django-sass)\nbuildpack to automatically compile scss for you.\n\n\n## Development\n\nTo run the tests locally, clone the repository, create a new virtualenv, activate it and then run\nthese commands:\n\n```shell\ncd django-sass-processor\npip install tox\ntox\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/jrief/django-sass-processor", "keywords": "django,sass", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django-sass-processor", "package_url": "https://pypi.org/project/django-sass-processor/", "platform": "", "project_url": "https://pypi.org/project/django-sass-processor/", "project_urls": { "Homepage": "https://github.com/jrief/django-sass-processor" }, "release_url": "https://pypi.org/project/django-sass-processor/1.1/", "requires_dist": null, "requires_python": "", "summary": "SASS processor to compile SCSS files into *.css, while rendering, or offline.", "version": "1.1", "yanked": false, "yanked_reason": null }, "last_serial": 11579646, "releases": { "0.2.2": [ { "comment_text": "", "digests": { "md5": "b4b63aba46641c7718b03d29a644e296", "sha256": "e3cc9d4396151ee2cbfd01797ac4c51352642409ccccc7a58ed2a6f93158affe" }, "downloads": -1, "filename": "django-sass-processor-0.2.2.tar.gz", "has_sig": false, "md5_digest": "b4b63aba46641c7718b03d29a644e296", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13333, "upload_time": "2015-02-16T00:04:17", "upload_time_iso_8601": "2015-02-16T00:04:17.485648Z", "url": "https://files.pythonhosted.org/packages/eb/6a/378fef2f6329da698eec3b39495cb571e528fb037a80c60431aaa79d9779/django-sass-processor-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "b7cc7ba402fd0e9825555c931bbe0529", "sha256": "91a5c4cdf1f5e304613306d2b52f44b5417b50f3aa6994a12139722831dd00e4" }, "downloads": -1, "filename": "django-sass-processor-0.2.3.tar.gz", "has_sig": false, "md5_digest": "b7cc7ba402fd0e9825555c931bbe0529", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13652, "upload_time": "2015-06-05T20:13:29", "upload_time_iso_8601": "2015-06-05T20:13:29.298794Z", "url": "https://files.pythonhosted.org/packages/d4/38/e3dd1fbc90f6336f3cb40258a8e18c99eb748b119a7314adc000016deedf/django-sass-processor-0.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "867a639925c1b0ccc8a419691f46d499", "sha256": "51ab03d0b61ecc8cde2583f80dabc3c669c6b2fe010bdbf7c333dfd8ba4e25d2" }, "downloads": -1, "filename": "django-sass-processor-0.2.4.tar.gz", "has_sig": false, "md5_digest": "867a639925c1b0ccc8a419691f46d499", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14000, "upload_time": "2015-06-16T09:50:28", "upload_time_iso_8601": "2015-06-16T09:50:28.259018Z", "url": "https://files.pythonhosted.org/packages/07/7e/cc797f7fc2ade1531e14c3c21d17103a02b0197eb2c6a6e21476ca1b6bc1/django-sass-processor-0.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "5a2ee3a317fc7ca6e4309f8c6756797d", "sha256": "590c86f57ef45148d46e4cb901f475f71752df76bf58036a7bbd291374418b76" }, "downloads": -1, "filename": "django-sass-processor-0.2.5.tar.gz", "has_sig": false, "md5_digest": "5a2ee3a317fc7ca6e4309f8c6756797d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12502, "upload_time": "2015-10-13T08:35:56", "upload_time_iso_8601": "2015-10-13T08:35:56.674390Z", "url": "https://files.pythonhosted.org/packages/ee/b8/71c05e37d8e405163e37598866ae2ac50c878dc6c7421e8469c8c70e8a8e/django-sass-processor-0.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "dd440ca2572fcb3c11ee3365894b6cc6", "sha256": "f704b384f3bc3fa0d89a618e89bfd61dea5b79c92b322f26d94a39ee0e7f879d" }, "downloads": -1, "filename": "django-sass-processor-0.2.6.tar.gz", "has_sig": false, "md5_digest": "dd440ca2572fcb3c11ee3365894b6cc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15364, "upload_time": "2015-10-17T16:27:54", "upload_time_iso_8601": "2015-10-17T16:27:54.588138Z", "url": "https://files.pythonhosted.org/packages/ae/6a/3c1d4f6aaf0d8d03f3a63330bad6e4e3d0d1d1e2e46da76c7156f0079d81/django-sass-processor-0.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "43532852cdb380d7c3c87f006d12a1b8", "sha256": "6a807485f7693c943fc5a56ea8bdc0b5432e60700a31e4b760d767cfbc3a7979" }, "downloads": -1, "filename": "django-sass-processor-0.3.0.tar.gz", "has_sig": false, "md5_digest": "43532852cdb380d7c3c87f006d12a1b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14964, "upload_time": "2015-11-06T07:50:43", "upload_time_iso_8601": "2015-11-06T07:50:43.186100Z", "url": "https://files.pythonhosted.org/packages/48/66/3eea59c760ba9c44e70f24e2fba6351faa5858b1f7c96a3db7b7fec7f956/django-sass-processor-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [], "0.3.2": [ { "comment_text": "", "digests": { "md5": "bbd8f2b5c936bb32b93b6dc8f8353748", "sha256": "4c3a52e2a2363a8c2343138c60ab74c2be84fbfce32852bebbc1beba2ecc101d" }, "downloads": -1, "filename": "django-sass-processor-0.3.2.tar.gz", "has_sig": false, "md5_digest": "bbd8f2b5c936bb32b93b6dc8f8353748", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15121, "upload_time": "2015-12-18T09:03:59", "upload_time_iso_8601": "2015-12-18T09:03:59.872462Z", "url": "https://files.pythonhosted.org/packages/05/98/ba2b5d60a41e85363d0590bedee1158b054498ff222059f3013b3ddb8364/django-sass-processor-0.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "f6d9c240c69d00c924e2bb6b2501d403", "sha256": "dd56d41826fca17f80c174592dd8da56151c67965bc2de5f06aa35a982df8b61" }, "downloads": -1, "filename": "django-sass-processor-0.3.3.tar.gz", "has_sig": false, "md5_digest": "f6d9c240c69d00c924e2bb6b2501d403", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18166, "upload_time": "2015-12-25T18:17:24", "upload_time_iso_8601": "2015-12-25T18:17:24.602083Z", "url": "https://files.pythonhosted.org/packages/ed/80/b945b1e02e69bdae08039518c4ba42be693b8ceb9515baf35d8ce4dc0d8e/django-sass-processor-0.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "b89a549ec1351bce8195b3cc60135e32", "sha256": "5554f38d6c4606b924728973248dd5080ab624c0278f5cb63071b18243f40946" }, "downloads": -1, "filename": "django-sass-processor-0.3.4.tar.gz", "has_sig": false, "md5_digest": "b89a549ec1351bce8195b3cc60135e32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19037, "upload_time": "2016-02-23T13:58:33", "upload_time_iso_8601": "2016-02-23T13:58:33.279880Z", "url": "https://files.pythonhosted.org/packages/39/99/7f467dbc2882e25c42aac881a1ac5009517b4c8fafbd1c89178ddcfd3e46/django-sass-processor-0.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "8d22b5ea357f2c0c9c75a53afa052657", "sha256": "93aadd7cf04198a8f8a906f29fc3def12a19f0ceb9a062b5bc5a32debf52997f" }, "downloads": -1, "filename": "django-sass-processor-0.3.5.tar.gz", "has_sig": false, "md5_digest": "8d22b5ea357f2c0c9c75a53afa052657", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13158, "upload_time": "2016-05-03T14:35:44", "upload_time_iso_8601": "2016-05-03T14:35:44.515259Z", "url": "https://files.pythonhosted.org/packages/95/23/3318c9295571500c7ba273225ac048f740ab740be400cd7a3e672677b23d/django-sass-processor-0.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "51762d908593a79931efb9132280df36", "sha256": "ed86ba9ebd7bc87ca45c1a9e8e9c23ac03b6e25c3575989d4bb18ad9483cb408" }, "downloads": -1, "filename": "django-sass-processor-0.4.0.tar.gz", "has_sig": false, "md5_digest": "51762d908593a79931efb9132280df36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17016, "upload_time": "2016-07-07T11:53:51", "upload_time_iso_8601": "2016-07-07T11:53:51.227813Z", "url": "https://files.pythonhosted.org/packages/0e/97/09a22c98f9ccad7051e207a975a41a4459dcaf756892b7a92b2901b6f079/django-sass-processor-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "570c1da76706490af242fd30d4d7f00d", "sha256": "da0334df772291e1e17d0afd11cb82ec050a472051a05831d078459129e9646b" }, "downloads": -1, "filename": "django-sass-processor-0.4.1.tar.gz", "has_sig": false, "md5_digest": "570c1da76706490af242fd30d4d7f00d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16406, "upload_time": "2016-07-19T05:40:24", "upload_time_iso_8601": "2016-07-19T05:40:24.604362Z", "url": "https://files.pythonhosted.org/packages/42/8e/a930dcc5c1e11dedcb284cb073b5668702e4c7fa6960657f3e63089c6d32/django-sass-processor-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "b820e78d15db06f81cf1fe9c8e94ffe0", "sha256": "4287ad22efdb8c690aa976203b30338198c28178a4b9a888fc151e76223d62e4" }, "downloads": -1, "filename": "django-sass-processor-0.4.2.tar.gz", "has_sig": false, "md5_digest": "b820e78d15db06f81cf1fe9c8e94ffe0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21251, "upload_time": "2016-07-20T07:28:25", "upload_time_iso_8601": "2016-07-20T07:28:25.438363Z", "url": "https://files.pythonhosted.org/packages/0b/7d/0cdaa03c620294470aae2108b229768e59821379e86f1c70cb1b0feef91f/django-sass-processor-0.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "4ef85d1c8ffbc5c54cc3af9cb2e76084", "sha256": "88972d2970e20b2b8b32f3813805668187bbd01423cbc0571ef5555bc2f2d51d" }, "downloads": -1, "filename": "django-sass-processor-0.4.3.tar.gz", "has_sig": false, "md5_digest": "4ef85d1c8ffbc5c54cc3af9cb2e76084", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21205, "upload_time": "2016-07-21T08:22:00", "upload_time_iso_8601": "2016-07-21T08:22:00.097819Z", "url": "https://files.pythonhosted.org/packages/d6/78/6872b216085e6a9127a1fa09f9075602a9d430035d8901a01e428f70dad5/django-sass-processor-0.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "ec5ce9c4f01e48a384f806ce4b706351", "sha256": "44e1d112cdcc52435e221d14442ae75cae85639e3a95f9bc13f4340b7687732f" }, "downloads": -1, "filename": "django-sass-processor-0.4.4.tar.gz", "has_sig": false, "md5_digest": "ec5ce9c4f01e48a384f806ce4b706351", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21186, "upload_time": "2016-07-21T08:39:11", "upload_time_iso_8601": "2016-07-21T08:39:11.453010Z", "url": "https://files.pythonhosted.org/packages/02/61/d7a463abf9f89edcbaa012dad0a37b46c9726db671f3b16e4c61ee45e03a/django-sass-processor-0.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "cff97a1bb4684fbc84d383b77c8673e0", "sha256": "4e99b7a035123d7f15732b7879e981ea832d90c4cd8daa2dac742e94d1da9995" }, "downloads": -1, "filename": "django-sass-processor-0.4.5.tar.gz", "has_sig": false, "md5_digest": "cff97a1bb4684fbc84d383b77c8673e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16421, "upload_time": "2016-07-24T06:48:22", "upload_time_iso_8601": "2016-07-24T06:48:22.929245Z", "url": "https://files.pythonhosted.org/packages/e9/a9/5176c21c64f82b519929e4cc40445f2576691e6e7f6e371bca89c0650b72/django-sass-processor-0.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "21027ece94c650a6e35a9e24283b8c3d", "sha256": "7e0dbac07475ad760cee6d3c392b8a7ab8dd20d3eac4fb0780c73826c8a93de8" }, "downloads": -1, "filename": "django-sass-processor-0.4.6.tar.gz", "has_sig": false, "md5_digest": "21027ece94c650a6e35a9e24283b8c3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21678, "upload_time": "2016-07-25T06:47:04", "upload_time_iso_8601": "2016-07-25T06:47:04.787909Z", "url": "https://files.pythonhosted.org/packages/b3/69/d71969ae67497866fa9573cbb07d5d070b37c31044559776d0521dda4339/django-sass-processor-0.4.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "5b2ff1c41206b9f13ceb22a71878cf33", "sha256": "628673a5b81cb4b743c75935934b4263a5178ce89769707cc5030a44b5f62180" }, "downloads": -1, "filename": "django-sass-processor-0.5.0.tar.gz", "has_sig": false, "md5_digest": "5b2ff1c41206b9f13ceb22a71878cf33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20751, "upload_time": "2016-09-29T15:33:51", "upload_time_iso_8601": "2016-09-29T15:33:51.066385Z", "url": "https://files.pythonhosted.org/packages/1c/27/5c2534578589f8a7994c7be3b3e581ffa3f0b708bb678e212698cee49d6b/django-sass-processor-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "c4a17faa7eea73c8b7241a7b3949bb53", "sha256": "61295e92966d32cd8f5bd3686e0d0ddd6e07c6d2dd0a0ab90793d762eff77aad" }, "downloads": -1, "filename": "django-sass-processor-0.5.1.tar.gz", "has_sig": false, "md5_digest": "c4a17faa7eea73c8b7241a7b3949bb53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25056, "upload_time": "2016-09-29T16:04:32", "upload_time_iso_8601": "2016-09-29T16:04:32.388125Z", "url": "https://files.pythonhosted.org/packages/e7/a9/06fd6dd3ed5a43951f942f6167f5f266c66403a833d95c4f48c19b1c46e4/django-sass-processor-0.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "227644f4ffa642f58c67b328b2d511a0", "sha256": "b687347d3a8cb40b74f0129a88008c8a2ef32f7189e71ccf30defe7517e2b5f3" }, "downloads": -1, "filename": "django-sass-processor-0.5.2.tar.gz", "has_sig": false, "md5_digest": "227644f4ffa642f58c67b328b2d511a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25066, "upload_time": "2016-11-15T20:15:32", "upload_time_iso_8601": "2016-11-15T20:15:32.401860Z", "url": "https://files.pythonhosted.org/packages/ad/a7/59748d35c9063c32d9d65aecaba01c40dd76bd5267b1f162235d1e4b243d/django-sass-processor-0.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "0818f5d11ea13afea4bba4d02e5fbd05", "sha256": "133018f02e99ace98a6f66d524e38b92a5f1ae395eea711076297a929163a7a0" }, "downloads": -1, "filename": "django-sass-processor-0.5.3.tar.gz", "has_sig": false, "md5_digest": "0818f5d11ea13afea4bba4d02e5fbd05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25141, "upload_time": "2016-12-11T02:40:01", "upload_time_iso_8601": "2016-12-11T02:40:01.148730Z", "url": "https://files.pythonhosted.org/packages/bc/b4/d2813cad51e6221db2cfff03e55c3db3d531bb1c1da2fe25044a4d6459d4/django-sass-processor-0.5.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "0cb296d8b27a46a0113a09b568dd0d2f", "sha256": "e427831fdae0665cc5dc5d4f810cd3941f7d57d6d782274b307c914c62920d16" }, "downloads": -1, "filename": "django-sass-processor-0.5.4.tar.gz", "has_sig": false, "md5_digest": "0cb296d8b27a46a0113a09b568dd0d2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25164, "upload_time": "2017-02-23T13:12:02", "upload_time_iso_8601": "2017-02-23T13:12:02.216520Z", "url": "https://files.pythonhosted.org/packages/44/5e/ef4cae1e8600f0517da129a6616dae3cb5a24c5ba4050382c219b2798be3/django-sass-processor-0.5.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "ff09f3a7c63f31f6c9b89ccabe571086", "sha256": "09a8d9db466c7011a7ca6a61af527c96e13c701eab13e36a4499e29965daa0ad" }, "downloads": -1, "filename": "django-sass-processor-0.5.5.tar.gz", "has_sig": false, "md5_digest": "ff09f3a7c63f31f6c9b89ccabe571086", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18446, "upload_time": "2017-09-12T09:50:37", "upload_time_iso_8601": "2017-09-12T09:50:37.799297Z", "url": "https://files.pythonhosted.org/packages/77/ca/757257e0e29f8ec9b7cabbfe4e43cbae39994f06927216ea03107ee0ba4a/django-sass-processor-0.5.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "465b839956b75ca32506c861f3b5ddda", "sha256": "df76af0cf3be6205ecbadf230c92d268cfb604b7ad64457d86c16edc1648b05d" }, "downloads": -1, "filename": "django-sass-processor-0.5.6.tar.gz", "has_sig": false, "md5_digest": "465b839956b75ca32506c861f3b5ddda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23517, "upload_time": "2017-11-21T17:48:44", "upload_time_iso_8601": "2017-11-21T17:48:44.713166Z", "url": "https://files.pythonhosted.org/packages/22/d1/129c7c8b2a532fa651c761214b66cc31d0739a2fc9c271255159c491ab3f/django-sass-processor-0.5.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "618430747cc6633e07e81124d43e14d5", "sha256": "f56ad318625a0c4fc3931eab3b53c07d079a84a169b6aad7e804a5703db1ecb6" }, "downloads": -1, "filename": "django-sass-processor-0.5.7.tar.gz", "has_sig": false, "md5_digest": "618430747cc6633e07e81124d43e14d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29404, "upload_time": "2017-12-18T21:38:13", "upload_time_iso_8601": "2017-12-18T21:38:13.144061Z", "url": "https://files.pythonhosted.org/packages/80/f1/9b905a203b576f0083cec9cb45c3bef8f5f4215341dd8b295b8c07318399/django-sass-processor-0.5.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "36144c46e8f7a2f353a1d32bceb39244", "sha256": "7cd40dc107c9fc027a3bb4432e2382e2038d90627f11fa2b4da65d995f595309" }, "downloads": -1, "filename": "django-sass-processor-0.5.8.tar.gz", "has_sig": false, "md5_digest": "36144c46e8f7a2f353a1d32bceb39244", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19068, "upload_time": "2018-02-05T09:09:22", "upload_time_iso_8601": "2018-02-05T09:09:22.777679Z", "url": "https://files.pythonhosted.org/packages/07/24/73f4ab6be29699b3085bd1591fbce76c409291bf7ed5949f1f5688a02fdd/django-sass-processor-0.5.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6": [ { "comment_text": "", "digests": { "md5": "c36a3f9e594496f039dadc9c2c61ceec", "sha256": "84ce7f076778b4222093173d1182a66fa6340bdff6170b0fd06b9610fee07dd0" }, "downloads": -1, "filename": "django-sass-processor-0.6.tar.gz", "has_sig": false, "md5_digest": "c36a3f9e594496f039dadc9c2c61ceec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20288, "upload_time": "2018-03-16T17:01:43", "upload_time_iso_8601": "2018-03-16T17:01:43.073093Z", "url": "https://files.pythonhosted.org/packages/3d/58/ff1cc2daeaea226fc66b2574b71d2d16eaab0f17dbaf4b3b9aea37d14cd2/django-sass-processor-0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7": [ { "comment_text": "", "digests": { "md5": "506eab389076fa834584127cc8b0ef98", "sha256": "6b0d017d969b5efefd69561a196a90eb3dc3b203ad30ab722ada6067006c7682" }, "downloads": -1, "filename": "django-sass-processor-0.7.tar.gz", "has_sig": false, "md5_digest": "506eab389076fa834584127cc8b0ef98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25759, "upload_time": "2018-05-06T23:15:30", "upload_time_iso_8601": "2018-05-06T23:15:30.256284Z", "url": "https://files.pythonhosted.org/packages/6f/63/9275c27a924f3507f4cc9d89e0cc2a44bc209be6a904da8f1a96ef305692/django-sass-processor-0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "17408d9c3b62e4b41bd779fb0db86492", "sha256": "06eb0576b2a1fe4b49e0d33289e12f258d91809a8b1df3a524fd85d0de8c19de" }, "downloads": -1, "filename": "django-sass-processor-0.7.1.tar.gz", "has_sig": false, "md5_digest": "17408d9c3b62e4b41bd779fb0db86492", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18299, "upload_time": "2018-09-17T10:56:25", "upload_time_iso_8601": "2018-09-17T10:56:25.512654Z", "url": "https://files.pythonhosted.org/packages/2d/da/740709f182a3ad8a9ad33fc44a81b80166052ffa5299b0449d9a8b7c39ff/django-sass-processor-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "573d64fe2649e5a25b286ccbac5eae17", "sha256": "0381585a23c0f31a387cb53cf38f744e4d97d8ac3b9b19ec423dd6bfa714ecff" }, "downloads": -1, "filename": "django-sass-processor-0.7.2.tar.gz", "has_sig": false, "md5_digest": "573d64fe2649e5a25b286ccbac5eae17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18456, "upload_time": "2018-11-05T07:18:29", "upload_time_iso_8601": "2018-11-05T07:18:29.034605Z", "url": "https://files.pythonhosted.org/packages/93/2d/0f50d7414d59131e5365a869c1092996ad3c6b112b6409f5c80576cae101/django-sass-processor-0.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "29b3825c90e83ff5dec2d065cb4cb38b", "sha256": "5ba3568e53caf1d59573afa75d71e42c23bddbd5b48cbea831816cd72ed242f9" }, "downloads": -1, "filename": "django-sass-processor-0.7.3.tar.gz", "has_sig": false, "md5_digest": "29b3825c90e83ff5dec2d065cb4cb38b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18693, "upload_time": "2019-03-27T14:36:26", "upload_time_iso_8601": "2019-03-27T14:36:26.270800Z", "url": "https://files.pythonhosted.org/packages/b7/ec/ba3dbb86590b6a9e140008da5aa1bfcbb0401ef49bf41ca02dff9c36a272/django-sass-processor-0.7.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "40582ddf138445cff78f8674b27c3b69", "sha256": "c1b56e76ce2b57382d26328ecdc204d3f65412d5da35df8a6b7bce6e7f754882" }, "downloads": -1, "filename": "django-sass-processor-0.7.4.tar.gz", "has_sig": false, "md5_digest": "40582ddf138445cff78f8674b27c3b69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17445, "upload_time": "2019-10-22T16:23:15", "upload_time_iso_8601": "2019-10-22T16:23:15.782413Z", "url": "https://files.pythonhosted.org/packages/6d/38/4d607938386244bc755dafa37e5dac6a222f6c3f1985d77b80c3e3712321/django-sass-processor-0.7.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "2a79e6be5986e55c84262a06b64dc4fd", "sha256": "9267e5fcc7fcde2ec0c7d6ad045b4c6c7e9aea92498ed1725312035a5469b410" }, "downloads": -1, "filename": "django-sass-processor-0.7.5.tar.gz", "has_sig": false, "md5_digest": "2a79e6be5986e55c84262a06b64dc4fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19134, "upload_time": "2019-12-02T22:21:45", "upload_time_iso_8601": "2019-12-02T22:21:45.806838Z", "url": "https://files.pythonhosted.org/packages/3c/ae/89f4c90c9ce3d746f6e4132c6819c7be38d806263ef6614d27ef3097810b/django-sass-processor-0.7.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8": [ { "comment_text": "", "digests": { "md5": "5a67a1245b2d18d0eb070fe136c39640", "sha256": "e039551994feaaba6fcf880412b25a772dd313162a34cbb4289814988cfae340" }, "downloads": -1, "filename": "django-sass-processor-0.8.tar.gz", "has_sig": false, "md5_digest": "5a67a1245b2d18d0eb070fe136c39640", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17576, "upload_time": "2020-01-01T17:06:46", "upload_time_iso_8601": "2020-01-01T17:06:46.471132Z", "url": "https://files.pythonhosted.org/packages/25/9e/978ac1859b7d1122b1db89a0fe41e009cbdd16bca5bd2883cc555718a286/django-sass-processor-0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "55ccd149666d1e92518bf093daf7dcc5", "sha256": "7070305c23298f34b6b67c87a1e03d3bc521838c40344c8deb062729c65910dc" }, "downloads": -1, "filename": "django-sass-processor-0.8.1.tar.gz", "has_sig": false, "md5_digest": "55ccd149666d1e92518bf093daf7dcc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19261, "upload_time": "2020-08-27T11:20:57", "upload_time_iso_8601": "2020-08-27T11:20:57.293028Z", "url": "https://files.pythonhosted.org/packages/56/e1/0e42beb0898e3827784faa2bb0fb7436c2bb7260d5f2255dca6e1288c8bb/django-sass-processor-0.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "c511b17d2ae59cd8754ec770de15e285", "sha256": "9b46a12ca8bdcb397d46fbcc49e6a926ff9f76a93c5efeb23b495419fd01fc7a" }, "downloads": -1, "filename": "django-sass-processor-0.8.2.tar.gz", "has_sig": false, "md5_digest": "c511b17d2ae59cd8754ec770de15e285", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19278, "upload_time": "2020-09-06T13:35:44", "upload_time_iso_8601": "2020-09-06T13:35:44.101032Z", "url": "https://files.pythonhosted.org/packages/02/06/ab99d740df814e418371cbf294436d01c981d9ccf1fa4910a499e452d268/django-sass-processor-0.8.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "ba2aab78a1dd91e4ff3fa8193503d7e9", "sha256": "cb90efee38cd7b0fe727c78d8993ad7804de33f40328200dfc1a481307ef0466" }, "downloads": -1, "filename": "django-sass-processor-1.0.0.tar.gz", "has_sig": false, "md5_digest": "ba2aab78a1dd91e4ff3fa8193503d7e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20079, "upload_time": "2021-03-31T18:37:46", "upload_time_iso_8601": "2021-03-31T18:37:46.283073Z", "url": "https://files.pythonhosted.org/packages/3d/00/938ce6b15a8848deb1e8e8e623e94c06d3ebe6e0f484a27dd55ee3691ac5/django-sass-processor-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "472d235f5a16d4164e2a1ed5b8984016", "sha256": "1f043180c47754018e803a77da003377f5ea6558de57cd6946eb27a32e9c16a2" }, "downloads": -1, "filename": "django_sass_processor-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "472d235f5a16d4164e2a1ed5b8984016", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20187, "upload_time": "2021-04-15T08:26:35", "upload_time_iso_8601": "2021-04-15T08:26:35.746782Z", "url": "https://files.pythonhosted.org/packages/b0/45/fd2255a6fac978e96c15b8eaa93a5d31ed55b6eba281729cf28eb218a2ed/django_sass_processor-1.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de7bf32ab91a90219270724e01df8ed0", "sha256": "dcaad47c591a2d52689c1bd209259e922e902d886293f0d5c9e0d1a4eb85eda2" }, "downloads": -1, "filename": "django-sass-processor-1.0.1.tar.gz", "has_sig": false, "md5_digest": "de7bf32ab91a90219270724e01df8ed0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22216, "upload_time": "2021-04-15T08:28:39", "upload_time_iso_8601": "2021-04-15T08:28:39.766968Z", "url": "https://files.pythonhosted.org/packages/90/64/57023bdb45e50780e8818d058b9939f6899fcb3dbbc9136fc8502da935cf/django-sass-processor-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1.dev0": [ { "comment_text": "", "digests": { "md5": "38247cab07e87c304eca747672c0f71d", "sha256": "18b199baf7d331d297c62d5ee39be906ca2bcbf26e960c785dc5dc267849df80" }, "downloads": -1, "filename": "django_sass_processor-1.0.1.dev0-py3-none-any.whl", "has_sig": false, "md5_digest": "38247cab07e87c304eca747672c0f71d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20229, "upload_time": "2021-04-15T08:26:33", "upload_time_iso_8601": "2021-04-15T08:26:33.985313Z", "url": "https://files.pythonhosted.org/packages/af/dd/e64377adfcf0d75ec4be538e0d664304d57829af4bcc3ce4221e7af43104/django_sass_processor-1.0.1.dev0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.1": [ { "comment_text": "", "digests": { "md5": "e22bad228629c3e8db40e81291d24114", "sha256": "16ae2116cbf174dbd1dc034b18b5a0abe7b0bb5fda20c33e9f710d47010ec972" }, "downloads": -1, "filename": "django-sass-processor-1.1.tar.gz", "has_sig": false, "md5_digest": "e22bad228629c3e8db40e81291d24114", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20030, "upload_time": "2021-09-29T08:04:03", "upload_time_iso_8601": "2021-09-29T08:04:03.387126Z", "url": "https://files.pythonhosted.org/packages/37/42/4ad5c15c12fab5163517365c533744e15a46d3057f8b6622bece4121858b/django-sass-processor-1.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e22bad228629c3e8db40e81291d24114", "sha256": "16ae2116cbf174dbd1dc034b18b5a0abe7b0bb5fda20c33e9f710d47010ec972" }, "downloads": -1, "filename": "django-sass-processor-1.1.tar.gz", "has_sig": false, "md5_digest": "e22bad228629c3e8db40e81291d24114", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20030, "upload_time": "2021-09-29T08:04:03", "upload_time_iso_8601": "2021-09-29T08:04:03.387126Z", "url": "https://files.pythonhosted.org/packages/37/42/4ad5c15c12fab5163517365c533744e15a46d3057f8b6622bece4121858b/django-sass-processor-1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }