==============
CSS Minifier
==============
RCSSmin is a CSS minifier.
The minifier is based on the semantics of the `YUI compressor`_\, which itself
is based on `the rule list by Isaac Schlueter`_\.
This module is a re-implementation aiming for speed instead of maximum
compression, so it can be used at runtime (rather than during a preprocessing
step). RCSSmin does syntactical compression only (removing spaces, comments
and possibly semicolons). It does not provide semantic compression (like
removing empty blocks, collapsing redundant properties etc). It does, however,
support various CSS hacks (by keeping them working as intended).
Here's a feature list:
- Strings are kept, except that escaped newlines are stripped
- Space/Comments before the very end or before various characters are
stripped: ``:{});=>],!`` (The colon (``:``) is a special case, a single
space is kept if it's outside a ruleset.)
- Space/Comments at the very beginning or after various characters are
stripped: ``{}(=:>[,!``
- Optional space after unicode escapes is kept, resp. replaced by a simple
space
- whitespaces inside ``url()`` definitions are stripped, except if it's a
quoted non-base64 data url
- The nesting selector (``&``) is recognized
- Comments starting with an exclamation mark (``!``) can be kept optionally.
- All other comments and/or whitespace characters are replaced by a single
space.
- Multiple consecutive semicolons are reduced to one
- The last semicolon within a ruleset is stripped
- CSS Hacks supported:
- IE7 hack (``>/**/``)
- Mac-IE5 hack (``/*\*/.../**/``)
- The boxmodelhack is supported naturally because it relies on valid CSS2
strings
- Between ``:first-line`` and the following comma or curly brace a space is
inserted. (apparently it's needed for IE6)
- Same for ``:first-letter``
rcssmin.c is a reimplementation of rcssmin.py in C and improves runtime up to
factor 100 or so (depending on the input). docs/BENCHMARKS in the source
distribution contains the details.
Supported python versions are 2.7 and 3.6+.
.. _YUI compressor: https://github.com/yui/yuicompressor/
.. _the rule list by Isaac Schlueter: https://github.com/isaacs/cssmin/
Copyright and License
~~~~~~~~~~~~~~~~~~~~~
Copyright 2011 - 2025
André Malo or his licensors, as applicable.
The whole package (except for the files in the bench/ directory) is
distributed under the Apache License Version 2.0. You'll find a copy in the
root directory of the distribution or online at:
<http://www.apache.org/licenses/LICENSE-2.0>.
Bugs
~~~~
No bugs, of course. ;-)
But if you've found one or have an idea how to improve rcssmin, feel free
to send a pull request on `github <https://github.com/ndparker/rcssmin>`_
or send a mail to <rcssmin-bugs@perlig.de>.
Author Information
~~~~~~~~~~~~~~~~~~
André "nd" Malo <nd perlig.de>
GPG: 0x029C942244325167
If God intended people to be naked, they would be born that way.
-- Oscar Wilde
.. vim:tw=72 syntax=rest
Raw data
{
"_id": null,
"home_page": "https://opensource.perlig.de/rcssmin/",
"name": "rcssmin",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Andr\u00e9 Malo",
"author_email": "nd@perlig.de",
"download_url": "https://files.pythonhosted.org/packages/ce/1f/7201775c62911f17dc510560196160519185abad0357dc30748e884f13c6/rcssmin-1.2.1.tar.gz",
"platform": null,
"description": "==============\n CSS Minifier\n==============\n\nRCSSmin is a CSS minifier.\n\nThe minifier is based on the semantics of the `YUI compressor`_\\, which itself\nis based on `the rule list by Isaac Schlueter`_\\.\n\nThis module is a re-implementation aiming for speed instead of maximum\ncompression, so it can be used at runtime (rather than during a preprocessing\nstep). RCSSmin does syntactical compression only (removing spaces, comments\nand possibly semicolons). It does not provide semantic compression (like\nremoving empty blocks, collapsing redundant properties etc). It does, however,\nsupport various CSS hacks (by keeping them working as intended).\n\nHere's a feature list:\n\n- Strings are kept, except that escaped newlines are stripped\n- Space/Comments before the very end or before various characters are\n stripped: ``:{});=>],!`` (The colon (``:``) is a special case, a single\n space is kept if it's outside a ruleset.)\n- Space/Comments at the very beginning or after various characters are\n stripped: ``{}(=:>[,!``\n- Optional space after unicode escapes is kept, resp. replaced by a simple\n space\n- whitespaces inside ``url()`` definitions are stripped, except if it's a\n quoted non-base64 data url\n- The nesting selector (``&``) is recognized\n- Comments starting with an exclamation mark (``!``) can be kept optionally.\n- All other comments and/or whitespace characters are replaced by a single\n space.\n- Multiple consecutive semicolons are reduced to one\n- The last semicolon within a ruleset is stripped\n- CSS Hacks supported:\n\n - IE7 hack (``>/**/``)\n - Mac-IE5 hack (``/*\\*/.../**/``)\n - The boxmodelhack is supported naturally because it relies on valid CSS2\n strings\n - Between ``:first-line`` and the following comma or curly brace a space is\n inserted. (apparently it's needed for IE6)\n - Same for ``:first-letter``\n\nrcssmin.c is a reimplementation of rcssmin.py in C and improves runtime up to\nfactor 100 or so (depending on the input). docs/BENCHMARKS in the source\ndistribution contains the details.\n\nSupported python versions are 2.7 and 3.6+.\n\n.. _YUI compressor: https://github.com/yui/yuicompressor/\n\n.. _the rule list by Isaac Schlueter: https://github.com/isaacs/cssmin/\n\n\nCopyright and License\n~~~~~~~~~~~~~~~~~~~~~\n\nCopyright 2011 - 2025\nAndr\u00e9 Malo or his licensors, as applicable.\n\nThe whole package (except for the files in the bench/ directory) is\ndistributed under the Apache License Version 2.0. You'll find a copy in the\nroot directory of the distribution or online at:\n<http://www.apache.org/licenses/LICENSE-2.0>.\n\n\nBugs\n~~~~\n\nNo bugs, of course. ;-)\nBut if you've found one or have an idea how to improve rcssmin, feel free\nto send a pull request on `github <https://github.com/ndparker/rcssmin>`_\nor send a mail to <rcssmin-bugs@perlig.de>.\n\n\nAuthor Information\n~~~~~~~~~~~~~~~~~~\n\nAndr\u00e9 \"nd\" Malo <nd perlig.de>\nGPG: 0x029C942244325167\n\n\n If God intended people to be naked, they would be born that way.\n -- Oscar Wilde\n\n.. vim:tw=72 syntax=rest\n",
"bugtrack_url": null,
"license": "Apache License, Version 2.0",
"summary": "CSS Minifier",
"version": "1.2.1",
"project_urls": {
"Homepage": "https://opensource.perlig.de/rcssmin/"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "ef82724b9a02c77b145dbf0045c0a7f89bfd5103e66a6464be3d56c0f7f0d55a",
"md5": "b7c75f9a0045fd5c2da5f3f09a6e37ff",
"sha256": "df821901ff16c25e8275f6c61a47f0f94e5e8c93ebd94921a3df9131e8b90928"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp27-cp27m-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "b7c75f9a0045fd5c2da5f3f09a6e37ff",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 41185,
"upload_time": "2025-02-16T15:12:50",
"upload_time_iso_8601": "2025-02-16T15:12:50.892891Z",
"url": "https://files.pythonhosted.org/packages/ef/82/724b9a02c77b145dbf0045c0a7f89bfd5103e66a6464be3d56c0f7f0d55a/rcssmin-1.2.1-cp27-cp27m-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6defda6326b648fdb6e7abbecd83440f1b203ad707e9a783a5e05ddb4deaef80",
"md5": "f6fe9b3852345458d06b9260b35b6e80",
"sha256": "7f2338d58130f9a0635f09c3d1c3d2ec7655850361315665e6fed801e661da2f"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp27-cp27m-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "f6fe9b3852345458d06b9260b35b6e80",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 41102,
"upload_time": "2025-02-16T15:12:53",
"upload_time_iso_8601": "2025-02-16T15:12:53.240416Z",
"url": "https://files.pythonhosted.org/packages/6d/ef/da6326b648fdb6e7abbecd83440f1b203ad707e9a783a5e05ddb4deaef80/rcssmin-1.2.1-cp27-cp27m-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ccfd79dd11475bcf8d27558e7603a2f22e143e69ef7f16fb59b9913ca0b16724",
"md5": "46a0eb9d48bdce04d024a95f768f8f23",
"sha256": "f279bdb2ec38cee375bb8b335ee0d018906b7a94d9245fff3c8faef853290f15"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp27-cp27mu-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "46a0eb9d48bdce04d024a95f768f8f23",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 41163,
"upload_time": "2025-02-16T15:12:55",
"upload_time_iso_8601": "2025-02-16T15:12:55.228683Z",
"url": "https://files.pythonhosted.org/packages/cc/fd/79dd11475bcf8d27558e7603a2f22e143e69ef7f16fb59b9913ca0b16724/rcssmin-1.2.1-cp27-cp27mu-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3dabb6cf6610499ca1c820ec526cf1065f1343c0a24da854f4ba104db0046cf",
"md5": "54d7f7a35b96db5574ac53d97d4902eb",
"sha256": "cee31d3567db4c742197b5e59ed53f9478a3e97378b51799fd0ac26636224d73"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "54d7f7a35b96db5574ac53d97d4902eb",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 41110,
"upload_time": "2025-02-16T15:12:57",
"upload_time_iso_8601": "2025-02-16T15:12:57.118582Z",
"url": "https://files.pythonhosted.org/packages/b3/da/bb6cf6610499ca1c820ec526cf1065f1343c0a24da854f4ba104db0046cf/rcssmin-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0ef9fbf36bf632c70d747fb35fcebe72984e401ae3bd3a6534e77d7787b6b0cd",
"md5": "9e14f5208c302ed5c928c57de2736f92",
"sha256": "5f60daa642dac666d87c9fd5826d30da58ac921399c6fac2e1307767d7b65151"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp310-cp310-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "9e14f5208c302ed5c928c57de2736f92",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 51200,
"upload_time": "2025-02-16T15:12:58",
"upload_time_iso_8601": "2025-02-16T15:12:58.312722Z",
"url": "https://files.pythonhosted.org/packages/0e/f9/fbf36bf632c70d747fb35fcebe72984e401ae3bd3a6534e77d7787b6b0cd/rcssmin-1.2.1-cp310-cp310-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20899d505fc39b193dcb0d6e58829e665744e0170d801e9572e7d5e1fc3cef8e",
"md5": "1993f6d9be1447fe39ebf29eb1680b41",
"sha256": "ceaa956c4dba37f10cdb1b6ca76ed4ff02a7ff414a394e2b9375b476256b14e0"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp310-cp310-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "1993f6d9be1447fe39ebf29eb1680b41",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 51125,
"upload_time": "2025-02-16T15:13:00",
"upload_time_iso_8601": "2025-02-16T15:13:00.317645Z",
"url": "https://files.pythonhosted.org/packages/20/89/9d505fc39b193dcb0d6e58829e665744e0170d801e9572e7d5e1fc3cef8e/rcssmin-1.2.1-cp310-cp310-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "afbb12cd82170a1dd4cfa3f1c118f1863ed8c65980dbb9f95e4e15859c74282d",
"md5": "494ae063695a011ad6bff84f66b24c15",
"sha256": "2017d1a8ef6577d662c66eea6cd1fc021d32eb635ed358e687a4b795a0244f00"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp310-cp310-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "494ae063695a011ad6bff84f66b24c15",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 48861,
"upload_time": "2025-02-16T15:13:02",
"upload_time_iso_8601": "2025-02-16T15:13:02.403901Z",
"url": "https://files.pythonhosted.org/packages/af/bb/12cd82170a1dd4cfa3f1c118f1863ed8c65980dbb9f95e4e15859c74282d/rcssmin-1.2.1-cp310-cp310-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "175704b91030cea3874637e1afde6788c1c283f8bde9266e4ff41f6c49840847",
"md5": "5b7950c1663f24cc416cbc5302eb2a83",
"sha256": "cba2898fdc99b74ad1fc0fd7ad6c42af68a6ccecf4b9aa023a80a515b60f468a"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "5b7950c1663f24cc416cbc5302eb2a83",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 51556,
"upload_time": "2025-02-16T15:13:04",
"upload_time_iso_8601": "2025-02-16T15:13:04.457964Z",
"url": "https://files.pythonhosted.org/packages/17/57/04b91030cea3874637e1afde6788c1c283f8bde9266e4ff41f6c49840847/rcssmin-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a20d9c74f1b6c4bd60b5098d17da665179dc6eb0a7a6a2ca30e82cb9718c2082",
"md5": "d1752db13bab0ec225e26caf55443610",
"sha256": "c67476c72bc96fdbdb0bee995f7ec19589bb24bc4103bbc94dacb5203075de33"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "d1752db13bab0ec225e26caf55443610",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 51352,
"upload_time": "2025-02-16T15:13:06",
"upload_time_iso_8601": "2025-02-16T15:13:06.429282Z",
"url": "https://files.pythonhosted.org/packages/a2/0d/9c74f1b6c4bd60b5098d17da665179dc6eb0a7a6a2ca30e82cb9718c2082/rcssmin-1.2.1-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8c71b0ecc6aee2f1d68ea020fbbd03330d43c4c31210894d1a35bb5cc4fca7c",
"md5": "65fc1129bb8736f27cec562f2b682ffa",
"sha256": "334add21328c05cb1590c62ed98ae9a512fb62f918045aa93ddf57d042ab4821"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "65fc1129bb8736f27cec562f2b682ffa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 51159,
"upload_time": "2025-02-16T15:13:08",
"upload_time_iso_8601": "2025-02-16T15:13:08.140842Z",
"url": "https://files.pythonhosted.org/packages/f8/c7/1b0ecc6aee2f1d68ea020fbbd03330d43c4c31210894d1a35bb5cc4fca7c/rcssmin-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ada72a6b984a2f28ea9f3a6c3dbf08ade21500ce2402ed4905b5f7955f1e0748",
"md5": "ed5f852d830da086246b4270ffbe6ea0",
"sha256": "e0cdc0859658e17086c9f8c0bf5846afa3ca7f899f4b83ece5843af40c675384"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp311-cp311-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "ed5f852d830da086246b4270ffbe6ea0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 48894,
"upload_time": "2025-02-16T15:13:09",
"upload_time_iso_8601": "2025-02-16T15:13:09.371449Z",
"url": "https://files.pythonhosted.org/packages/ad/a7/2a6b984a2f28ea9f3a6c3dbf08ade21500ce2402ed4905b5f7955f1e0748/rcssmin-1.2.1-cp311-cp311-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e4bbfb86f66595be4279618c8a9c0c82076b60af2745dd53bfea34f91adbda90",
"md5": "cac530e051a84b1718a39758a8a0ea19",
"sha256": "84cc7eba7fe8214c0f5b5ddd57f81bf33e5edae81dadba6a214fc2a79e61dde7"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp311-cp311-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "cac530e051a84b1718a39758a8a0ea19",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 49184,
"upload_time": "2025-02-16T15:13:11",
"upload_time_iso_8601": "2025-02-16T15:13:11.429013Z",
"url": "https://files.pythonhosted.org/packages/e4/bb/fb86f66595be4279618c8a9c0c82076b60af2745dd53bfea34f91adbda90/rcssmin-1.2.1-cp311-cp311-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1001f2c8ae5589e30b73e23580d2fca3b4448ef450683162150f19dfb79515e7",
"md5": "b38d695d65ca53af346babb000336ce3",
"sha256": "e28e6c740bbdf4c7d649b1eee4a5485091ab64eec2d81e336b25443d61b1a9da"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp311-cp311-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b38d695d65ca53af346babb000336ce3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 50528,
"upload_time": "2025-02-16T15:13:13",
"upload_time_iso_8601": "2025-02-16T15:13:13.643542Z",
"url": "https://files.pythonhosted.org/packages/10/01/f2c8ae5589e30b73e23580d2fca3b4448ef450683162150f19dfb79515e7/rcssmin-1.2.1-cp311-cp311-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "025e8c53061a8c97526eab8c02ed10eb893d0719306af3ac5707180cdee3da58",
"md5": "64d48ea63524ec927b2431d6a7a980b3",
"sha256": "ddbd856c1b8a46341b7478f3d4c6cedf1c20b26f99f18bd7ee128850546831d0"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "64d48ea63524ec927b2431d6a7a980b3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 53192,
"upload_time": "2025-02-16T15:13:15",
"upload_time_iso_8601": "2025-02-16T15:13:15.822315Z",
"url": "https://files.pythonhosted.org/packages/02/5e/8c53061a8c97526eab8c02ed10eb893d0719306af3ac5707180cdee3da58/rcssmin-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f34d460b6a63bd7c0a36291826f8a42ebf7455fb169a0f2b90b63923a80654aa",
"md5": "f9ab4bd39264722f2a3ba4c66348594f",
"sha256": "8d21eba23c3012cbc5a6eb3af33c331809e854011c5ae3e447a9f5e5b1670675"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "f9ab4bd39264722f2a3ba4c66348594f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 53009,
"upload_time": "2025-02-16T15:13:17",
"upload_time_iso_8601": "2025-02-16T15:13:17.881305Z",
"url": "https://files.pythonhosted.org/packages/f3/4d/460b6a63bd7c0a36291826f8a42ebf7455fb169a0f2b90b63923a80654aa/rcssmin-1.2.1-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b52614fa7528c2a5ed68d8e66e1c0b15fa7e163cc8c9711d230b35e172cc4435",
"md5": "b1531b7aa60a4f1c79c3132ece7cb5f1",
"sha256": "b847e372364fb5321670c834af504c34274c87b919924782000bf11aaeebc4ee"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b1531b7aa60a4f1c79c3132ece7cb5f1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 52812,
"upload_time": "2025-02-16T15:13:19",
"upload_time_iso_8601": "2025-02-16T15:13:19.174317Z",
"url": "https://files.pythonhosted.org/packages/b5/26/14fa7528c2a5ed68d8e66e1c0b15fa7e163cc8c9711d230b35e172cc4435/rcssmin-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "05a7a48fb2ce650d97b615bebfd7fa87dff1efe1ef8a8bf6c25f53cf95a22304",
"md5": "e87848ba7ae7f34266694024b2240990",
"sha256": "908458ec1106162173506f9a4e77a3ffc46a9bb8a08445e44aa6360889ff9777"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp312-cp312-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e87848ba7ae7f34266694024b2240990",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 48620,
"upload_time": "2025-02-16T15:13:20",
"upload_time_iso_8601": "2025-02-16T15:13:20.422232Z",
"url": "https://files.pythonhosted.org/packages/05/a7/a48fb2ce650d97b615bebfd7fa87dff1efe1ef8a8bf6c25f53cf95a22304/rcssmin-1.2.1-cp312-cp312-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89101d78ee36ecf2fa1b0241c1aca13d29ae5487ae4243cc553b6212d5301a34",
"md5": "aaedfefbf4640ff2560884fb6004337e",
"sha256": "1209c690e5c1ab781816078d3d7e4dfc8dc024a65c60327441b8d4296d8d750c"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp312-cp312-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "aaedfefbf4640ff2560884fb6004337e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 49053,
"upload_time": "2025-02-16T15:13:21",
"upload_time_iso_8601": "2025-02-16T15:13:21.667068Z",
"url": "https://files.pythonhosted.org/packages/89/10/1d78ee36ecf2fa1b0241c1aca13d29ae5487ae4243cc553b6212d5301a34/rcssmin-1.2.1-cp312-cp312-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb2e1b3286eadee31b5ae4307ba69528e4a81d03034c0e06bcd98fc3e32ea2d3",
"md5": "eaa14fe154344668073528aacdda6949",
"sha256": "9d89acb97605cef0c6f36b2bf2fe942abbfce8a809171258bff6d2f5064fcff0"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp312-cp312-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "eaa14fe154344668073528aacdda6949",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 50534,
"upload_time": "2025-02-16T15:13:23",
"upload_time_iso_8601": "2025-02-16T15:13:23.682679Z",
"url": "https://files.pythonhosted.org/packages/fb/2e/1b3286eadee31b5ae4307ba69528e4a81d03034c0e06bcd98fc3e32ea2d3/rcssmin-1.2.1-cp312-cp312-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eed014901b158090ef3e9621cc5e38080b45ebe023590622c223eee53053c68f",
"md5": "9bc6c8ddb67c3135a200fd8389f41387",
"sha256": "496c17bb565a0e315406d75540f7f464d8c6fce9b584c5aac44511dcbcb7d304"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "9bc6c8ddb67c3135a200fd8389f41387",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 53123,
"upload_time": "2025-02-16T15:13:24",
"upload_time_iso_8601": "2025-02-16T15:13:24.906295Z",
"url": "https://files.pythonhosted.org/packages/ee/d0/14901b158090ef3e9621cc5e38080b45ebe023590622c223eee53053c68f/rcssmin-1.2.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1d0e8ac0b46006a2173caad7598961ea855804327714112d4c7bf5ceaf757685",
"md5": "c7bdb0cb5cc3e12a2f5cd95da4ec6ad7",
"sha256": "a6f320933e7a5748349328e5bac83a373a17be661d435d3fee179d602e2e1039"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "c7bdb0cb5cc3e12a2f5cd95da4ec6ad7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 52825,
"upload_time": "2025-02-16T15:13:26",
"upload_time_iso_8601": "2025-02-16T15:13:26.160887Z",
"url": "https://files.pythonhosted.org/packages/1d/0e/8ac0b46006a2173caad7598961ea855804327714112d4c7bf5ceaf757685/rcssmin-1.2.1-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27d5a1585f3d8403c439fe99229b55420440fe9cf1445f36feed6db609969f43",
"md5": "dddf21116043b4191d6fbfb4099972b7",
"sha256": "b7cc33eba8b212b88b9fdcab6ff81bedd155b51adabd707376e7e6ff3be889e7"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "dddf21116043b4191d6fbfb4099972b7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 53099,
"upload_time": "2025-02-16T15:13:28",
"upload_time_iso_8601": "2025-02-16T15:13:28.539645Z",
"url": "https://files.pythonhosted.org/packages/27/d5/a1585f3d8403c439fe99229b55420440fe9cf1445f36feed6db609969f43/rcssmin-1.2.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fda1f414aadcf657befccec46a3dd72a6e8a53e51951df0bb0fa1237ad15d20e",
"md5": "c40f8508a16300f1ef9297e77a108820",
"sha256": "3cbe222f43d859cbd3751591e4d2fbd0bee1f953e3122a619a7f1aa9809cc5be"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp313-cp313-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "c40f8508a16300f1ef9297e77a108820",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 48565,
"upload_time": "2025-02-16T15:13:30",
"upload_time_iso_8601": "2025-02-16T15:13:30.610686Z",
"url": "https://files.pythonhosted.org/packages/fd/a1/f414aadcf657befccec46a3dd72a6e8a53e51951df0bb0fa1237ad15d20e/rcssmin-1.2.1-cp313-cp313-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f75c3e93e5a19b63cfcc2fcd2aa9515db7d7e4aab85528a986deaa9b96947b76",
"md5": "180649675a40d04e222f70f0a26c2f81",
"sha256": "6e7e7f016fba8b9eaff882fa70c715276328477ec8aa603c4aec71d7cf632eb2"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp313-cp313-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "180649675a40d04e222f70f0a26c2f81",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 48979,
"upload_time": "2025-02-16T15:13:31",
"upload_time_iso_8601": "2025-02-16T15:13:31.880428Z",
"url": "https://files.pythonhosted.org/packages/f7/5c/3e93e5a19b63cfcc2fcd2aa9515db7d7e4aab85528a986deaa9b96947b76/rcssmin-1.2.1-cp313-cp313-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c87cc94ee327deb10a89d4a51facf6a517ed818270ea923c613e42b38900493e",
"md5": "91a33a862660fdd750dbe0bb2a822f15",
"sha256": "1b9f827c6327bbcede7d5bbb24ca5d603ef573cfd1a68ac12a946f223df4cd8a"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp313-cp313-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "91a33a862660fdd750dbe0bb2a822f15",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 50484,
"upload_time": "2025-02-16T15:13:33",
"upload_time_iso_8601": "2025-02-16T15:13:33.276519Z",
"url": "https://files.pythonhosted.org/packages/c8/7c/c94ee327deb10a89d4a51facf6a517ed818270ea923c613e42b38900493e/rcssmin-1.2.1-cp313-cp313-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec33925c66f34f393ada69add3946128fe6d94a9fb063f63b9c9b83bb653c496",
"md5": "90c10ef560f28224c407815d17a16c4d",
"sha256": "b5f922aaf17ed61a7fa3861ba6148d9922af137cf0a5573dcd640d3bf2c95713"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "90c10ef560f28224c407815d17a16c4d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 52823,
"upload_time": "2025-02-16T15:13:34",
"upload_time_iso_8601": "2025-02-16T15:13:34.501103Z",
"url": "https://files.pythonhosted.org/packages/ec/33/925c66f34f393ada69add3946128fe6d94a9fb063f63b9c9b83bb653c496/rcssmin-1.2.1-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6dfb0ee9f9199ab0b644bda075eeb4ffb0d893bd3e858754bc709e9b456cec75",
"md5": "cf1e1770f2760274c2a27c935fd446fc",
"sha256": "9fb7b8e7ed5a18bc4ca411ca2ee63216a87cdeefe15b209cc3f39ad17f1ece33"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp313-cp313-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "cf1e1770f2760274c2a27c935fd446fc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 52570,
"upload_time": "2025-02-16T15:13:36",
"upload_time_iso_8601": "2025-02-16T15:13:36.424157Z",
"url": "https://files.pythonhosted.org/packages/6d/fb/0ee9f9199ab0b644bda075eeb4ffb0d893bd3e858754bc709e9b456cec75/rcssmin-1.2.1-cp313-cp313-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b42a3afbd9cb9d8018c2c5cc78636f3232583742a09bbf4d143721bfb73646b8",
"md5": "34379523459dbd09adfdfd6d862498a2",
"sha256": "d1765069ba678d462d66540caa4fd7a91931a616c62aea703f364722dd93305c"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "34379523459dbd09adfdfd6d862498a2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 52823,
"upload_time": "2025-02-16T15:13:37",
"upload_time_iso_8601": "2025-02-16T15:13:37.665544Z",
"url": "https://files.pythonhosted.org/packages/b4/2a/3afbd9cb9d8018c2c5cc78636f3232583742a09bbf4d143721bfb73646b8/rcssmin-1.2.1-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3be71e22a5765a2cd85d9aa07590b8aeaf19ea7bc26d17cfa0722264033cd94b",
"md5": "46d9b2a4e3f6f029d54f89b2b7d20dfe",
"sha256": "f4be9bda3484518cb47335180ece7b1f9528e8b6a81c9e84837e7690557eacff"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp313-cp313t-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "46d9b2a4e3f6f029d54f89b2b7d20dfe",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 51119,
"upload_time": "2025-02-16T15:13:38",
"upload_time_iso_8601": "2025-02-16T15:13:38.994493Z",
"url": "https://files.pythonhosted.org/packages/3b/e7/1e22a5765a2cd85d9aa07590b8aeaf19ea7bc26d17cfa0722264033cd94b/rcssmin-1.2.1-cp313-cp313t-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9c9877ed5ef22147133532e261221647260321692395772faa983b59607887d1",
"md5": "a753ead6ae21f071847f623edcdcfdfc",
"sha256": "f453e7d02ecd94d41912b01f4d4e1ce2e8d8aef8566e653445e041bde7ccb962"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp313-cp313t-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "a753ead6ae21f071847f623edcdcfdfc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 51333,
"upload_time": "2025-02-16T15:13:40",
"upload_time_iso_8601": "2025-02-16T15:13:40.296662Z",
"url": "https://files.pythonhosted.org/packages/9c/98/77ed5ef22147133532e261221647260321692395772faa983b59607887d1/rcssmin-1.2.1-cp313-cp313t-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "43338b977a44c927635ceb24a4cadf8f99457d5d7165b8bed61e453e6731b12d",
"md5": "2279b5e41883ee89706390dccea86b82",
"sha256": "bbb16cf8c6dbb8c925b98806996e9eddd9373bd5560978021d42876bd58f87cf"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp313-cp313t-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2279b5e41883ee89706390dccea86b82",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 52554,
"upload_time": "2025-02-16T15:13:41",
"upload_time_iso_8601": "2025-02-16T15:13:41.549106Z",
"url": "https://files.pythonhosted.org/packages/43/33/8b977a44c927635ceb24a4cadf8f99457d5d7165b8bed61e453e6731b12d/rcssmin-1.2.1-cp313-cp313t-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14df8db0fb3c75c71c5167ea2ab3f55166f670f4bb41387c0158d154c210adad",
"md5": "ac910301a40ea0d6d6ad17831b793e70",
"sha256": "daf17953c4ed491f431b49a6177b5b85149cee2155e0d96306000f8a641b0547"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp313-cp313t-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "ac910301a40ea0d6d6ad17831b793e70",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 54766,
"upload_time": "2025-02-16T15:13:43",
"upload_time_iso_8601": "2025-02-16T15:13:43.561837Z",
"url": "https://files.pythonhosted.org/packages/14/df/8db0fb3c75c71c5167ea2ab3f55166f670f4bb41387c0158d154c210adad/rcssmin-1.2.1-cp313-cp313t-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9e64504a8ee5b6b8195faf5c95cb7e603c15ddde9d952dd525dbb3da57e117b6",
"md5": "b87f6258d141bea11357bc7d1fdc3f74",
"sha256": "760d4710a0565fc35aaf7928fb82235d647164be4a39ab7836a51655595b7168"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp313-cp313t-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "b87f6258d141bea11357bc7d1fdc3f74",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 54915,
"upload_time": "2025-02-16T15:13:45",
"upload_time_iso_8601": "2025-02-16T15:13:45.528433Z",
"url": "https://files.pythonhosted.org/packages/9e/64/504a8ee5b6b8195faf5c95cb7e603c15ddde9d952dd525dbb3da57e117b6/rcssmin-1.2.1-cp313-cp313t-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ff8265017a5764e172652127707baab91f9effba21f297a95b025cf9a2ae1f8",
"md5": "fadfac22f859ded859e8a6c158c95744",
"sha256": "7f4b31f89133695e315b290699823f616359f0ff5fe19f911b56e8e3c6a1a27e"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp313-cp313t-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "fadfac22f859ded859e8a6c158c95744",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 54684,
"upload_time": "2025-02-16T15:13:47",
"upload_time_iso_8601": "2025-02-16T15:13:47.546675Z",
"url": "https://files.pythonhosted.org/packages/8f/f8/265017a5764e172652127707baab91f9effba21f297a95b025cf9a2ae1f8/rcssmin-1.2.1-cp313-cp313t-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "69e6bd57a5dccb85bc4a39f5e4b22796884ab6fe4cfaa39d52f6355e631ae9e1",
"md5": "00a2a042be1510da5777e630c850a773",
"sha256": "6ce99c96e4aeb09175f5b4891d980b822eb2679df78ca618f9616660094e424e"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp36-cp36m-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "00a2a042be1510da5777e630c850a773",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 42146,
"upload_time": "2025-02-16T15:13:48",
"upload_time_iso_8601": "2025-02-16T15:13:48.727898Z",
"url": "https://files.pythonhosted.org/packages/69/e6/bd57a5dccb85bc4a39f5e4b22796884ab6fe4cfaa39d52f6355e631ae9e1/rcssmin-1.2.1-cp36-cp36m-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1d5eabf7e6eab9a91fc3d0e6061aaf0b8fbb120dfe14dbc9708609e57bd7c341",
"md5": "35bafd0c8dc071c8e98661db0e39c2db",
"sha256": "4b1707efea4cc2a72eb5183552de4d851fc7b6549232ce92175f89c11b837429"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp36-cp36m-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "35bafd0c8dc071c8e98661db0e39c2db",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 42141,
"upload_time": "2025-02-16T15:13:50",
"upload_time_iso_8601": "2025-02-16T15:13:50.929188Z",
"url": "https://files.pythonhosted.org/packages/1d/5e/abf7e6eab9a91fc3d0e6061aaf0b8fbb120dfe14dbc9708609e57bd7c341/rcssmin-1.2.1-cp36-cp36m-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "78bf97544552e2b5ea907ed409cb1cad2289695620a2d0caefa217a209711250",
"md5": "e1869cc853b0cd3ed173230c1ad3331c",
"sha256": "7444697216711e83df333aa6e529986e0644487e4309cbcdfff9917afee53dac"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp36-cp36m-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e1869cc853b0cd3ed173230c1ad3331c",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 48168,
"upload_time": "2025-02-16T15:13:52",
"upload_time_iso_8601": "2025-02-16T15:13:52.119689Z",
"url": "https://files.pythonhosted.org/packages/78/bf/97544552e2b5ea907ed409cb1cad2289695620a2d0caefa217a209711250/rcssmin-1.2.1-cp36-cp36m-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dc6e9e966e0faf77305d5b43fe1d5d4e900cccb8210aea1dbf0ef3e4583a2687",
"md5": "50ba438b780a8cd43d6778d44eb2494d",
"sha256": "67162c1a8b950f9ff63403abe367b959660c1c2eb3ac0433cbaee6c4f02a1b06"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp36-cp36m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "50ba438b780a8cd43d6778d44eb2494d",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 50538,
"upload_time": "2025-02-16T15:13:53",
"upload_time_iso_8601": "2025-02-16T15:13:53.898280Z",
"url": "https://files.pythonhosted.org/packages/dc/6e/9e966e0faf77305d5b43fe1d5d4e900cccb8210aea1dbf0ef3e4583a2687/rcssmin-1.2.1-cp36-cp36m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b52e19055b0d10af4b3473d21e2eaebc4f7df5f64d88afa4a941c3b64b86922",
"md5": "4b5d89af4cfda4400a4c2397e3feef68",
"sha256": "1104aa69319c7fef1bc991ff08338781f2124fdf5d2b5dda9ce50fa50c1a94e5"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp36-cp36m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "4b5d89af4cfda4400a4c2397e3feef68",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 50849,
"upload_time": "2025-02-16T15:13:55",
"upload_time_iso_8601": "2025-02-16T15:13:55.097375Z",
"url": "https://files.pythonhosted.org/packages/5b/52/e19055b0d10af4b3473d21e2eaebc4f7df5f64d88afa4a941c3b64b86922/rcssmin-1.2.1-cp36-cp36m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6e264b26fe763d5210a590224050365dbbae4272abc7a4d520cede95175a7395",
"md5": "4fadae6346e462729c7994e61fe70ccf",
"sha256": "4fa8474bca197ec752cc5f3fab4b6969a60c6a2fe1e55a285a4d530f7bbcc860"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4fadae6346e462729c7994e61fe70ccf",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 50696,
"upload_time": "2025-02-16T15:13:56",
"upload_time_iso_8601": "2025-02-16T15:13:56.396649Z",
"url": "https://files.pythonhosted.org/packages/6e/26/4b26fe763d5210a590224050365dbbae4272abc7a4d520cede95175a7395/rcssmin-1.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "04b8952b6a31d94dd9e02cbf45ecd359a11c19458df546005994dc1fef9c6fb1",
"md5": "181b42516259044fbddb53f642f1f9e0",
"sha256": "e3d1f656e7f9a1692f7611c12ccaad505d6e5d75eb8fe078d6f6ae3465adad6b"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp37-cp37m-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "181b42516259044fbddb53f642f1f9e0",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 43174,
"upload_time": "2025-02-16T15:13:57",
"upload_time_iso_8601": "2025-02-16T15:13:57.562016Z",
"url": "https://files.pythonhosted.org/packages/04/b8/952b6a31d94dd9e02cbf45ecd359a11c19458df546005994dc1fef9c6fb1/rcssmin-1.2.1-cp37-cp37m-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "063640adbc9e422ccb54d5eb5eeb148d82eaf54ea5d437a7b0940cb5a11877a8",
"md5": "84799eb38b2f230c9a4c50922d82320c",
"sha256": "d7e2bf2110f65664e8b004322c934e84839ad43fbb94bda231087b64e83114f6"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp37-cp37m-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "84799eb38b2f230c9a4c50922d82320c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 43031,
"upload_time": "2025-02-16T15:13:58",
"upload_time_iso_8601": "2025-02-16T15:13:58.913023Z",
"url": "https://files.pythonhosted.org/packages/06/36/40adbc9e422ccb54d5eb5eeb148d82eaf54ea5d437a7b0940cb5a11877a8/rcssmin-1.2.1-cp37-cp37m-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "28728a029914564fe5a645160ab9b8442383dede34dbb953b0b0b222b0ec37f4",
"md5": "4cbc78bf88c10e3c2a57b9ca08efdfe2",
"sha256": "abec1a2ecc03b6379ad7c490ecda087cfb50910de433c33bc488f98093981ce3"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp37-cp37m-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4cbc78bf88c10e3c2a57b9ca08efdfe2",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 49203,
"upload_time": "2025-02-16T15:14:00",
"upload_time_iso_8601": "2025-02-16T15:14:00.818480Z",
"url": "https://files.pythonhosted.org/packages/28/72/8a029914564fe5a645160ab9b8442383dede34dbb953b0b0b222b0ec37f4/rcssmin-1.2.1-cp37-cp37m-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a5c33a9ba828f3366a30bb27ce07414407260b24c0c9202469ef8f4c4e3b29e0",
"md5": "97984098a987564b4a4ba2c0df25059d",
"sha256": "9c00fd706cc16485c3d315d696a030e5ced6ad7ec6dd00c1fb1d13a7ee481d7e"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "97984098a987564b4a4ba2c0df25059d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 51509,
"upload_time": "2025-02-16T15:14:04",
"upload_time_iso_8601": "2025-02-16T15:14:04.612763Z",
"url": "https://files.pythonhosted.org/packages/a5/c3/3a9ba828f3366a30bb27ce07414407260b24c0c9202469ef8f4c4e3b29e0/rcssmin-1.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "31cd5adaf37373697c7c579d75fe443f3bae5b688c8e5cd4ae630147192d9b76",
"md5": "e541e61c29d3b460c222620d742812c2",
"sha256": "5337150607bef63c9bf2220da68adad6c9645bccf04b12dff1e254933fc86b77"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "e541e61c29d3b460c222620d742812c2",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 51793,
"upload_time": "2025-02-16T15:14:06",
"upload_time_iso_8601": "2025-02-16T15:14:06.185852Z",
"url": "https://files.pythonhosted.org/packages/31/cd/5adaf37373697c7c579d75fe443f3bae5b688c8e5cd4ae630147192d9b76/rcssmin-1.2.1-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b49ee32d9c046809153cb9756b5a01034daea28f940ee39d0b5d7acf44e2ac17",
"md5": "c6e111303040a89e1d65de1562dee462",
"sha256": "fe2f1c75ad38518b067e34cfbc38188fec0642df8e726d93c604a8cf3afc74d4"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c6e111303040a89e1d65de1562dee462",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 51644,
"upload_time": "2025-02-16T15:14:07",
"upload_time_iso_8601": "2025-02-16T15:14:07.597009Z",
"url": "https://files.pythonhosted.org/packages/b4/9e/e32d9c046809153cb9756b5a01034daea28f940ee39d0b5d7acf44e2ac17/rcssmin-1.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "903213d18cf39a730c7acb9b49a7dc066db94f6a0f3b37868b53d176e312b1b8",
"md5": "7f43410c47d023e990ae8dfe01e5ec26",
"sha256": "4fd765c6ca4b771da65b72878fbe370e7f96355b8914d229bdcec081f1260e3c"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp38-cp38-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "7f43410c47d023e990ae8dfe01e5ec26",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 42760,
"upload_time": "2025-02-16T15:14:08",
"upload_time_iso_8601": "2025-02-16T15:14:08.891191Z",
"url": "https://files.pythonhosted.org/packages/90/32/13d18cf39a730c7acb9b49a7dc066db94f6a0f3b37868b53d176e312b1b8/rcssmin-1.2.1-cp38-cp38-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "18e094494ef9b3358b306e59effc3100e0d0eb69240dd53fe86a78e380056910",
"md5": "fb876abddb6fd83ae677415eb82bb9ab",
"sha256": "e9a5f42fe064bab0b63edfe7c797dd51642934c98fa44d965a4ccd5b43c03e0a"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp38-cp38-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "fb876abddb6fd83ae677415eb82bb9ab",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 42456,
"upload_time": "2025-02-16T15:14:10",
"upload_time_iso_8601": "2025-02-16T15:14:10.168935Z",
"url": "https://files.pythonhosted.org/packages/18/e0/94494ef9b3358b306e59effc3100e0d0eb69240dd53fe86a78e380056910/rcssmin-1.2.1-cp38-cp38-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b1ef207414a53dde77713350c46020c9db81884fdc55edd0642e4280b78f2f3",
"md5": "a425bbe395b0d77f63b77d0da4f53587",
"sha256": "43fb6e4ff06062cdc8fe8ee28e8c8488543f265f8683ee98499779e2c8429099"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp38-cp38-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a425bbe395b0d77f63b77d0da4f53587",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 49139,
"upload_time": "2025-02-16T15:14:11",
"upload_time_iso_8601": "2025-02-16T15:14:11.924030Z",
"url": "https://files.pythonhosted.org/packages/0b/1e/f207414a53dde77713350c46020c9db81884fdc55edd0642e4280b78f2f3/rcssmin-1.2.1-cp38-cp38-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e4c2ee8536909332f3ca1ece4d9ea7c5816c69d13c6a170e39857cf0fc9aa803",
"md5": "6e9a3a58aae2999da6dbb2ace65c0d3a",
"sha256": "dc1767ad4e1c2f9c76ab35486dcd3901de90de27214a2b53e7401e9c674fd70c"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "6e9a3a58aae2999da6dbb2ace65c0d3a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 51294,
"upload_time": "2025-02-16T15:14:14",
"upload_time_iso_8601": "2025-02-16T15:14:14.019959Z",
"url": "https://files.pythonhosted.org/packages/e4/c2/ee8536909332f3ca1ece4d9ea7c5816c69d13c6a170e39857cf0fc9aa803/rcssmin-1.2.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41738e7fb5650219fe96f6c5263bdc6969c0e61a5a23b786cbdd019b187f3714",
"md5": "3ba171b61fd231f2a2dbc16f84544c8f",
"sha256": "3263a2fba08e21351bdda0e8803faf5fd42a887eddcb9931e26ad5ffb251ad07"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "3ba171b61fd231f2a2dbc16f84544c8f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 51273,
"upload_time": "2025-02-16T15:14:15",
"upload_time_iso_8601": "2025-02-16T15:14:15.248252Z",
"url": "https://files.pythonhosted.org/packages/41/73/8e7fb5650219fe96f6c5263bdc6969c0e61a5a23b786cbdd019b187f3714/rcssmin-1.2.1-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d11fa93583259ec6823cbf5a7b1ff4e7141d26469ba21287dd5eca927bfad6ba",
"md5": "abcf8da008e3f6d240d9dff4eca7fcb9",
"sha256": "9ab356d1eb9ba83e7c340f3c70e2ac6a439ce3adbe13ef0c4923bb04a6a92d55"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "abcf8da008e3f6d240d9dff4eca7fcb9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 51079,
"upload_time": "2025-02-16T15:14:16",
"upload_time_iso_8601": "2025-02-16T15:14:16.531867Z",
"url": "https://files.pythonhosted.org/packages/d1/1f/a93583259ec6823cbf5a7b1ff4e7141d26469ba21287dd5eca927bfad6ba/rcssmin-1.2.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e300cf117d4e02cb3b8fdcd418445ad540a0b943ca37f6d9005fca66beee9f5c",
"md5": "fede6e5070437b7286f2d72fb655c289",
"sha256": "e525ea49ba4ed33eee94251ef432dde4ccda53a061ee6300c144a06851888408"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp39-cp39-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "fede6e5070437b7286f2d72fb655c289",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 42515,
"upload_time": "2025-02-16T15:14:17",
"upload_time_iso_8601": "2025-02-16T15:14:17.756037Z",
"url": "https://files.pythonhosted.org/packages/e3/00/cf117d4e02cb3b8fdcd418445ad540a0b943ca37f6d9005fca66beee9f5c/rcssmin-1.2.1-cp39-cp39-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1dae107d4fde3bab91baf7b3764e703b27ecb7ad50db6a1cbfbbf160f206c886",
"md5": "a711cb630e5cf0ff4a0489b6ed721430",
"sha256": "b59cee505a4e77e34a033368b008e4ead6b1fd457fb15c106b6e2a434a61c001"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp39-cp39-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "a711cb630e5cf0ff4a0489b6ed721430",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 42224,
"upload_time": "2025-02-16T15:14:19",
"upload_time_iso_8601": "2025-02-16T15:14:19.801025Z",
"url": "https://files.pythonhosted.org/packages/1d/ae/107d4fde3bab91baf7b3764e703b27ecb7ad50db6a1cbfbbf160f206c886/rcssmin-1.2.1-cp39-cp39-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4c773ed356e4ef2748d1bf663fa904407c016828600766aa41066e5adaebd78",
"md5": "91302f64fddd3742c907879a17256817",
"sha256": "9a2cdcd5502482a798198fb3f8ca4ccd877e011c7102c0f92b47e1e42b97295a"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp39-cp39-manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "91302f64fddd3742c907879a17256817",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 48667,
"upload_time": "2025-02-16T15:14:21",
"upload_time_iso_8601": "2025-02-16T15:14:21.230212Z",
"url": "https://files.pythonhosted.org/packages/c4/c7/73ed356e4ef2748d1bf663fa904407c016828600766aa41066e5adaebd78/rcssmin-1.2.1-cp39-cp39-manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8784776cf831cd3dab75e44e55d309716e8262648c17908035aa2fa5e713a861",
"md5": "be85d64d6dfbd138827d9ace4073136d",
"sha256": "2f0ffdfef0d0a976514d3f6c49a350e6b6091d847efc312bd6c63249d120e46d"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "be85d64d6dfbd138827d9ace4073136d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 51142,
"upload_time": "2025-02-16T15:14:22",
"upload_time_iso_8601": "2025-02-16T15:14:22.487252Z",
"url": "https://files.pythonhosted.org/packages/87/84/776cf831cd3dab75e44e55d309716e8262648c17908035aa2fa5e713a861/rcssmin-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "57a0ffbe7187bbe91ab46e7167b0c209ddf356c3dcdc868a26efad5d9c4b4394",
"md5": "b9376feb1c35a2cf0626428113eade62",
"sha256": "8391ed68fdf1bc6f2093d0b7b48d747815279d84c004a76be078b486223583f7"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "b9376feb1c35a2cf0626428113eade62",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 51060,
"upload_time": "2025-02-16T15:14:26",
"upload_time_iso_8601": "2025-02-16T15:14:26.710096Z",
"url": "https://files.pythonhosted.org/packages/57/a0/ffbe7187bbe91ab46e7167b0c209ddf356c3dcdc868a26efad5d9c4b4394/rcssmin-1.2.1-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "012e204179808f50279a70a109c2cb652b3664560e1fc1791eaf3a01159d9314",
"md5": "d82676d20894ca50b8afa674aec6449a",
"sha256": "78eab04e9a3efdd158fa7c8363afbbc1d0587453a5a3ed5c9828e1ddeb2aeea7"
},
"downloads": -1,
"filename": "rcssmin-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d82676d20894ca50b8afa674aec6449a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 50896,
"upload_time": "2025-02-16T15:14:27",
"upload_time_iso_8601": "2025-02-16T15:14:27.921072Z",
"url": "https://files.pythonhosted.org/packages/01/2e/204179808f50279a70a109c2cb652b3664560e1fc1791eaf3a01159d9314/rcssmin-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce1f7201775c62911f17dc510560196160519185abad0357dc30748e884f13c6",
"md5": "d8a49d97d36aed2dd98a0863e948f0c2",
"sha256": "b35c0c89cdac8fc356c2b0985f3e534e85cc18d1971d902d1eac7fe6b4ff566c"
},
"downloads": -1,
"filename": "rcssmin-1.2.1.tar.gz",
"has_sig": false,
"md5_digest": "d8a49d97d36aed2dd98a0863e948f0c2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 584848,
"upload_time": "2025-02-16T15:12:44",
"upload_time_iso_8601": "2025-02-16T15:12:44.772714Z",
"url": "https://files.pythonhosted.org/packages/ce/1f/7201775c62911f17dc510560196160519185abad0357dc30748e884f13c6/rcssmin-1.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-16 15:12:44",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "rcssmin"
}