{ "info": { "author": "Christof Hoeke", "author_email": "c@cthedot.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Internet", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Markup :: HTML" ], "description": "======\nREADME\n======\n.. -*- restructuredtext -*-\n\n-------------------------------------------------------\ncssutils: CSS Cascading Style Sheets library for Python\n-------------------------------------------------------\n:Copyright: 2004-2013 Christof Hoeke\n\nOverview\n========\nA Python package to parse and build CSS Cascading Style Sheets. DOM only, not any rendering facilities!\n\nBased upon and partly implementing the following specifications :\n\n`CSS 2.1rev1 `__\n General CSS rules and properties are defined here\n`CSS3 Module: Syntax `__\n Used in parts since cssutils 0.9.4. cssutils tries to use the features from CSS 2.1 and CSS 3 with preference to CSS3 but as this is not final yet some parts are from CSS 2.1\n`CSS Fonts Module Level 3 `__\n Added changes and additional stuff (since cssutils v0.9.6)\n`MediaQueries `__\n MediaQueries are part of ``stylesheets.MediaList`` since v0.9.4, used in @import and @media rules.\n`Namespaces `__\n Added in v0.9.1, updated to definition in CSSOM in v0.9.4, updated in 0.9.5 for dev version\n`CSS3 Module: Pages Media `__\n Most properties of this spec are implemented including MarginRules\n`Selectors `__\n The selector syntax defined here (and not in CSS 2.1) should be parsable with cssutils (*should* mind though ;) )\n`CSS Backgrounds and Borders Module Level 3 `__, `CSS3 Basic User Interface Module `__, `CSS Text Level 3 `__\n Some validation for properties included, mainly `cursor`, `outline`, `resize`, `box-shadow`, `text-shadow`\n`Variables `__ / `CSS Custom Properties `__\n Experimental specification of CSS Variables which cssutils implements partly. The vars defined in the newer CSS Custom Properties spec should in main parts be at least parsable with cssutils.\n\n`DOM Level 2 Style CSS `__\n DOM for package css. 0.9.8 removes support for CSSValue and related API, see PropertyValue and Value API for now\n`DOM Level 2 Style Stylesheets `__\n DOM for package stylesheets\n`CSSOM `__\n A few details (mainly the NamespaceRule DOM) are taken from here. Plan is to move implementation to the stuff defined here which is newer but still no REC so might change anytime...\n\nThe cssutils tokenizer is a customized implementation of `CSS3 Module: Syntax (W3C Working Draft 13 August 2003) `_ which itself is based on the CSS 2.1 tokenizer. It tries to be as compliant as possible but uses some (helpful) parts of the CSS 2.1 tokenizer.\n\nI guess cssutils is neither CSS 2.1 nor CSS 3 compliant but tries to at least be able to parse both grammars including some more real world cases (some CSS hacks are actually parsed and serialized). Both official grammars are not final nor bugfree but still feasible. cssutils aim is not to be fully compliant to any CSS specification (the specifications seem to be in a constant flow anyway) but cssutils *should* be able to read and write as many as possible CSS stylesheets \"in the wild\" while at the same time implement the official APIs which are well documented. Some minor extensions are provided as well.\n\nPlease visit http://cthedot.de/cssutils/ or https://bitbucket.org/cthedot/cssutils/ for more details.\n\nThere is also a low-traffic `cssutils discussion group `_.\n\n\nCompatibility\n=============\ncssutils is developed on standard Python but works under Python 2.x (from 2.5, 2.7.6 tested), 3.x (v3.3.3 tested) and Jython (from 2.5.1). IronPython has not been tested yet but might work? Python 2.4 and older are not supported since cssutils 0.9.8 anymore.\ncssutils is not thread safe, please beware!\n\nLicense\n=======\nCopyright 2005 - 2013 Christof Hoeke\n\ncssutils is published under the LGPL 3 or later\n\ncssutils is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\ncssutils is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License along with cssutils. If not, see http://www.gnu.org/licenses.\n\n\nInstallation\n============\nFrom 0.9.6 cssutils uses `Distribute `_\n\nAfter installing Distribute use::\n\n > easy_install cssutils\n\nto install the latest version of cssutils.\n\nAlternatively download the provided source distribution. Expand the file and from a command line install with::\n\n > python setup.py install\n\nTo uninstall remove any registrations of cssutils eggs with Distribute and remove the eggs which should be installed at PYTHONDIR/Lib/site-packages/cssutils too.\n\n\nExample\n=======\n::\n\n # -*- coding: utf-8 -*-\n import cssutils\n\n css = u'''/* a comment with umlaut ä */\n @namespace html \"http://www.w3.org/1999/xhtml\";\n @variables { BG: #fff }\n html|a { color:red; background: var(BG) }'''\n sheet = cssutils.parseString(css)\n\n for rule in sheet:\n if rule.type == rule.STYLE_RULE:\n # find property\n for property in rule.style:\n if property.name == 'color':\n property.value = 'green'\n property.priority = 'IMPORTANT'\n break\n # or simply:\n rule.style['margin'] = '01.0eM' # or: ('1em', 'important')\n\n sheet.encoding = 'ascii'\n sheet.namespaces['xhtml'] = 'http://www.w3.org/1999/xhtml'\n sheet.namespaces['atom'] = 'http://www.w3.org/2005/Atom'\n sheet.add('atom|title {color: #000000 !important}')\n sheet.add('@import \"sheets/import.css\";')\n\n # cssutils.ser.prefs.resolveVariables == True since 0.9.7b2\n print sheet.cssText\n\nresults in::\n\n @charset \"ascii\";\n @import \"sheets/import.css\";\n /* a comment with umlaut \\E4 */\n @namespace xhtml \"http://www.w3.org/1999/xhtml\";\n @namespace atom \"http://www.w3.org/2005/Atom\";\n xhtml|a {\n color: green !important;\n background: #fff;\n margin: 1em\n }\n atom|title {\n color: #000 !important\n }\n\n\nDocumentation\n=============\nThe current documenation can be found at http://packages.python.org/cssutils/\n\n\nKind Request\n============\ncssutils is far from being perfect or even complete. If you find any bugs (especially specification violations) or have problems or suggestions please put them in the `Issue Tracker `_ at Bitbucket.\n\n\nThanks\n======\nThanks to Simon Sapin, Jason R. Coombs and Walter Doerwald for patches, help and discussion. Thanks to Kevin D. Smith for the value validating module. Thanks also to Cory Dodt, Tim Gerla, James Dobson and Amit Moscovich for helpful suggestions and code patches. Thanks to Fredrik Hedman for help on port of encutils to Python 3.", "description_content_type": null, "docs_url": "https://pythonhosted.org/cssutils/", "download_url": "https://bitbucket.org/cthedot/cssutils/downloads", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://cthedot.de/cssutils/", "keywords": "CSS,Cascading Style Sheets,CSSParser,DOM Level 2 Stylesheets,DOM Level 2 CSS", "license": "LGPL 2.1 or later, see also http://cthedot.de/cssutils/", "maintainer": null, "maintainer_email": null, "name": "cssutils", "package_url": "https://pypi.org/project/cssutils/", "platform": "Python 2.5 and later. Python 3.2 and later. Jython 2.5.1 and later.", "project_url": "https://pypi.org/project/cssutils/", "project_urls": { "Download": "https://bitbucket.org/cthedot/cssutils/downloads", "Homepage": "http://cthedot.de/cssutils/" }, "release_url": "https://pypi.org/project/cssutils/1.0.2/", "requires_dist": null, "requires_python": null, "summary": "A CSS Cascading Style Sheets library for Python", "version": "1.0.2" }, "last_serial": 2682946, "releases": { "0.9.10": [ { "comment_text": "Updated version as last had Py3 syntax due to mixup :(", "digests": { "md5": "d9c188331853dc8bbdacfa008ad71953", "sha256": "5e78075db0382e0955cddf12507203bf36b99543d74ac098366197fe198b596b" }, "downloads": -1, "filename": "cssutils-0.9.10-py2.7.egg", "has_sig": false, "md5_digest": "d9c188331853dc8bbdacfa008ad71953", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 653091, "upload_time": "2013-04-13T13:07:48", "url": "https://files.pythonhosted.org/packages/6c/f8/83d32794d83370b862a9d22f9d9975f6622abd7597d9c388428de8c4ae12/cssutils-0.9.10-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "90bb38e38f2fbd2db9309a4fc02eabb4", "sha256": "e95d85ac05fcbe220194cd7ee7ab0dd4b624deea600366622bf7f260479e0d04" }, "downloads": -1, "filename": "cssutils-0.9.10.win-amd64.exe", "has_sig": false, "md5_digest": "90bb38e38f2fbd2db9309a4fc02eabb4", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 635968, "upload_time": "2013-03-31T20:09:08", "url": "https://files.pythonhosted.org/packages/51/3e/78064ec4d7302fb92a75366432e5fa3e385bf56885e03953896cb2027f4c/cssutils-0.9.10.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "81b5c0294c54479a54548769eaa236f8", "sha256": "2ea142fddf8aec9231fde5bc1184b282008f2ca35a7b483371eef5b97b6c23a6" }, "downloads": -1, "filename": "cssutils-0.9.10.zip", "has_sig": false, "md5_digest": "81b5c0294c54479a54548769eaa236f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 430718, "upload_time": "2013-03-31T20:04:45", "url": "https://files.pythonhosted.org/packages/92/4f/02b84160055ac51c4c7bb654aca3a0724c4e90b2e124088d7e24b39ea0b1/cssutils-0.9.10.zip" } ], "0.9.10b1": [ { "comment_text": "", "digests": { "md5": "dbbee768264eb4bc60a8742ae4338d25", "sha256": "2aed3f1346ac61648a5bc816a55412b6ed38124766bc82fd293861d7cbfe8690" }, "downloads": -1, "filename": "cssutils-0.9.10b1-py2.6.egg", "has_sig": false, "md5_digest": "dbbee768264eb4bc60a8742ae4338d25", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 651887, "upload_time": "2012-04-28T17:18:59", "url": "https://files.pythonhosted.org/packages/25/c5/2ef0f41560b09eb88c7a15fe029b35d79e734fd8d9ef19e8bd4a21bd4cb2/cssutils-0.9.10b1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "8dd5bac2f9feff12958e2ad9177c504c", "sha256": "fab4ae1482a178e277d0abc1aa9f010764c6b5d5de9d447707e7a1f7f0fdd366" }, "downloads": -1, "filename": "cssutils-0.9.10b1-py2.7.egg", "has_sig": false, "md5_digest": "8dd5bac2f9feff12958e2ad9177c504c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 650843, "upload_time": "2012-04-28T17:17:20", "url": "https://files.pythonhosted.org/packages/f9/98/2d8a5f2790617dd201e53d70f38ab64ff4658e244cda673a7705f2fbec7f/cssutils-0.9.10b1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b82f5c05b2fe3ea51e7776f79b94a323", "sha256": "c0c38813173c965af14bf94700c56c57987496dd0638e892a51425e64e382889" }, "downloads": -1, "filename": "cssutils-0.9.10b1-py3.2.egg", "has_sig": false, "md5_digest": "b82f5c05b2fe3ea51e7776f79b94a323", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 655209, "upload_time": "2012-04-28T17:16:21", "url": "https://files.pythonhosted.org/packages/1f/cc/7b79fe2880b13c591e069c15103399eef00a5c544fde4c2e7bf8d6dadc3f/cssutils-0.9.10b1-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "02ec401aeed5ba6253b739e919eba6d1", "sha256": "f8ef24bb6c20b5c725291a10f486e8d99b2b0acffd429e1fd5d579e5bbf0ba2f" }, "downloads": -1, "filename": "cssutils-0.9.10b1.zip", "has_sig": false, "md5_digest": "02ec401aeed5ba6253b739e919eba6d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 430740, "upload_time": "2012-04-28T17:13:23", "url": "https://files.pythonhosted.org/packages/15/1b/f739085e2bf099e1655be9a0e5704da0b95bfd274e4de8c13aa46b9fc025/cssutils-0.9.10b1.zip" } ], "0.9.2b3": [ { "comment_text": "", "digests": { "md5": "0c5e56f307cb5827a753e5c01edc04cd", "sha256": "c674e50265ee28b04e07c16923924fb5422976a06d59fbbc5f8c5ec73335bccc" }, "downloads": -1, "filename": "cssutils-0.9.2b3-py2.5.egg", "has_sig": false, "md5_digest": "0c5e56f307cb5827a753e5c01edc04cd", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 271476, "upload_time": "2007-08-04T11:01:37", "url": "https://files.pythonhosted.org/packages/b6/79/2174c575915a69024fb8d5ce88f0c47b2c93a7e2ee533c4657da67442ed9/cssutils-0.9.2b3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "36af1b4a4fef79418fd2c3a34eeef18b", "sha256": "9645400563000336a042362cc43a39fb50ce3beaeaece177e50dab203f1efcf1" }, "downloads": -1, "filename": "cssutils-0.9.2b3.zip", "has_sig": false, "md5_digest": "36af1b4a4fef79418fd2c3a34eeef18b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 998366, "upload_time": "2007-08-04T11:04:02", "url": "https://files.pythonhosted.org/packages/35/44/45959e3eb1dfce69cb8ad073c4908cd29ad43388b4ebc8378588e6b601c5/cssutils-0.9.2b3.zip" } ], "0.9.3a1": [ { "comment_text": "", "digests": { "md5": "a4c46c77a12fec60438fb24be1a0d80d", "sha256": "5b2a67ae5b8b22268919fe8f5971dd4e0085774a42bf62f3f6f90dffdafd9ad3" }, "downloads": -1, "filename": "cssutils-0.9.3a1-py2.5.egg", "has_sig": false, "md5_digest": "a4c46c77a12fec60438fb24be1a0d80d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 334489, "upload_time": "2007-09-05T11:22:51", "url": "https://files.pythonhosted.org/packages/67/e0/0516c5a8c56003c96ee580221979715f7697fe9bf5b2a5a94a22ac67b686/cssutils-0.9.3a1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "5c502877c79203168e2718df7ce7d33e", "sha256": "8a89af0f68d079e4af768feaca0ccb1be7aba7fee80a60ca7c9c523f2f68e625" }, "downloads": -1, "filename": "cssutils-0.9.3a1.zip", "has_sig": false, "md5_digest": "5c502877c79203168e2718df7ce7d33e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1189689, "upload_time": "2007-09-05T11:24:33", "url": "https://files.pythonhosted.org/packages/a9/19/b78855caded11ce45f6bd37fb309112ba07043c8dfb7bbec69c9993e7bbb/cssutils-0.9.3a1.zip" } ], "0.9.4a2": [ { "comment_text": "", "digests": { "md5": "40c1ae64ee9b6a47f8bcf0eb4d41e7a9", "sha256": "a873d2693863decfaef5aebf360f4d6ab3a4f304d76abbb759ccfad81d47a3ae" }, "downloads": -1, "filename": "cssutils-0.9.4a2-py2.5.egg", "has_sig": false, "md5_digest": "40c1ae64ee9b6a47f8bcf0eb4d41e7a9", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 358058, "upload_time": "2007-10-27T20:54:40", "url": "https://files.pythonhosted.org/packages/be/88/2c8b817a7c52ea2b179d795cfad70e3caa88f69402898b365927d579311d/cssutils-0.9.4a2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "65c41eda0a7627bfb4fa7b57722980aa", "sha256": "790ec5138bab6dec6d7deb2cbf0fbc54886354b40b457b5fbfdc058c3aeb5b77" }, "downloads": -1, "filename": "cssutils-0.9.4a2.zip", "has_sig": false, "md5_digest": "65c41eda0a7627bfb4fa7b57722980aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1319206, "upload_time": "2007-10-27T20:57:06", "url": "https://files.pythonhosted.org/packages/2d/5a/c1efc1b676f617ec3c36ddbec71986abe4b59a639fa0dd6f8cf115e13145/cssutils-0.9.4a2.zip" } ], "0.9.4a3": [ { "comment_text": "", "digests": { "md5": "01516a3ae665296dc122e72055d72b18", "sha256": "7decc1289164e5e64551da22b1c1638f49ed953ddf034fda2c37f25acd08058c" }, "downloads": -1, "filename": "cssutils-0.9.4a3-py2.5.egg", "has_sig": false, "md5_digest": "01516a3ae665296dc122e72055d72b18", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 364602, "upload_time": "2007-11-06T21:30:07", "url": "https://files.pythonhosted.org/packages/5f/2b/e1d407233c1aa97d76f08ed7a24b2469a5a40cc49fc05a8b64af5f25db34/cssutils-0.9.4a3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "ee1a4dd711348b7e33c9f189c40c34b5", "sha256": "f6eddcd7fad1a110668c6885d26c95a32ccccaa9ed1f451537de66ad9a0bb131" }, "downloads": -1, "filename": "cssutils-0.9.4a3.zip", "has_sig": false, "md5_digest": "ee1a4dd711348b7e33c9f189c40c34b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1337732, "upload_time": "2007-11-06T21:34:00", "url": "https://files.pythonhosted.org/packages/e0/50/24196cacb0e1b1ba3cfa08f140b410bd0fa37fddc16d81732717b6d3ee0f/cssutils-0.9.4a3.zip" } ], "0.9.4a4": [ { "comment_text": "", "digests": { "md5": "16750f22059d93c6ffeb35def766b4c4", "sha256": "244db3c89093362dbab57d032fdbfed2f3f76e9d303df25700808400345b1a23" }, "downloads": -1, "filename": "cssutils-0.9.4a4-py2.5.egg", "has_sig": false, "md5_digest": "16750f22059d93c6ffeb35def766b4c4", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 376977, "upload_time": "2007-12-02T16:05:00", "url": "https://files.pythonhosted.org/packages/bd/f0/4882c1507fbf2dc802e21d184393ac55351d7530fdce48b958c6d8d142a3/cssutils-0.9.4a4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "190d5763d94804ba946b1727eee61eb9", "sha256": "1b3a9ba79d06033f73e18eaf6389f8e9d45637937d52ee5a64c628ba7424cdc3" }, "downloads": -1, "filename": "cssutils-0.9.4a4.zip", "has_sig": false, "md5_digest": "190d5763d94804ba946b1727eee61eb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1439569, "upload_time": "2007-12-02T16:14:43", "url": "https://files.pythonhosted.org/packages/a9/4e/6eac4076a0ecb391532e4444a36435843860c40ba7a666547144653d6b89/cssutils-0.9.4a4.zip" } ], "0.9.4b1": [ { "comment_text": "", "digests": { "md5": "48c8b26f666430a95bd888120141c71b", "sha256": "48daaae2241549560e982447f292527120a300864ef333f98db116004bae809a" }, "downloads": -1, "filename": "cssutils-0.9.4b1-py2.5.egg", "has_sig": false, "md5_digest": "48c8b26f666430a95bd888120141c71b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 381633, "upload_time": "2007-12-29T16:49:44", "url": "https://files.pythonhosted.org/packages/b7/2c/b30e3b27d2960583961f3646e41a50c7c76d25ae7127075b970dfe7c69a4/cssutils-0.9.4b1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "5a88f256d5f6efcf8b009f2346f0ef86", "sha256": "7df3c9ea285c382a97f292b9713cd4c2b16807bcb8159813e5294bc9fa5b7c94" }, "downloads": -1, "filename": "cssutils-0.9.4b1.zip", "has_sig": false, "md5_digest": "5a88f256d5f6efcf8b009f2346f0ef86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1408011, "upload_time": "2007-12-29T16:51:43", "url": "https://files.pythonhosted.org/packages/80/cd/14d54798f263743b8b1a09842de8c42b7acc39afe32047838200a7bd6dae/cssutils-0.9.4b1.zip" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "9e90b0d0c7c575976e405610991552c4", "sha256": "72c37b26e2cc561ff85e75300bb9debc6094d142ef30b29bb5bb5d8b3b437697" }, "downloads": -1, "filename": "cssutils-0.9.5-py2.4.egg", "has_sig": false, "md5_digest": "9e90b0d0c7c575976e405610991552c4", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 468158, "upload_time": "2008-07-30T11:59:45", "url": "https://files.pythonhosted.org/packages/7e/98/3f8a10e91c3f5a9cd2835d214d667ab1f11802da42d03f1d6b153ce00c3f/cssutils-0.9.5-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "33976baf915ea5d7d16b853840547d72", "sha256": "3d5b7ba20ed5efd8e91d59c5a4354e44ae55c99823bd0a869ced1bf1a4c2c049" }, "downloads": -1, "filename": "cssutils-0.9.5-py2.5.egg", "has_sig": false, "md5_digest": "33976baf915ea5d7d16b853840547d72", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 466717, "upload_time": "2008-07-30T11:54:57", "url": "https://files.pythonhosted.org/packages/fd/6b/e602312c77949d08a9479e6389ced83e2ecdf0312f62d9a23bfb4d37dcf8/cssutils-0.9.5-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "7047938dbd057de49be16c4ef0d7fbac", "sha256": "69e8f15cc80ca435a64e0eb8c6bc0c5592f5c37b5a3008355fd07686d7c1f9ff" }, "downloads": -1, "filename": "cssutils-0.9.5.win32.exe", "has_sig": false, "md5_digest": "7047938dbd057de49be16c4ef0d7fbac", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 276748, "upload_time": "2008-07-30T12:04:18", "url": "https://files.pythonhosted.org/packages/79/73/ad1487457f036cd8f07c0becfdc5997d9eea381233a0692cc7ce580983ec/cssutils-0.9.5.win32.exe" }, { "comment_text": "", "digests": { "md5": "1e74451a964a80a659c0a18d6ea12f82", "sha256": "d30ada911f4d00bdf4aa35543edd43272c18e76fd530fed353d19fa558b8e756" }, "downloads": -1, "filename": "cssutils-0.9.5.zip", "has_sig": false, "md5_digest": "1e74451a964a80a659c0a18d6ea12f82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1946087, "upload_time": "2008-07-30T11:57:23", "url": "https://files.pythonhosted.org/packages/0c/b3/4758a06f151570371da61592f7111b0059d2a7306d3170058a623e14288f/cssutils-0.9.5.zip" } ], "0.9.5.1": [ { "comment_text": "", "digests": { "md5": "b9a113a7a03a5a12eb40b0bdb814a10b", "sha256": "97505612a0d89bfe7e7887004727dac60d1234a678a58b3586e1a7054267a45d" }, "downloads": -1, "filename": "cssutils-0.9.5.1-py2.4.egg", "has_sig": false, "md5_digest": "b9a113a7a03a5a12eb40b0bdb814a10b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 469159, "upload_time": "2008-08-11T19:13:43", "url": "https://files.pythonhosted.org/packages/f9/c9/5bbc16c1e56f8cdecad089fe35ea486d00be816066b5ecc056e2fbb1b786/cssutils-0.9.5.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "79beacc030140cc5de9e5705e133f1ff", "sha256": "3ffa098bd81d213ad6b9f07fd23d94a5c17c67e8e9bb209d2768aa62dfa58a1e" }, "downloads": -1, "filename": "cssutils-0.9.5.1-py2.5.egg", "has_sig": false, "md5_digest": "79beacc030140cc5de9e5705e133f1ff", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 467783, "upload_time": "2008-08-11T19:07:54", "url": "https://files.pythonhosted.org/packages/1e/b1/343005a3473ef6ea533746ffbd33cf3ae85fa774429cba59981679b5ffe6/cssutils-0.9.5.1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "a6bec3e47534faa34fd0a294b2e4faca", "sha256": "48194b5814a73103b51fc234cee4dfb7e935ecdefbe90136aed87835e9323a3b" }, "downloads": -1, "filename": "cssutils-0.9.5.1-py2.6.egg", "has_sig": false, "md5_digest": "a6bec3e47534faa34fd0a294b2e4faca", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 465231, "upload_time": "2008-10-04T16:48:03", "url": "https://files.pythonhosted.org/packages/f1/2a/a3d7b04b2b9fddca9fd5494116e838dda6b12f22b3bd718e29ae260bdb43/cssutils-0.9.5.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "0ee10f689c7b78dfdb4420818bb45902", "sha256": "dd1cf577299353fcb7b515961fd905b53ac8c16e64cd0d62de41f3fc220220f0" }, "downloads": -1, "filename": "cssutils-0.9.5.1.win32.exe", "has_sig": false, "md5_digest": "0ee10f689c7b78dfdb4420818bb45902", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 277152, "upload_time": "2008-08-11T19:08:30", "url": "https://files.pythonhosted.org/packages/d0/0e/44e297ccc8faba3deeefaafd59845a8afdb04b1b20c62549b1c182b31dea/cssutils-0.9.5.1.win32.exe" }, { "comment_text": "", "digests": { "md5": "b5ee33892918c6589017cfb318db8190", "sha256": "c8ad87b0f75b83b69a72d4911c266b192c6ce24d2e5fb0c3d7aa68a17f4703db" }, "downloads": -1, "filename": "cssutils-0.9.5.1.zip", "has_sig": false, "md5_digest": "b5ee33892918c6589017cfb318db8190", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1951479, "upload_time": "2008-08-11T19:10:34", "url": "https://files.pythonhosted.org/packages/7f/cb/d92cffe48a4356fee5a133be67079390555af68d7087693c0949b3198c00/cssutils-0.9.5.1.zip" } ], "0.9.5a1": [ { "comment_text": "", "digests": { "md5": "325d6ae4a9f49aa7a8c8134797e7108f", "sha256": "71e41ee7e9df2762377f127f708b1bf5668179170a192f45fbec7187b93b0eae" }, "downloads": -1, "filename": "cssutils-0.9.5a1-py2.5.egg", "has_sig": false, "md5_digest": "325d6ae4a9f49aa7a8c8134797e7108f", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 393562, "upload_time": "2008-01-13T17:14:08", "url": "https://files.pythonhosted.org/packages/5b/d1/0aadf100417677bafb5ac1ce7ebba3e9a25399c3b75e98f00cf4c1dc95da/cssutils-0.9.5a1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "c5b65d47ad32e7e49368f5a19acf1062", "sha256": "258976770327ded8478c0cc47dc995e3744c9c73834c4f76f9067e890a6088e1" }, "downloads": -1, "filename": "cssutils-0.9.5a1.zip", "has_sig": false, "md5_digest": "c5b65d47ad32e7e49368f5a19acf1062", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1447312, "upload_time": "2008-01-13T17:16:00", "url": "https://files.pythonhosted.org/packages/7c/f6/9dc792bd83c15af27d0521b6cd7cd3b1a34b72b435bd06e8b416e90e6dd7/cssutils-0.9.5a1.zip" } ], "0.9.5a2": [ { "comment_text": "", "digests": { "md5": "0f33f0e10a42588793df43906ddd03df", "sha256": "bfaff90c36c6ec191eb86500bf7c7fde21f00162ce7079904db982206d39620a" }, "downloads": -1, "filename": "cssutils-0.9.5a2-py2.5.egg", "has_sig": false, "md5_digest": "0f33f0e10a42588793df43906ddd03df", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 394107, "upload_time": "2008-01-15T21:03:09", "url": "https://files.pythonhosted.org/packages/8b/72/54a935acb57c21843036bb7626651591ab12f219a360e55ca7163b46d3b4/cssutils-0.9.5a2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "bd2663b91eea7cf9cdc3881392405856", "sha256": "79250d1144a262f7672d00ff848a176326a25eb2590b35d6733f23d2c9c5b9ff" }, "downloads": -1, "filename": "cssutils-0.9.5a2.zip", "has_sig": false, "md5_digest": "bd2663b91eea7cf9cdc3881392405856", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1448765, "upload_time": "2008-01-15T21:06:14", "url": "https://files.pythonhosted.org/packages/e6/1a/d70341040cf8ccbe6f9d204f7279a575ad03180601a1eef8cfaed7ffd56a/cssutils-0.9.5a2.zip" } ], "0.9.5a3": [ { "comment_text": "", "digests": { "md5": "fb2c97c930f930ec3a36172c7e9b1a70", "sha256": "62a020e72cd252b41c518709a088ee46a05f081d3b7839bbb05f827021883f6e" }, "downloads": -1, "filename": "cssutils-0.9.5a3-py2.5.egg", "has_sig": false, "md5_digest": "fb2c97c930f930ec3a36172c7e9b1a70", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 421574, "upload_time": "2008-02-03T20:12:10", "url": "https://files.pythonhosted.org/packages/a1/b0/927f12c2fa1c6140dec4aa79cf85175fd81a729460d1bcaf21123fe432ce/cssutils-0.9.5a3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "00ee99d0000b67eaf3002fedbb6c862d", "sha256": "4017eae073e8ad3c5204cf89556e8b90bdfd6fba072dcf98a727feae6bbc5db4" }, "downloads": -1, "filename": "cssutils-0.9.5a3.zip", "has_sig": false, "md5_digest": "00ee99d0000b67eaf3002fedbb6c862d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1802117, "upload_time": "2008-02-03T20:14:36", "url": "https://files.pythonhosted.org/packages/f4/28/22d76d5d84f3339bd9e82a35ec31153999389c1b2c5524f3350437af17b4/cssutils-0.9.5a3.zip" } ], "0.9.5a4": [ { "comment_text": "", "digests": { "md5": "6fe030131e9dadabf47d842230ca9674", "sha256": "4c677d7e26e329a2e04cb5003d93a3104aaf845a029e758f83316f3c3c1a0422" }, "downloads": -1, "filename": "cssutils-0.9.5a4-py2.5.egg", "has_sig": false, "md5_digest": "6fe030131e9dadabf47d842230ca9674", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 430654, "upload_time": "2008-02-22T18:26:06", "url": "https://files.pythonhosted.org/packages/d7/ae/eefdb338f8058cbff64703d94235a7da3a159a3d4260687a0c117b8a4934/cssutils-0.9.5a4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "b23a9f7769c6d15f5ab7276b0b2860bf", "sha256": "b34b5587bbee2649463b1ee5e7b9010aed47812b6792bc5545b938c003daf1d3" }, "downloads": -1, "filename": "cssutils-0.9.5a4.zip", "has_sig": false, "md5_digest": "b23a9f7769c6d15f5ab7276b0b2860bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1844038, "upload_time": "2008-02-22T18:28:02", "url": "https://files.pythonhosted.org/packages/18/d7/678ef9619e42d0a36e78537541e7c0f5353df565dd7b1cd4e930cee57729/cssutils-0.9.5a4.zip" } ], "0.9.5b1": [ { "comment_text": "", "digests": { "md5": "c62a8bc788f1f15816b71f08dbb62b7e", "sha256": "d9f71310dd12222239aa5680411975aa928f65bc1c6791025ffe3b4910b1fb63" }, "downloads": -1, "filename": "cssutils-0.9.5b1-py2.5.egg", "has_sig": false, "md5_digest": "c62a8bc788f1f15816b71f08dbb62b7e", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 438574, "upload_time": "2008-03-19T21:51:50", "url": "https://files.pythonhosted.org/packages/ed/e6/985d6105c4c361c91526279e663d6351a5e6febd531fa313e07284939588/cssutils-0.9.5b1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "29f9f28f48a5e4c2ddceb91139130fad", "sha256": "311177b4e27bc6e44436ee3603aa8aa28fba62260005b5f027440b53aea06441" }, "downloads": -1, "filename": "cssutils-0.9.5b1.win32.exe", "has_sig": false, "md5_digest": "29f9f28f48a5e4c2ddceb91139130fad", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 263829, "upload_time": "2008-03-19T22:01:02", "url": "https://files.pythonhosted.org/packages/66/59/7f5a62d535d014f3a4297e1f821c8ab57c9d907936a4f622866f7e187a75/cssutils-0.9.5b1.win32.exe" }, { "comment_text": "", "digests": { "md5": "8af30bf3728256071a9e5c88e7a37cbd", "sha256": "5fa6d4d4f9ccdad5a516c50be7c6b63de5ff7f53c134540cf14dcb6ec600c3e5" }, "downloads": -1, "filename": "cssutils-0.9.5b1.zip", "has_sig": false, "md5_digest": "8af30bf3728256071a9e5c88e7a37cbd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1902105, "upload_time": "2008-03-19T21:53:46", "url": "https://files.pythonhosted.org/packages/0c/e0/469966adb5d4b6880d39ee5db43440cb63416300023543c58a41b474e023/cssutils-0.9.5b1.zip" } ], "0.9.5b2": [ { "comment_text": "", "digests": { "md5": "54d225bd7e8084ed1fe31aa62e075ef1", "sha256": "06f969b89f37b550aba631587a5bda71cc452f210a7e154ee689b964f106cdf9" }, "downloads": -1, "filename": "cssutils-0.9.5b2-py2.5.egg", "has_sig": false, "md5_digest": "54d225bd7e8084ed1fe31aa62e075ef1", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 443110, "upload_time": "2008-03-23T00:24:35", "url": "https://files.pythonhosted.org/packages/3f/a0/80437b72079c670004f0f91e72011bebef01cac9bc6ee0a4718a3d75f4ae/cssutils-0.9.5b2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "8d88fd6a70ac0365b45c43535dea9e3f", "sha256": "aa1eebe4e6f17a7e16d5d9ea22c54758eb3985942b2e833e3063f5e9e0a150fe" }, "downloads": -1, "filename": "cssutils-0.9.5b2.win32.exe", "has_sig": false, "md5_digest": "8d88fd6a70ac0365b45c43535dea9e3f", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 265798, "upload_time": "2008-03-23T00:26:19", "url": "https://files.pythonhosted.org/packages/eb/ab/cdff78d267ef999027dfb89a28c6a4c9d7396aabc72b4ab2c5bbd4d2c068/cssutils-0.9.5b2.win32.exe" }, { "comment_text": "", "digests": { "md5": "45832cb5299fc64b26e8eafed0e0df81", "sha256": "a45c86e47c1b46b4f4b77edaa662898609228bbb6e0a2a6d3a29a0f0c38d54ba" }, "downloads": -1, "filename": "cssutils-0.9.5b2.zip", "has_sig": false, "md5_digest": "45832cb5299fc64b26e8eafed0e0df81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1915922, "upload_time": "2008-03-23T00:23:14", "url": "https://files.pythonhosted.org/packages/50/03/7284c33746fc260c91ef0128004c7482622211bc6aa2867c837682f76061/cssutils-0.9.5b2.zip" } ], "0.9.5b3": [ { "comment_text": "", "digests": { "md5": "3fc68992b5f5ab6359c7da97f67e58b6", "sha256": "5cf108a221654d50deb5477f7a12e2b7813821d8ad4463955fef0c30938684bf" }, "downloads": -1, "filename": "cssutils-0.9.5b3-py2.4.egg", "has_sig": false, "md5_digest": "3fc68992b5f5ab6359c7da97f67e58b6", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 454512, "upload_time": "2008-06-10T19:33:09", "url": "https://files.pythonhosted.org/packages/5b/16/c26feaaede389e34c559fd8b0d79410a3aba2f40cbefbb14c8b5c62d9425/cssutils-0.9.5b3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "28fd4098a0a24a110c3d250dc1c06304", "sha256": "dc020a79e275e54b7279362b1787b4e44b09e587768fb45d89ff995dbc8b2207" }, "downloads": -1, "filename": "cssutils-0.9.5b3-py2.5.egg", "has_sig": false, "md5_digest": "28fd4098a0a24a110c3d250dc1c06304", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 609799, "upload_time": "2008-06-05T16:33:19", "url": "https://files.pythonhosted.org/packages/70/c1/92d31581721cb04aa7acb3ac71695ce1f3b9b66df7e05332925af03cfd5f/cssutils-0.9.5b3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "bf76c3620e03d9276631d12760f466db", "sha256": "0c902ddbf8c18188a90ae65455decaf477f6adea0294d6d9f3bf6ddaba96a377" }, "downloads": -1, "filename": "cssutils-0.9.5b3.win32.exe", "has_sig": false, "md5_digest": "bf76c3620e03d9276631d12760f466db", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 333091, "upload_time": "2008-06-05T16:37:16", "url": "https://files.pythonhosted.org/packages/d9/63/3faccbd36eac23e8cf1d6b872a9bf30c5b26a971a746c40853bbcf4729c0/cssutils-0.9.5b3.win32.exe" }, { "comment_text": "", "digests": { "md5": "f4bf7db3706ed9bef6ba04d047b62653", "sha256": "e4a1b8fbc8662bffa5afd4285f357d8f22a27ecbabdda3c46a85301e8e291dce" }, "downloads": -1, "filename": "cssutils-0.9.5b3.zip", "has_sig": false, "md5_digest": "f4bf7db3706ed9bef6ba04d047b62653", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1908377, "upload_time": "2008-06-05T16:36:00", "url": "https://files.pythonhosted.org/packages/7f/8d/70785f6c8236c238a8e266e33ecc90deadefdf642349ef6a1b1133f4f752/cssutils-0.9.5b3.zip" } ], "0.9.5rc1": [ { "comment_text": "", "digests": { "md5": "b63852d10aeaa8a3a786376e87304eaf", "sha256": "519a44cec7023fbaa595820dc28cc5315e0a060420d82db14687fba71fe8af02" }, "downloads": -1, "filename": "cssutils-0.9.5rc1-py2.4.egg", "has_sig": false, "md5_digest": "b63852d10aeaa8a3a786376e87304eaf", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 463257, "upload_time": "2008-07-09T14:08:25", "url": "https://files.pythonhosted.org/packages/ae/ff/8d807e1e5f86ef6f611d6936f38d4e6f1970fe3e4a6a13cd6e2f83353ca9/cssutils-0.9.5rc1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "fe9e6cc01dd07aa8415ad6feb79fb03b", "sha256": "7d380f38a17a2370c95fc213abe73e6ffaacc2578e51242da85251d1bda54b36" }, "downloads": -1, "filename": "cssutils-0.9.5rc1-py2.5.egg", "has_sig": false, "md5_digest": "fe9e6cc01dd07aa8415ad6feb79fb03b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 618307, "upload_time": "2008-07-09T13:32:20", "url": "https://files.pythonhosted.org/packages/4d/db/227a8c67ee1fe32a3b2ffaa805a894b09696dfd739039ed9139eae51270a/cssutils-0.9.5rc1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "3fb9adad95f4e2318bc3fabb64c076f9", "sha256": "c491269698be27842c1b67854bc54fb3346071c055d067191b95eb2fcc15e0df" }, "downloads": -1, "filename": "cssutils-0.9.5rc1.win32.exe", "has_sig": false, "md5_digest": "3fb9adad95f4e2318bc3fabb64c076f9", "packagetype": "bdist_wininst", "python_version": "2.5", "requires_python": null, "size": 336815, "upload_time": "2008-07-09T13:37:09", "url": "https://files.pythonhosted.org/packages/f3/62/64d1ac6196775bf10acce1ebd40d836d4299719a36a5033916bc068841ec/cssutils-0.9.5rc1.win32.exe" }, { "comment_text": "", "digests": { "md5": "401db3df193890d1bdb7f389771db68c", "sha256": "a030c69edfef1a230115ed4f07fc53aa7eb67234ce9c2a5c5a3cc73179753db6" }, "downloads": -1, "filename": "cssutils-0.9.5rc1.zip", "has_sig": false, "md5_digest": "401db3df193890d1bdb7f389771db68c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2627795, "upload_time": "2008-07-09T13:35:48", "url": "https://files.pythonhosted.org/packages/85/84/63bfe6e3771366f3f7054ed847a447aefcc077e74c1cbc0bf6ecfe0ade3c/cssutils-0.9.5rc1.zip" } ], "0.9.5rc2": [ { "comment_text": "", "digests": { "md5": "bf087985fdb87df00c48b7fe483b70ab", "sha256": "683b76e78c1fb804cf24efcc039f6bb12e7c72325f08a3b3a5368165611a2fee" }, "downloads": -1, "filename": "cssutils-0.9.5rc2-py2.4.egg", "has_sig": false, "md5_digest": "bf087985fdb87df00c48b7fe483b70ab", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 465464, "upload_time": "2008-07-14T20:27:18", "url": "https://files.pythonhosted.org/packages/89/f9/bb809fc1edf26f3ff686bb33e1d936641f753e1fe6ddc4883c4eb8fd39c2/cssutils-0.9.5rc2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "f214d713bb1633532b4d761baf7e5786", "sha256": "c9f2b4a236c12469cf24679545d20b1da0c685c37eeb5f62e510e45c8d21794c" }, "downloads": -1, "filename": "cssutils-0.9.5rc2-py2.5.egg", "has_sig": false, "md5_digest": "f214d713bb1633532b4d761baf7e5786", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 620458, "upload_time": "2008-07-14T20:23:35", "url": "https://files.pythonhosted.org/packages/1c/0d/ecd92940302b0357b1dde311e67c2d5bdd0ed138ec8215544799af44ec2e/cssutils-0.9.5rc2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "2d0be15c46e9415e585bbc73c91b488b", "sha256": "f56652f9022ebcd2d2d0d12a8d43e7315ac1077417da3f6784002c85a604f87a" }, "downloads": -1, "filename": "cssutils-0.9.5rc2.win32.exe", "has_sig": false, "md5_digest": "2d0be15c46e9415e585bbc73c91b488b", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 338020, "upload_time": "2008-07-14T20:24:15", "url": "https://files.pythonhosted.org/packages/77/ba/84aebac815b669666f9d87aa799eae1ada8f0ef96f4b154bd4aad6f8bbb1/cssutils-0.9.5rc2.win32.exe" }, { "comment_text": "", "digests": { "md5": "71ad7e175ed1b9802a38c2622b742d64", "sha256": "7a989a373a91cf9a949937a97870a4e2b62f129ca4b57ff47023700c5bd4ad14" }, "downloads": -1, "filename": "cssutils-0.9.5rc2.zip", "has_sig": false, "md5_digest": "71ad7e175ed1b9802a38c2622b742d64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1940802, "upload_time": "2008-07-14T20:26:05", "url": "https://files.pythonhosted.org/packages/71/aa/7608480307f56ccaf9b230b5d203192e36345b19bfe39eeed511142d6144/cssutils-0.9.5rc2.zip" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "cc0246021c5ac02230351dec76166f00", "sha256": "1f1ea25cdb5f52a5dca5d6e295e55d95c971acde99bd0a4aed2df1065350d703" }, "downloads": -1, "filename": "cssutils-0.9.6-py2.4.egg", "has_sig": false, "md5_digest": "cc0246021c5ac02230351dec76166f00", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 540936, "upload_time": "2009-10-07T17:52:38", "url": "https://files.pythonhosted.org/packages/fc/5a/b2adc7d7571b40f6f43a5d7b99bc28ea9938ba179f46690c39293cdea393/cssutils-0.9.6-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "cab2b204bf5fef6a965f07ca73cefcde", "sha256": "d2a63112fb5796579788b79bb90419f90309fd75b104939d2fb939d13ae1a003" }, "downloads": -1, "filename": "cssutils-0.9.6-py2.5.egg", "has_sig": false, "md5_digest": "cab2b204bf5fef6a965f07ca73cefcde", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 539522, "upload_time": "2009-10-07T17:51:53", "url": "https://files.pythonhosted.org/packages/3f/7b/872b9606de98e9efab1c78e689ffa8e40bc73fcdbfd5130bd08adf52062a/cssutils-0.9.6-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "6416d80eb4bd23c588bf3c6225395b72", "sha256": "67438aecee5f2ab687b2ea0724f2e35444e42e4b65a874aff11e1b66c74bc5ea" }, "downloads": -1, "filename": "cssutils-0.9.6-py2.6.egg", "has_sig": false, "md5_digest": "6416d80eb4bd23c588bf3c6225395b72", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 538849, "upload_time": "2009-10-07T17:51:08", "url": "https://files.pythonhosted.org/packages/13/33/736c024e59131c9b3526543ad28caebe23d80135f54327dd0113eac69beb/cssutils-0.9.6-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "64fd08867f2efa8137239f12040546e8", "sha256": "596c1cebb32408d1f34397b6c2d0ce4a51dca00b70cfae3b965e0a47d66b9c1d" }, "downloads": -1, "filename": "cssutils-0.9.6.win32.exe", "has_sig": false, "md5_digest": "64fd08867f2efa8137239f12040546e8", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 540393, "upload_time": "2009-10-07T17:54:16", "url": "https://files.pythonhosted.org/packages/20/71/3a7004539b13674d277d1f323c4b4469b607269c2ae4020c16b375c7bf0a/cssutils-0.9.6.win32.exe" }, { "comment_text": "", "digests": { "md5": "93573ed91ae43c7c8620886111d65a2a", "sha256": "18f3cffb2ff413e0796d0c9192db3a56f18fe57524cc54edc57d20239614eb87" }, "downloads": -1, "filename": "cssutils-0.9.6.zip", "has_sig": false, "md5_digest": "93573ed91ae43c7c8620886111d65a2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 522370, "upload_time": "2009-10-07T17:50:29", "url": "https://files.pythonhosted.org/packages/41/15/f40808876a9614caa592f39f690c68df7855ae779ec075419e7d1bab4d57/cssutils-0.9.6.zip" } ], "0.9.6a0": [ { "comment_text": "", "digests": { "md5": "a79e9289ef13c3d8cb0e9796c16abf2f", "sha256": "7ea0351448db8231e1bfe851bdde93e8dc725098f135f15ca22da1f63da9d86b" }, "downloads": -1, "filename": "cssutils-0.9.6a0-py2.4.egg", "has_sig": false, "md5_digest": "a79e9289ef13c3d8cb0e9796c16abf2f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 521161, "upload_time": "2008-12-14T17:08:24", "url": "https://files.pythonhosted.org/packages/33/52/4a223a61e02a641691025565604eab1b84abaf6b096dc231e10df0615af7/cssutils-0.9.6a0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "36149ab32aec03b0fd7c6fdb2250ba53", "sha256": "f58b4a312b2725f30d80b988f6b5820b271b40d83e8322da51a5a429605b6591" }, "downloads": -1, "filename": "cssutils-0.9.6a0-py2.5.egg", "has_sig": false, "md5_digest": "36149ab32aec03b0fd7c6fdb2250ba53", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 520043, "upload_time": "2008-12-14T17:02:28", "url": "https://files.pythonhosted.org/packages/91/00/91fcf459bad4b436824172ea5fe38872a117dbeb0ea2e3b62c703c44a930/cssutils-0.9.6a0-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "0cf1e3d3f065a5844b53b4af3ccaad94", "sha256": "6cdb592965809a4a5601ba9a009fb535c8cce60efadd5caafc7b504b19289e7a" }, "downloads": -1, "filename": "cssutils-0.9.6a0-py2.6.egg", "has_sig": false, "md5_digest": "0cf1e3d3f065a5844b53b4af3ccaad94", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 519385, "upload_time": "2008-12-14T17:00:54", "url": "https://files.pythonhosted.org/packages/31/01/8f53263e0792bcf9ee9432a83cc7513e3f4b917f08f51170c4cbe8a6610e/cssutils-0.9.6a0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "eb64d882db527b90f9ff232167de88db", "sha256": "1165fc34effd65b65963222cc102ddc2f029d972cf8f21432303c6592e9f26aa" }, "downloads": -1, "filename": "cssutils-0.9.6a0.zip", "has_sig": false, "md5_digest": "eb64d882db527b90f9ff232167de88db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1971552, "upload_time": "2008-12-14T16:59:16", "url": "https://files.pythonhosted.org/packages/e7/7e/c96357cd59b85fba203d738f90947125185cbe15878216272bf180e6a8db/cssutils-0.9.6a0.zip" } ], "0.9.6a1": [ { "comment_text": "", "digests": { "md5": "56a4ae01606c5323c015d7eda9baa217", "sha256": "01645b4fbe0db6499d148801352da7b633c074f125cb9e52d41901f47c27e099" }, "downloads": -1, "filename": "cssutils-0.9.6a1-py2.4.egg", "has_sig": false, "md5_digest": "56a4ae01606c5323c015d7eda9baa217", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 516818, "upload_time": "2009-02-07T23:04:38", "url": "https://files.pythonhosted.org/packages/ba/18/99770b9ac446c633ba3b402ec369f4f9c03d08cefd5d48ea57833a137c8a/cssutils-0.9.6a1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "225f62c841bea6b1f5820b709cd33eb1", "sha256": "18b130fb8bb17810d56d3c6cebd5b4e399e03e416daca47ced9dcb92a5cb7a8a" }, "downloads": -1, "filename": "cssutils-0.9.6a1-py2.5.egg", "has_sig": false, "md5_digest": "225f62c841bea6b1f5820b709cd33eb1", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 515623, "upload_time": "2009-02-07T23:04:07", "url": "https://files.pythonhosted.org/packages/bd/26/2c9753824954648eb5be09f17c685d644019297472b0416aec221b4bd986/cssutils-0.9.6a1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "588009726dc7869420be8d248dec4751", "sha256": "ae043643e18af1ce386ed05d990aabd53ce47016430680038abd2c4abfcffac1" }, "downloads": -1, "filename": "cssutils-0.9.6a1-py2.6.egg", "has_sig": false, "md5_digest": "588009726dc7869420be8d248dec4751", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 514940, "upload_time": "2009-02-07T23:03:15", "url": "https://files.pythonhosted.org/packages/c2/b8/8fda0c71526246c9c82c84aa25dce0bda1f722fe88773224384f7596a02c/cssutils-0.9.6a1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "7e9b56beb551cbe05aad13d9eec1cfdf", "sha256": "3263d8ebe939350d38ce893ecb7addccfeb834fff72e882cad8f6613d8701527" }, "downloads": -1, "filename": "cssutils-0.9.6a1.win32.exe", "has_sig": false, "md5_digest": "7e9b56beb551cbe05aad13d9eec1cfdf", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 300066, "upload_time": "2009-02-07T23:05:50", "url": "https://files.pythonhosted.org/packages/6e/bc/cc57d7f83e8313cd77acc5218fc75e56a9a5ef0c1b7f07ca002fa8cffb38/cssutils-0.9.6a1.win32.exe" }, { "comment_text": "", "digests": { "md5": "ac54b4e5dc0b09ab4cbf2bc88b3239ad", "sha256": "1c8234d67db9a9637c3904c94ca1df16d0fa065a1cb77030743174285120ace0" }, "downloads": -1, "filename": "cssutils-0.9.6a1.zip", "has_sig": false, "md5_digest": "ac54b4e5dc0b09ab4cbf2bc88b3239ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 548728, "upload_time": "2009-02-07T23:07:11", "url": "https://files.pythonhosted.org/packages/68/73/d2e28813afff323cacb3f5bd19b52bddbec1d2b1d59c386bbc15b0cbd4ac/cssutils-0.9.6a1.zip" } ], "0.9.6a2": [ { "comment_text": "", "digests": { "md5": "c68077d923f8c84dc8d4daaf6c055b0c", "sha256": "8c7b056a25cda21315490fd7851bc9f9ce160c4384d8bcfaea7469bf573ec09c" }, "downloads": -1, "filename": "cssutils-0.9.6a2-py2.4.egg", "has_sig": false, "md5_digest": "c68077d923f8c84dc8d4daaf6c055b0c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 520680, "upload_time": "2009-03-08T13:33:15", "url": "https://files.pythonhosted.org/packages/46/dd/2a1e66953f81aeb1e797e527fca6342ed11e00c746eb5e6b312e8d749ed8/cssutils-0.9.6a2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ae1492f041f4055e1e97b00a7f264afc", "sha256": "ed42d08d3e8dab5031edd137cd98ce9deeb3db7b287bc462499340cef9651d79" }, "downloads": -1, "filename": "cssutils-0.9.6a2-py2.5.egg", "has_sig": false, "md5_digest": "ae1492f041f4055e1e97b00a7f264afc", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 519519, "upload_time": "2009-03-08T13:32:25", "url": "https://files.pythonhosted.org/packages/77/45/ed853cd0d78855bf2a1b66d16f6e250145f2b244f16fe586ec946bcaeb74/cssutils-0.9.6a2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "bb3a2b9a1b2ba378953b5c5cbd073c8c", "sha256": "5de22300a332f708c1be278a50eab3357964333c2f8a6571020682ec8495700f" }, "downloads": -1, "filename": "cssutils-0.9.6a2-py2.6.egg", "has_sig": false, "md5_digest": "bb3a2b9a1b2ba378953b5c5cbd073c8c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 518862, "upload_time": "2009-03-08T13:31:24", "url": "https://files.pythonhosted.org/packages/19/b0/33c77a974c81c75fd9ef479b5124d92f80a1dbb25b7d24a3f2c15332e147/cssutils-0.9.6a2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "91b1fceecab5a0ce4dc006839a14b8a6", "sha256": "cd0298fa52d8ddc730c2b5542e582285a3e29a60310fc6e1e4fbb4f762307ee5" }, "downloads": -1, "filename": "cssutils-0.9.6a2.win32.exe", "has_sig": false, "md5_digest": "91b1fceecab5a0ce4dc006839a14b8a6", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 301879, "upload_time": "2009-03-08T13:34:41", "url": "https://files.pythonhosted.org/packages/bf/68/92d81d104182db2c3fcbb75dde9dcf2676e9057f9a6e6395ec522e00b945/cssutils-0.9.6a2.win32.exe" }, { "comment_text": "", "digests": { "md5": "dd824710a5915debf177afa1dc8767e3", "sha256": "285c2facfbc0193cc38dac2881c68299c6c155f68d20c76bcc13db9b9ef607dd" }, "downloads": -1, "filename": "cssutils-0.9.6a2.zip", "has_sig": false, "md5_digest": "dd824710a5915debf177afa1dc8767e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 555819, "upload_time": "2009-03-08T13:35:51", "url": "https://files.pythonhosted.org/packages/0f/ad/ea781a0d8ea127a5344b326d3907d87391fb831ce039ecda196ab93c5604/cssutils-0.9.6a2.zip" } ], "0.9.6a3": [ { "comment_text": "", "digests": { "md5": "2a52abd76bde53dfcf06468180b6310b", "sha256": "75aa7eff5e809f10bc078b833c7b84db26a03668534841f47ddf5ef406fde583" }, "downloads": -1, "filename": "cssutils-0.9.6a3-py2.4.egg", "has_sig": false, "md5_digest": "2a52abd76bde53dfcf06468180b6310b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 522408, "upload_time": "2009-04-26T19:29:36", "url": "https://files.pythonhosted.org/packages/56/18/b3e1ed8c841056773a3ec8182ec30f1297260f32e042b6b5b203c75af6cb/cssutils-0.9.6a3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "c564432dee49cd47e44f3807cae41fab", "sha256": "a0a9f5c87b92de12b0c97293fe910331c5f86daf0623dc685e81dc531d782669" }, "downloads": -1, "filename": "cssutils-0.9.6a3-py2.5.egg", "has_sig": false, "md5_digest": "c564432dee49cd47e44f3807cae41fab", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 521490, "upload_time": "2009-04-26T19:29:04", "url": "https://files.pythonhosted.org/packages/f0/3c/b20020faa1abbe232aff97e0446d2cf8911bba8eb38deec0add75116b019/cssutils-0.9.6a3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "d030c01b3395dc6dea14ab866a70fc24", "sha256": "0d087ae174b1644d792a8537ee57d428c5bc953070f0ce65f28eedef455ad615" }, "downloads": -1, "filename": "cssutils-0.9.6a3-py2.6.egg", "has_sig": false, "md5_digest": "d030c01b3395dc6dea14ab866a70fc24", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 520836, "upload_time": "2009-04-26T19:28:13", "url": "https://files.pythonhosted.org/packages/cf/64/603cdbcf734f9dd1f6eeec7919dfa6427fe5bd91e3d4867498a9fc47d7df/cssutils-0.9.6a3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "18f7a26e04fb3adf85f28b2e098a22ba", "sha256": "f910cc8126170e9636f7f2554e2fb04990ee60858e0a61dd2925939bb7cc6cfc" }, "downloads": -1, "filename": "cssutils-0.9.6a3.win32.exe", "has_sig": false, "md5_digest": "18f7a26e04fb3adf85f28b2e098a22ba", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 432845, "upload_time": "2009-04-26T19:32:10", "url": "https://files.pythonhosted.org/packages/36/79/1c92c483ea64bbbcc9fe018457369f61455859cfa4fbdd472a9ad36951ed/cssutils-0.9.6a3.win32.exe" }, { "comment_text": "", "digests": { "md5": "c1b82731e323643a04fa1f1361e32404", "sha256": "a85db74f2ba10f39c468666d634cf26ed51b3b98f8dca4f4753e57a323840b62" }, "downloads": -1, "filename": "cssutils-0.9.6a3.zip", "has_sig": false, "md5_digest": "c1b82731e323643a04fa1f1361e32404", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 558418, "upload_time": "2009-04-26T19:26:26", "url": "https://files.pythonhosted.org/packages/64/a7/32f75fd23e9220a8822d19d15a4a73d3492fd54124609d9de2828e3c851c/cssutils-0.9.6a3.zip" } ], "0.9.6a4": [ { "comment_text": "", "digests": { "md5": "a49a5ef52f974863a7a09bec66efe1dc", "sha256": "1bdfb740915c86ea72ff07a7fa90e6a8b7f06923823d8c581c2bb1a65adcf079" }, "downloads": -1, "filename": "cssutils-0.9.6a4-py2.4.egg", "has_sig": false, "md5_digest": "a49a5ef52f974863a7a09bec66efe1dc", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 524579, "upload_time": "2009-05-09T22:39:28", "url": "https://files.pythonhosted.org/packages/56/6a/82a8181340c15a5a026e8412ac56b2a24a0b3ca4134e0d8d841b45e12413/cssutils-0.9.6a4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "672ff461f6ec6aaeffd0c72a5c0918be", "sha256": "8c7ac23131fa62fbf06043088a9d67dd928af8bf22f0acf04ba9d871e50145ca" }, "downloads": -1, "filename": "cssutils-0.9.6a4-py2.5.egg", "has_sig": false, "md5_digest": "672ff461f6ec6aaeffd0c72a5c0918be", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 523470, "upload_time": "2009-05-09T22:40:45", "url": "https://files.pythonhosted.org/packages/b1/e0/4c3cae2912f60181e2def392173187d34d00cb284b6844797f4b6861a11e/cssutils-0.9.6a4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "9bfc213bb3729856da3041e4cde8d3a4", "sha256": "ca37dfdf35ed279b2f2af262e55df7a8ed01edc90d1b7d9db301a479f39a9115" }, "downloads": -1, "filename": "cssutils-0.9.6a4-py2.6.egg", "has_sig": false, "md5_digest": "9bfc213bb3729856da3041e4cde8d3a4", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 522831, "upload_time": "2009-05-09T22:41:53", "url": "https://files.pythonhosted.org/packages/95/b1/d3596c27d1a51c68d1c1e96cde6130eab7b2d7abfb522b1b550069f34d81/cssutils-0.9.6a4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "9dacb2c919f91286561dbc69eeaafb7d", "sha256": "46a5f9bb9953873e84c78fb4caf6881e0e3033abe032d9a15b125ee452898d7c" }, "downloads": -1, "filename": "cssutils-0.9.6a4.win32.exe", "has_sig": false, "md5_digest": "9dacb2c919f91286561dbc69eeaafb7d", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 433743, "upload_time": "2009-05-09T22:43:52", "url": "https://files.pythonhosted.org/packages/f6/9a/871b104e678258e1e69dcffe8ceee0e7b5b1b5cfeb2c7668c553714fe634/cssutils-0.9.6a4.win32.exe" }, { "comment_text": "", "digests": { "md5": "62c077d73853d318fd249bd3397fc5d6", "sha256": "daca6292b04fbd5edacab1199633c8b6c9bb2817c96ac34f4c723af1ffc2117e" }, "downloads": -1, "filename": "cssutils-0.9.6a4.zip", "has_sig": false, "md5_digest": "62c077d73853d318fd249bd3397fc5d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 556881, "upload_time": "2009-05-09T22:38:51", "url": "https://files.pythonhosted.org/packages/77/fb/e46824b11d11014b853cd50749c9549db87fc5ccc124872328225516e6c4/cssutils-0.9.6a4.zip" } ], "0.9.6b1": [ { "comment_text": "", "digests": { "md5": "49600ce6ff155caba82de67059cc01af", "sha256": "a64e2936fa407771addb5db84dd81f83fca24929329647d97188bb6add0ed2fd" }, "downloads": -1, "filename": "cssutils-0.9.6b1-py2.4.egg", "has_sig": false, "md5_digest": "49600ce6ff155caba82de67059cc01af", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 525091, "upload_time": "2009-06-09T20:42:27", "url": "https://files.pythonhosted.org/packages/15/e9/74771752c378e1942a0893d84175290f973b24f62c4a7d3b1f4f945e6534/cssutils-0.9.6b1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5fb9e850905667c82fe21d30f5e3c14b", "sha256": "3163d300c749a1eaed59fdd4503126a284c0c8a8df5f4205336e833181303094" }, "downloads": -1, "filename": "cssutils-0.9.6b1-py2.5.egg", "has_sig": false, "md5_digest": "5fb9e850905667c82fe21d30f5e3c14b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 523939, "upload_time": "2009-06-09T20:43:36", "url": "https://files.pythonhosted.org/packages/4a/de/5b2f64bb9b80050d3b6a23090d808b0af2142981203a62f60d72b6d234a4/cssutils-0.9.6b1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "f9141f5e8a6e8393d70a964737ea082f", "sha256": "fafbac763541955dfaf21eab8cf80367d550cb7cba8e63228cf29767dff27f64" }, "downloads": -1, "filename": "cssutils-0.9.6b1-py2.6.egg", "has_sig": false, "md5_digest": "f9141f5e8a6e8393d70a964737ea082f", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 523291, "upload_time": "2009-06-09T20:44:24", "url": "https://files.pythonhosted.org/packages/a6/db/f1045d4c81e9625725f2a2cee9cc1dc3a74a0c72fe70e2420d5571afdf11/cssutils-0.9.6b1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "9e6dcf7f303944d60a38631dbfa0e082", "sha256": "5dba83e56be931ddd8960dd3e17a4a0b0564ad24d7f9f11d985a463b34f69a3c" }, "downloads": -1, "filename": "cssutils-0.9.6b1.win32.exe", "has_sig": false, "md5_digest": "9e6dcf7f303944d60a38631dbfa0e082", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 434084, "upload_time": "2009-06-09T20:45:39", "url": "https://files.pythonhosted.org/packages/17/5c/1c762fafccdbea5f539d2c44ba6e4be249918295d95e077a045d4b2b5214/cssutils-0.9.6b1.win32.exe" }, { "comment_text": "", "digests": { "md5": "1ef2b7e7898ca1d778703e34f8f3a46b", "sha256": "e94b94d9e530e18eb888e685a8a2cec19bfde1ec79bd2b6a8fc96106189ce299" }, "downloads": -1, "filename": "cssutils-0.9.6b1.zip", "has_sig": false, "md5_digest": "1ef2b7e7898ca1d778703e34f8f3a46b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 558216, "upload_time": "2009-06-09T20:40:42", "url": "https://files.pythonhosted.org/packages/ab/05/f163f178484c50373d12cfd76871d36c07ca9e1ffdbd8a5e78853a6678b1/cssutils-0.9.6b1.zip" }, { "comment_text": "JYTHON 2.5RC4 EGG!!!", "digests": { "md5": "a61002d77adcf263a4b35677d4b438f8", "sha256": "1558c73e3ad8a24bd939cd750c8c30b55481827fe8c618c47044b37a57b8a8eb" }, "downloads": -1, "filename": "cssutils-0.9.6b2-py2.5.egg", "has_sig": false, "md5_digest": "a61002d77adcf263a4b35677d4b438f8", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 930090, "upload_time": "2009-06-09T20:47:30", "url": "https://files.pythonhosted.org/packages/68/cb/9da3327ae173d580b1247126b610a013bb0bf041cf4821de5afa6124f386/cssutils-0.9.6b2-py2.5.egg" } ], "0.9.6b3": [ { "comment_text": "", "digests": { "md5": "74242de723c18dddfacafb93783c3f02", "sha256": "f973cef5626b20b5f26cf9f02e095636e1c878e603b62adc9bb33d35ec9ecd03" }, "downloads": -1, "filename": "cssutils-0.9.6b3-py2.4.egg", "has_sig": false, "md5_digest": "74242de723c18dddfacafb93783c3f02", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 539701, "upload_time": "2009-08-02T18:58:43", "url": "https://files.pythonhosted.org/packages/0c/c1/7e25836d2b998929df50e539e5f4935d08f3c1b7c42125946ecad3bd23c9/cssutils-0.9.6b3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "229d40b1a902fe8135dc6d08bd2de454", "sha256": "19d2b114439ca78822a688bacca804f6cde3f4f9b67a5352a70195b45022c67f" }, "downloads": -1, "filename": "cssutils-0.9.6b3-py2.5.egg", "has_sig": false, "md5_digest": "229d40b1a902fe8135dc6d08bd2de454", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 538387, "upload_time": "2009-08-02T18:56:15", "url": "https://files.pythonhosted.org/packages/b7/99/5d11afe42632a6f121e2fb791b368dd91fd9f0efc14b5cfca7c9915b8177/cssutils-0.9.6b3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "2fb50038cd1309be4513c45887e80996", "sha256": "9ad22cb7586978379efa26e950f576ccc11a35da8bc9b7bf52a526480c11e40f" }, "downloads": -1, "filename": "cssutils-0.9.6b3-py2.6.egg", "has_sig": false, "md5_digest": "2fb50038cd1309be4513c45887e80996", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 537706, "upload_time": "2009-08-02T18:55:15", "url": "https://files.pythonhosted.org/packages/66/01/88c19c39b49605867b86667372746c186dcfc82fb23279fa02d78999a0aa/cssutils-0.9.6b3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "c28108c0f837bf3a2036fa3604c92581", "sha256": "3eec937cfe22b1cbd1a66bce210e7efe31bf913719a08e81a2ca78d7db1995fb" }, "downloads": -1, "filename": "cssutils-0.9.6b3.win32.exe", "has_sig": false, "md5_digest": "c28108c0f837bf3a2036fa3604c92581", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 440579, "upload_time": "2009-08-02T18:59:16", "url": "https://files.pythonhosted.org/packages/9a/39/c1a485385afd0fd5538f00886266a70a2f9f88de0433fe40fc61f86e6bf5/cssutils-0.9.6b3.win32.exe" }, { "comment_text": "", "digests": { "md5": "c9dc89d4906a34db2cc42954c978623a", "sha256": "ff957886ba4b21eb8cdcdb93f46f5f0efaa41ebc4c231dab9679aaa6d7d4855d" }, "downloads": -1, "filename": "cssutils-0.9.6b3.zip", "has_sig": false, "md5_digest": "c9dc89d4906a34db2cc42954c978623a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 575446, "upload_time": "2009-08-02T18:54:33", "url": "https://files.pythonhosted.org/packages/72/c7/e96942fdaf18c6cadf0daed7ca5094a9e9fbbe36093a5726428165547942/cssutils-0.9.6b3.zip" } ], "0.9.6b4": [ { "comment_text": "", "digests": { "md5": "02fc2d6a27f1789164bbac1ebae37722", "sha256": "cca3084136fe424382aea09b925f57ec7fe1f75149f360ede1b88191e94fe44d" }, "downloads": -1, "filename": "cssutils-0.9.6b4-py2.4.egg", "has_sig": false, "md5_digest": "02fc2d6a27f1789164bbac1ebae37722", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 540873, "upload_time": "2009-08-29T15:09:50", "url": "https://files.pythonhosted.org/packages/f6/0e/f146812b1c867cc4f7ccb4fdfeda7701e3dbacf0825d44c685dc3a2f5aaa/cssutils-0.9.6b4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "231dc68fe63afec621d6f558aaa5e795", "sha256": "833a5f7520b80e76239693b231355884e7045af0fd6f20f9a5642708b3ac1327" }, "downloads": -1, "filename": "cssutils-0.9.6b4-py2.5.egg", "has_sig": false, "md5_digest": "231dc68fe63afec621d6f558aaa5e795", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 539458, "upload_time": "2009-08-29T15:09:17", "url": "https://files.pythonhosted.org/packages/51/18/0f4346857bdbb4f33b25d4e0bea53e24f4839d153d2a2458cdd2861eb3e2/cssutils-0.9.6b4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "57fd08d8e5110146439bb41e10bd2968", "sha256": "ae8c29bb2aeb3ee378d4d51fbec837b159860426cce97555ed9e28c97acca5ba" }, "downloads": -1, "filename": "cssutils-0.9.6b4-py2.6.egg", "has_sig": false, "md5_digest": "57fd08d8e5110146439bb41e10bd2968", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 538784, "upload_time": "2009-08-29T15:08:38", "url": "https://files.pythonhosted.org/packages/11/d1/bfd9284ef66c491b7138b2423e24f63befe5cad067f7328fb24927aa0a46/cssutils-0.9.6b4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "c68d913f66a0c66be7a5a468e7eb08a6", "sha256": "482ce8b495a804ea518dc15f82cc8effaea65c2a6343efa53115328692fffe26" }, "downloads": -1, "filename": "cssutils-0.9.6b4.win32.exe", "has_sig": false, "md5_digest": "c68d913f66a0c66be7a5a468e7eb08a6", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 441005, "upload_time": "2009-08-29T15:11:47", "url": "https://files.pythonhosted.org/packages/81/87/17f1c3e1937c888269d05a3097d5e623300ca53ed5efd964fc005de5fa64/cssutils-0.9.6b4.win32.exe" }, { "comment_text": "", "digests": { "md5": "243d8dd47b57c2a25d075705eda4e446", "sha256": "8f61907c4324eeb9184078b929ee13eabe59b661582ce6c266739a52d01d8ddd" }, "downloads": -1, "filename": "cssutils-0.9.6b4.zip", "has_sig": false, "md5_digest": "243d8dd47b57c2a25d075705eda4e446", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 428382, "upload_time": "2009-08-29T15:10:33", "url": "https://files.pythonhosted.org/packages/59/96/f23bcdada5ce196108b09795a76a4971e35a7912cf1d21cb1a055d3f3ffc/cssutils-0.9.6b4.zip" } ], "0.9.6b5": [ { "comment_text": "", "digests": { "md5": "ed9a2b5932531c30b28feb6521eafd38", "sha256": "bc334c94c3c69f523c39507cb7cb0ec6fc0342605b262e92724944a2356c2aeb" }, "downloads": -1, "filename": "cssutils-0.9.6b5-py2.4.egg", "has_sig": false, "md5_digest": "ed9a2b5932531c30b28feb6521eafd38", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 540868, "upload_time": "2009-08-30T12:44:06", "url": "https://files.pythonhosted.org/packages/e2/c0/1b5fad414e09781062c5e85d6046d109f92b48ba1a82cc0faf874ebc12c2/cssutils-0.9.6b5-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "3f47f1db1496c736a1e49266552647e3", "sha256": "02b76f685d4213dbc289d2830f1de62f3945bd637360e6712343cdd09d28c4e2" }, "downloads": -1, "filename": "cssutils-0.9.6b5-py2.5.egg", "has_sig": false, "md5_digest": "3f47f1db1496c736a1e49266552647e3", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 539454, "upload_time": "2009-08-30T12:43:03", "url": "https://files.pythonhosted.org/packages/fc/a3/12dad24ddfc6e86a6a78379050432b113ca3f7452212d043037541bbebf7/cssutils-0.9.6b5-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "ac5e7f6a2c1f7b2f1bccd47742d4ae1a", "sha256": "f5c07090dd67a582a2864303c8fec66128b9bf269aaf406a9755ccf36f2cb1f5" }, "downloads": -1, "filename": "cssutils-0.9.6b5-py2.6.egg", "has_sig": false, "md5_digest": "ac5e7f6a2c1f7b2f1bccd47742d4ae1a", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 538780, "upload_time": "2009-08-30T12:42:14", "url": "https://files.pythonhosted.org/packages/4a/78/31a60abbc50612d7814da9fad22fb496968bc09ed9d8fb824d8d1f8bd28a/cssutils-0.9.6b5-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "9e68941c38ae974e6d9b9b0b62091a3d", "sha256": "254d77d21217343dd62799c9ef19d868f54fbb8336d013af4552e31a2c912127" }, "downloads": -1, "filename": "cssutils-0.9.6b5.win32.exe", "has_sig": false, "md5_digest": "9e68941c38ae974e6d9b9b0b62091a3d", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 441003, "upload_time": "2009-08-30T12:46:59", "url": "https://files.pythonhosted.org/packages/96/ef/6f69f79d73ce2a80a0fbad67c640ad1af911727e670c8cfb67f701498e13/cssutils-0.9.6b5.win32.exe" }, { "comment_text": "", "digests": { "md5": "b2f7a8ca734db4bbcb7bb34ed7031100", "sha256": "248ada5c5976ef1c921e5419fd5256a9e88b011105ba053b78dde67907f0132b" }, "downloads": -1, "filename": "cssutils-0.9.6b5.zip", "has_sig": false, "md5_digest": "b2f7a8ca734db4bbcb7bb34ed7031100", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 428412, "upload_time": "2009-08-30T12:49:03", "url": "https://files.pythonhosted.org/packages/51/ec/3508bfd1bbd02fbdcaaafa784fcc592d958c8f9c790c327cd8e68589c291/cssutils-0.9.6b5.zip" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "c618a378b6b235955ff578777884f476", "sha256": "81687fc87bb48a5c0cb550df8ca56270ac4014d4e2c024d56dd3f7058d241cfd" }, "downloads": -1, "filename": "cssutils-0.9.7-py2.4.egg", "has_sig": false, "md5_digest": "c618a378b6b235955ff578777884f476", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 359265, "upload_time": "2010-11-27T20:27:01", "url": "https://files.pythonhosted.org/packages/12/ce/8e1107eecc82d39c7a101b59a253399d89fd66a659a3af98d4b29ac768f3/cssutils-0.9.7-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "d4e0c450ca5f9e701e73f8eb114655c7", "sha256": "49c20e91a5df54acedae1eb89e7963970e90dfa42fab913bdcf71a81cbbc031b" }, "downloads": -1, "filename": "cssutils-0.9.7-py2.5.egg", "has_sig": false, "md5_digest": "d4e0c450ca5f9e701e73f8eb114655c7", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 361580, "upload_time": "2010-11-27T20:27:38", "url": "https://files.pythonhosted.org/packages/28/8b/5ff2ca827138c8557cd41cdbee278ca010b908ff2405ce230f17d78d0640/cssutils-0.9.7-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "6fc9ef19579645a97d3f7c028f35d54c", "sha256": "03c7c91ff55cb3acbf9894a7cab4440e6930b20bc9223951b4792b590f590c29" }, "downloads": -1, "filename": "cssutils-0.9.7-py2.6.egg", "has_sig": false, "md5_digest": "6fc9ef19579645a97d3f7c028f35d54c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 361381, "upload_time": "2010-11-27T20:28:11", "url": "https://files.pythonhosted.org/packages/90/09/2200ed7c7a67083d4bf519e02fc6bba7be23af8752b2a1fd3a59f8cd2f6c/cssutils-0.9.7-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "20d3580188f038b48501c4ad8c6d0087", "sha256": "9be935b968312ea8bbfa37c15eb684ebf113074675bc74945083a2bd281acdc6" }, "downloads": -1, "filename": "cssutils-0.9.7-py2.7.egg", "has_sig": false, "md5_digest": "20d3580188f038b48501c4ad8c6d0087", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 360728, "upload_time": "2010-11-27T20:28:48", "url": "https://files.pythonhosted.org/packages/ae/3f/c1689085ed9f3ff1bd84d01f672f4cfb9f3c517371c925274ac06dc34359/cssutils-0.9.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1b84cc88c97998570d220fc806359497", "sha256": "4513bcae431429d2ec5b308b7588055808ef310d87109445a94a8dcd45d22ed6" }, "downloads": -1, "filename": "cssutils-0.9.7.win-amd64.exe", "has_sig": false, "md5_digest": "1b84cc88c97998570d220fc806359497", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 401381, "upload_time": "2010-11-27T20:30:17", "url": "https://files.pythonhosted.org/packages/b5/94/a7045720d3321a00acb8510e0a3751fc11a9dfa97d8d4a987ffacee096ba/cssutils-0.9.7.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "69e93d7edb30365dd6712d62df0850ed", "sha256": "2160d5a183862f3a91734f22391e937ff9accf115fd767705577ddd7ddbcb38b" }, "downloads": -1, "filename": "cssutils-0.9.7.zip", "has_sig": false, "md5_digest": "69e93d7edb30365dd6712d62df0850ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 447664, "upload_time": "2010-11-27T20:21:51", "url": "https://files.pythonhosted.org/packages/23/fa/1fdc0ab33c23d39552473263751c5b4aa484452493411faaaea39d4fe633/cssutils-0.9.7.zip" } ], "0.9.7a2": [ { "comment_text": "", "digests": { "md5": "0be77c5b4038df02f3f903617a287833", "sha256": "3325aa344cf93d3d1a190ec0a09d2e9c6db815cbfe1277a641929e17a3194d2d" }, "downloads": -1, "filename": "cssutils-0.9.7a2-py2.4.egg", "has_sig": false, "md5_digest": "0be77c5b4038df02f3f903617a287833", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 569237, "upload_time": "2009-12-30T22:51:57", "url": "https://files.pythonhosted.org/packages/5c/ae/b6e440a190efe71fe0e228da361a3c5e16d192292ba6325871fa8c0b9009/cssutils-0.9.7a2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "cc873928088a7ec633c8d0d65ba2c56c", "sha256": "8054dc0a7619a8a9aae5e8ee83a03176a498fdd597a54625708e64c4f5109bcf" }, "downloads": -1, "filename": "cssutils-0.9.7a2-py2.5.egg", "has_sig": false, "md5_digest": "cc873928088a7ec633c8d0d65ba2c56c", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 572780, "upload_time": "2009-12-30T22:50:28", "url": "https://files.pythonhosted.org/packages/49/d1/8cbb9f3658f9c60230ea7b7ecce4c60135bc39834e816577533c94f149be/cssutils-0.9.7a2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "c11bd5b7822959bc6fcbd71b64c408f4", "sha256": "bbcb4fe867fed95d637556c4fd8c0a064981041dab41ca5a87b9d42fbef6eca9" }, "downloads": -1, "filename": "cssutils-0.9.7a2-py2.6.egg", "has_sig": false, "md5_digest": "c11bd5b7822959bc6fcbd71b64c408f4", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 572461, "upload_time": "2009-12-30T22:47:23", "url": "https://files.pythonhosted.org/packages/4b/e3/09e8b95c39d54d070de3b7f791f87c37a615e430bf0a16c49329f285564b/cssutils-0.9.7a2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "ef1a3cb8404717fd71061e87ba43bbb5", "sha256": "cd90554868b06b77925383661f9326e335448de6526ef621a5e4471ec70136cf" }, "downloads": -1, "filename": "cssutils-0.9.7a2.win-amd64.exe", "has_sig": false, "md5_digest": "ef1a3cb8404717fd71061e87ba43bbb5", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 484721, "upload_time": "2009-12-30T22:53:55", "url": "https://files.pythonhosted.org/packages/4d/f3/85991bd4660a40ab72c6893e51549025e06839ca104dde6b66a0ca38f500/cssutils-0.9.7a2.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "fb6875e8e3024ceca29ca04a98c8740b", "sha256": "075873f3693ac1f4e643b046d86c260f48ae853a651f0eec93f7330831091719" }, "downloads": -1, "filename": "cssutils-0.9.7a2.zip", "has_sig": false, "md5_digest": "fb6875e8e3024ceca29ca04a98c8740b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 545029, "upload_time": "2009-12-30T22:46:19", "url": "https://files.pythonhosted.org/packages/97/40/767d6ba445634224661cfbe0671edaf9c61c6cb3770b4ab2a686cc16c306/cssutils-0.9.7a2.zip" } ], "0.9.7a3": [ { "comment_text": "", "digests": { "md5": "78a0dabdeef6bcae4eb461042687a6cc", "sha256": "bf02c1c79ea591c381f700a0699afafaa338be081c6fde1f531f175163a72137" }, "downloads": -1, "filename": "cssutils-0.9.7a3-py2.4.egg", "has_sig": false, "md5_digest": "78a0dabdeef6bcae4eb461042687a6cc", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 572297, "upload_time": "2010-03-14T19:36:41", "url": "https://files.pythonhosted.org/packages/c8/44/d1fffff8e5781451296fb0683f6cd0466a00fcc61276bb7404b532ab643c/cssutils-0.9.7a3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "a7eaab99622468a456d1270547a6004b", "sha256": "7e916f06fcd42179f42d514143320a20f8c4e20393b9da44422fa0c42e8a5171" }, "downloads": -1, "filename": "cssutils-0.9.7a3-py2.5.egg", "has_sig": false, "md5_digest": "a7eaab99622468a456d1270547a6004b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 575840, "upload_time": "2010-03-14T19:41:07", "url": "https://files.pythonhosted.org/packages/16/4a/00469b503f7dc449008fc57b8e8c3c955531c23fd980513d37ab8b84cc7b/cssutils-0.9.7a3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "fed41a8a8f8a3e8813fb28bdd3d22718", "sha256": "1991acf308edcc5290d5c0acd8425efa0849f35726bd64e108b9c88e130b58cb" }, "downloads": -1, "filename": "cssutils-0.9.7a3-py2.6.egg", "has_sig": false, "md5_digest": "fed41a8a8f8a3e8813fb28bdd3d22718", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 575525, "upload_time": "2010-03-14T19:41:55", "url": "https://files.pythonhosted.org/packages/0d/aa/d477817d4720953397be03da76754d340a3ffbd94210def4f88f178c86da/cssutils-0.9.7a3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "973bf3667ab12656c0ed35e87efed437", "sha256": "ad054f5346c13e73e0dead6c1abb303c7637f77a65a87dd2e3dbb0dc70dc7084" }, "downloads": -1, "filename": "cssutils-0.9.7a3.win-amd64.exe", "has_sig": false, "md5_digest": "973bf3667ab12656c0ed35e87efed437", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 486553, "upload_time": "2010-03-14T19:43:20", "url": "https://files.pythonhosted.org/packages/d4/07/d1b233025ed0e25c3b29b3e0c31bef534c4a93859b08885102bc60778962/cssutils-0.9.7a3.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "6a71b13dd8ab4011af969a9801a55634", "sha256": "6bfcb3906b0278cfdf53a36197e193f34a10f4dd5f7b370bb7769f2ab1d61a92" }, "downloads": -1, "filename": "cssutils-0.9.7a3.zip", "has_sig": false, "md5_digest": "6a71b13dd8ab4011af969a9801a55634", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 549141, "upload_time": "2010-03-14T19:36:03", "url": "https://files.pythonhosted.org/packages/03/84/9d105f1c5e2befc54984d884a68522ecfa3288e21b707aa414b19433a284/cssutils-0.9.7a3.zip" } ], "0.9.7a4": [ { "comment_text": "", "digests": { "md5": "088cd34b35dd432a3d54a7030b6f550f", "sha256": "003d186d1e51ec8e1d3fdc635973d913f91b3095a939a170aa8945a53829dd3a" }, "downloads": -1, "filename": "cssutils-0.9.7a4-py2.4.egg", "has_sig": false, "md5_digest": "088cd34b35dd432a3d54a7030b6f550f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 579097, "upload_time": "2010-03-23T21:58:52", "url": "https://files.pythonhosted.org/packages/6b/99/a63232584ea8234ccbfe7f2946efc7d180c9a27b70ad7686875fccd57215/cssutils-0.9.7a4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5afa0d3d6b960ac3c03aede9159db387", "sha256": "694ebb04c7cac7fb5785a41d3106546837e289524befe8a0defbb807809fac15" }, "downloads": -1, "filename": "cssutils-0.9.7a4-py2.5.egg", "has_sig": false, "md5_digest": "5afa0d3d6b960ac3c03aede9159db387", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 583252, "upload_time": "2010-03-23T22:00:20", "url": "https://files.pythonhosted.org/packages/75/f9/d457228bfea8b9508f91bec5730190f508980aabd5b9796ffc18f5bfa393/cssutils-0.9.7a4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "44f12031bca99016f508e89d3ef59c81", "sha256": "f5de25973ccd4875d575a36c8645253304e692cc9a65fcf99a5ae2c52b3afc50" }, "downloads": -1, "filename": "cssutils-0.9.7a4-py2.6.egg", "has_sig": false, "md5_digest": "44f12031bca99016f508e89d3ef59c81", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 582956, "upload_time": "2010-03-23T22:01:17", "url": "https://files.pythonhosted.org/packages/f4/1a/ee877d471814be1efa027917deca79358c0719de4b9bad4d2e564fdc1b48/cssutils-0.9.7a4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "a17e778d8d91962d548133b186301277", "sha256": "d2bbe6be18122e3cc6092e90a8dfe476e971cff1b00a7449bbe6328fad65bb7c" }, "downloads": -1, "filename": "cssutils-0.9.7a4.win-amd64.exe", "has_sig": false, "md5_digest": "a17e778d8d91962d548133b186301277", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 489691, "upload_time": "2010-03-23T22:01:59", "url": "https://files.pythonhosted.org/packages/b0/d5/324f1e723885b735ed9b3e950310f93bd1bd5b75d7b6ebbea59b97d329b4/cssutils-0.9.7a4.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "db34b0b975e0ccc59b116d56ed934dee", "sha256": "0c1e32af8476df5851e93043de048520b256e1d29e5799099b2585665dad4ff4" }, "downloads": -1, "filename": "cssutils-0.9.7a4.zip", "has_sig": false, "md5_digest": "db34b0b975e0ccc59b116d56ed934dee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 557824, "upload_time": "2010-03-23T21:57:23", "url": "https://files.pythonhosted.org/packages/9e/78/6899ad2271a5e24f5729d1e8d7fa622d8a9a2324cb1e379716793aa9025e/cssutils-0.9.7a4.zip" } ], "0.9.7a5": [], "0.9.7a6": [ { "comment_text": "", "digests": { "md5": "0652c36786da0c5baad19165e9a33644", "sha256": "98e657ad743eebe1fddd13477f1377deb0f18574af58460b9b551fd0951a1fc7" }, "downloads": -1, "filename": "cssutils-0.9.7a6-py2.4.egg", "has_sig": false, "md5_digest": "0652c36786da0c5baad19165e9a33644", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 357728, "upload_time": "2010-05-23T22:06:42", "url": "https://files.pythonhosted.org/packages/1e/96/80fb840a9dc146dcd86b7b9143e5d82318011adae0ac74a72d582842ef80/cssutils-0.9.7a6-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "388006d71d1e0b5abf456bf6210e0e70", "sha256": "90e42a55a8f406f7dfc13a412fa8aa6531d714ba2078617156ebd0e4c8ab84e9" }, "downloads": -1, "filename": "cssutils-0.9.7a6-py2.5.egg", "has_sig": false, "md5_digest": "388006d71d1e0b5abf456bf6210e0e70", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 359993, "upload_time": "2010-05-23T22:06:00", "url": "https://files.pythonhosted.org/packages/5f/04/b6486c6e57575ec091af48fcc32b78fc29c15de743b015978c27b74176b6/cssutils-0.9.7a6-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "7c7093b60abfeea5c1c1fda1f2abe010", "sha256": "ca70b5e58283ae1171dd19bc4694ec484a7e36bae018f7698dcc62b525903b82" }, "downloads": -1, "filename": "cssutils-0.9.7a6-py2.6.egg", "has_sig": false, "md5_digest": "7c7093b60abfeea5c1c1fda1f2abe010", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 359802, "upload_time": "2010-05-23T22:05:24", "url": "https://files.pythonhosted.org/packages/37/ed/4178f3e560d0fb9166f25c3f2a43e47cb8bbf7285c8fea822df6030c7cfc/cssutils-0.9.7a6-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "a66fac9b05091c909c663d923f565ce9", "sha256": "2e0be068d7cb720e9910e07d644955d4bd4918b1d9500aaddb60a204e7194c5f" }, "downloads": -1, "filename": "cssutils-0.9.7a6.win-amd64.exe", "has_sig": false, "md5_digest": "a66fac9b05091c909c663d923f565ce9", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 399216, "upload_time": "2010-05-23T22:09:34", "url": "https://files.pythonhosted.org/packages/3a/ed/b41a62febdb937a2c4f50984722197e586eaeedd3c4e345f057c7e23948f/cssutils-0.9.7a6.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "598a09a4ad6911e63ec992bee49ae1b0", "sha256": "fc4d2d9419b12544cbef1417c628f27b88416d63cba36e76e2c24e20e849b6c4" }, "downloads": -1, "filename": "cssutils-0.9.7a6.zip", "has_sig": false, "md5_digest": "598a09a4ad6911e63ec992bee49ae1b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 543704, "upload_time": "2010-05-23T22:08:31", "url": "https://files.pythonhosted.org/packages/db/c5/d70df38f74d9641b2441ec6369c6c9ede7021d4a6a15825c586b03953aa9/cssutils-0.9.7a6.zip" } ], "0.9.7b1": [ { "comment_text": "", "digests": { "md5": "0a48c1f59e0bb3b51677533bfe7d3b2b", "sha256": "5847bf736ecb4f3923001a70f50a5c87c09faf74c7af978a5801c167d240031e" }, "downloads": -1, "filename": "cssutils-0.9.7b1-py2.4.egg", "has_sig": false, "md5_digest": "0a48c1f59e0bb3b51677533bfe7d3b2b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 357808, "upload_time": "2010-05-30T18:57:13", "url": "https://files.pythonhosted.org/packages/9a/0a/f7348cfe68d4dee194ca95733fe27eb9cb4690a96aaadf9349e80c905765/cssutils-0.9.7b1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "3662b012514484653bcf80c777a2dd10", "sha256": "f89df0318186a98ec1afdc199e2e6bdd208a186120ccc2a26e548035e0908252" }, "downloads": -1, "filename": "cssutils-0.9.7b1-py2.5.egg", "has_sig": false, "md5_digest": "3662b012514484653bcf80c777a2dd10", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 360109, "upload_time": "2010-05-30T18:58:09", "url": "https://files.pythonhosted.org/packages/0a/e2/6ce57abe53bf14c85f54033451c86c15c770930e9c42f8b39f0cc820547b/cssutils-0.9.7b1-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "4726e9162bcd0fd0af280a61f2697d0e", "sha256": "fc3f581aa99d6396afe6650c471e8e15128a67994f1269548ffd33a91afb607d" }, "downloads": -1, "filename": "cssutils-0.9.7b1-py2.6.egg", "has_sig": false, "md5_digest": "4726e9162bcd0fd0af280a61f2697d0e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 359906, "upload_time": "2010-05-30T18:59:23", "url": "https://files.pythonhosted.org/packages/73/a6/ba691a0adc49246951c1f4efbb4c05000c64f337acf86d7524ab6e6dd17b/cssutils-0.9.7b1-py2.6.egg" }, { "comment_text": "Win64", "digests": { "md5": "09c0912fa49af11f2f1f24cfd79ba0e9", "sha256": "3fb20f51979616618e08b6ae49bfa1c7448de449e0c4a2d610dc2958321fe4c3" }, "downloads": -1, "filename": "cssutils-0.9.7b1.win-amd64.exe", "has_sig": false, "md5_digest": "09c0912fa49af11f2f1f24cfd79ba0e9", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 399483, "upload_time": "2010-05-30T19:00:04", "url": "https://files.pythonhosted.org/packages/9e/ba/5920624ee91764dec398c50fd903a70cd7ab445fc6156920ab8e8d3ce746/cssutils-0.9.7b1.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "738b13868521609f1af75905ebab8a6c", "sha256": "075992d515406169806aa401da3d5c62e2c1e8630aaf3509d5b326ce03b497b7" }, "downloads": -1, "filename": "cssutils-0.9.7b1.zip", "has_sig": false, "md5_digest": "738b13868521609f1af75905ebab8a6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 550743, "upload_time": "2010-05-30T18:54:19", "url": "https://files.pythonhosted.org/packages/0f/12/da5209367e68e11ba44ebe67b9c3b42fe790dae4e840245603af40eb0aca/cssutils-0.9.7b1.zip" } ], "0.9.7b2": [ { "comment_text": "", "digests": { "md5": "7001a44d442df23006639789c9557736", "sha256": "8f1722fe9a0726bca60a066664a5d6b80cc1fda9fdf64b1c1292fc4edfade2a3" }, "downloads": -1, "filename": "cssutils-0.9.7b2-py2.4.egg", "has_sig": false, "md5_digest": "7001a44d442df23006639789c9557736", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 358001, "upload_time": "2010-06-06T15:43:38", "url": "https://files.pythonhosted.org/packages/da/7d/18965e3cc3b5942d6ee6e3358039fe1c80fb17291e8b49dc1f0cef0658cb/cssutils-0.9.7b2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "d2d92b8c7115135c4359c63a74e77e2d", "sha256": "2d057e2d72366564a4d3bb7ffd7da67321818876335f156b16244dd253d76b88" }, "downloads": -1, "filename": "cssutils-0.9.7b2-py2.5.egg", "has_sig": false, "md5_digest": "d2d92b8c7115135c4359c63a74e77e2d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 360282, "upload_time": "2010-06-06T15:44:44", "url": "https://files.pythonhosted.org/packages/bd/fe/61a2abe737b887c05bbba03eac2aa77b795acee9a0a058bb133719d017b0/cssutils-0.9.7b2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "b85fc38aa7cdc3e12963fc1a9f89b0b9", "sha256": "47ab8465585c65a24e12382bab9217e81d4b873762bc00d282cd3266bb8bcdb1" }, "downloads": -1, "filename": "cssutils-0.9.7b2-py2.6.egg", "has_sig": false, "md5_digest": "b85fc38aa7cdc3e12963fc1a9f89b0b9", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 360072, "upload_time": "2010-06-06T15:45:30", "url": "https://files.pythonhosted.org/packages/66/6b/49522c0aa64060d8e87f3d20d5d1ec4f05bc7156c92d8b2897bcec908c7b/cssutils-0.9.7b2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "daa64397fc7b20d7f9baec71c0d99776", "sha256": "447665a282d904c30c8da3b31a49343a06488df13e3af1dbce87cb243e461501" }, "downloads": -1, "filename": "cssutils-0.9.7b2.win-amd64.exe", "has_sig": false, "md5_digest": "daa64397fc7b20d7f9baec71c0d99776", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 399617, "upload_time": "2010-06-06T15:47:08", "url": "https://files.pythonhosted.org/packages/71/81/849ccecefdabde12cff69aa2bedeff3122201310addd546b438bd95ea77f/cssutils-0.9.7b2.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "bc9ee9707a60ff65fee558955d9db09f", "sha256": "049d2d89a3523639567766aa6a47570bd8aa97fad3299a47c0d5eda833d28ae9" }, "downloads": -1, "filename": "cssutils-0.9.7b2.zip", "has_sig": false, "md5_digest": "bc9ee9707a60ff65fee558955d9db09f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 551554, "upload_time": "2010-06-06T15:42:43", "url": "https://files.pythonhosted.org/packages/56/33/f72c991b3229b71cd72c24113de98c92c235b795ffbb90d72b2aec64e5db/cssutils-0.9.7b2.zip" } ], "0.9.7b3": [ { "comment_text": "", "digests": { "md5": "ca1da55ea2413b86ac328a4d79c53e22", "sha256": "932d00b4c01471eb5f4b566377fe3f779e8f466418411b8d526a09c6f6ed2640" }, "downloads": -1, "filename": "cssutils-0.9.7b3-py2.4.egg", "has_sig": false, "md5_digest": "ca1da55ea2413b86ac328a4d79c53e22", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 358516, "upload_time": "2010-06-20T18:32:26", "url": "https://files.pythonhosted.org/packages/cb/e6/6c4afee4b2389a527b8a02a42a18aab21ffb903108d525f30df4862392f2/cssutils-0.9.7b3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "70bca6488dbbcea3937ab5a3175e831c", "sha256": "cb300e2d2852cae87fb7a8b7e25fb691ca5a1641f2b80f3e463a255195400c38" }, "downloads": -1, "filename": "cssutils-0.9.7b3-py2.5.egg", "has_sig": false, "md5_digest": "70bca6488dbbcea3937ab5a3175e831c", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 360759, "upload_time": "2010-06-20T18:34:25", "url": "https://files.pythonhosted.org/packages/bd/9c/e5b007b685ca99c1fcd3db90cf2bac9323becaa00666d76e7952058f5e5b/cssutils-0.9.7b3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "f6123569ef6ebaec78c85acb4ad541a9", "sha256": "52503588a11d091ecb4a41ce6b0e6015f9354623689398fc0f67316da7a9b99a" }, "downloads": -1, "filename": "cssutils-0.9.7b3-py2.6.egg", "has_sig": false, "md5_digest": "f6123569ef6ebaec78c85acb4ad541a9", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 360552, "upload_time": "2010-06-20T18:34:58", "url": "https://files.pythonhosted.org/packages/de/97/dcc559502c02ff0b9c55120d9b1253024d89dcaa575a619dcb1be23fcc79/cssutils-0.9.7b3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "687d4a96d45a7cf2ea4fdef147d79dfa", "sha256": "5a150436fa23064e44bb8306fdb0dbbce90e708e6dc3a15f5fcc81f684dc2a99" }, "downloads": -1, "filename": "cssutils-0.9.7b3-py2.7.egg", "has_sig": false, "md5_digest": "687d4a96d45a7cf2ea4fdef147d79dfa", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 359934, "upload_time": "2010-07-05T21:31:07", "url": "https://files.pythonhosted.org/packages/89/4a/71eb0c60f302a3b7517c514a050d15d645a5983064554169610c5666ce2c/cssutils-0.9.7b3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8e9c9d39b4a3341fe834bce7d61e9a21", "sha256": "6661516344cd7dc94c089f5c24e5646ef3677f5b13031d3778a6fb1812e75b6c" }, "downloads": -1, "filename": "cssutils-0.9.7b3.win-amd64.exe", "has_sig": false, "md5_digest": "8e9c9d39b4a3341fe834bce7d61e9a21", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 399782, "upload_time": "2010-06-20T18:35:53", "url": "https://files.pythonhosted.org/packages/77/33/eb77f42db36fb0967305a164f4e75400a06ad814a8d3ab2626caf10b276a/cssutils-0.9.7b3.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "4539c061bb03612cc3a0e278c44e8f96", "sha256": "af6edb8a8325009191dac318d8acc5adc3929429946759e3dce94f9edba02e6f" }, "downloads": -1, "filename": "cssutils-0.9.7b3.zip", "has_sig": false, "md5_digest": "4539c061bb03612cc3a0e278c44e8f96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 552311, "upload_time": "2010-06-20T18:31:34", "url": "https://files.pythonhosted.org/packages/34/36/fdcf68a6d4200b14403d1b9446100d56d2772a63d01636ead3b89a69b908/cssutils-0.9.7b3.zip" } ], "0.9.7b4": [ { "comment_text": "", "digests": { "md5": "2cc328524093b55f46b46cacc23a5d4e", "sha256": "cdcf7fe0dba45363d3efa1429296f34b4e5c109947f218c8563b452902953806" }, "downloads": -1, "filename": "cssutils-0.9.7b4-py2.4.egg", "has_sig": false, "md5_digest": "2cc328524093b55f46b46cacc23a5d4e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 359453, "upload_time": "2010-11-01T16:58:02", "url": "https://files.pythonhosted.org/packages/2c/8f/69f075ba0926d635ce5fe3893416f3330bbe81fdcfff9cc02426868db721/cssutils-0.9.7b4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "dc2b801d2a177402e10c96b1ce288931", "sha256": "4ddb027b0f66d1a293a4fda554779810e971109171cabe79fc8794a11ab4c8f2" }, "downloads": -1, "filename": "cssutils-0.9.7b4-py2.5.egg", "has_sig": false, "md5_digest": "dc2b801d2a177402e10c96b1ce288931", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 361766, "upload_time": "2010-11-01T16:58:47", "url": "https://files.pythonhosted.org/packages/c6/c1/4810c69ca207077f2929d74a23b4733ba2c7c23f38f9661bd6a2623a83e2/cssutils-0.9.7b4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "6c69577a28a80ad0c26dfa510f5950fe", "sha256": "e88c3f0a5b01a03aa39dc86b733c83a973b407e75019f666982f86b8fa3c7a59" }, "downloads": -1, "filename": "cssutils-0.9.7b4-py2.6.egg", "has_sig": false, "md5_digest": "6c69577a28a80ad0c26dfa510f5950fe", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 361563, "upload_time": "2010-11-01T17:00:06", "url": "https://files.pythonhosted.org/packages/e3/c7/cc295ec4da893cc4fa782bb604edaa6640e258d0fdcbe33013c692d1232d/cssutils-0.9.7b4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "3a0e35c7bb58007000f84249a2b196f1", "sha256": "38643ecbd18c881d3ae1e7368768701c54f76332b42f4da19fb2aca8486a8d31" }, "downloads": -1, "filename": "cssutils-0.9.7b4-py2.7.egg", "has_sig": false, "md5_digest": "3a0e35c7bb58007000f84249a2b196f1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 360912, "upload_time": "2010-11-01T17:01:16", "url": "https://files.pythonhosted.org/packages/c6/6d/614d7001b8b156988b92a73ad7de716554be2116fb02362956829e070c87/cssutils-0.9.7b4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "88573b4e81a0f272f86b11109fee5817", "sha256": "19bf69d68c15b72309ce9dab03647f44b43966a9afc1af4f9f574c1015cc59d3" }, "downloads": -1, "filename": "cssutils-0.9.7b4.win-amd64.exe", "has_sig": false, "md5_digest": "88573b4e81a0f272f86b11109fee5817", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 401574, "upload_time": "2010-11-01T16:57:14", "url": "https://files.pythonhosted.org/packages/a7/00/5b8c2ae53d1c049a3179e7306ff90d7ff3b5cdfcf7a484618b5571c83241/cssutils-0.9.7b4.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "ecc1fee61fad1dd0e64e1b1de478b97b", "sha256": "0b6b3aba856fa90d79aa4628fc056d5ff70b75efc9e35dd031d6f9c9829a537d" }, "downloads": -1, "filename": "cssutils-0.9.7b4.zip", "has_sig": false, "md5_digest": "ecc1fee61fad1dd0e64e1b1de478b97b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 563262, "upload_time": "2010-11-01T16:56:19", "url": "https://files.pythonhosted.org/packages/18/67/38b37516d928bfcd90814e39e61009bba453a27032aaf75f035cf02e0854/cssutils-0.9.7b4.zip" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "6d76a3e12af487d9e87218076b6e0e5b", "sha256": "6db2e4e6079ae96deb27fc21af644ffe94a24f172e21ea1c07cd8eda4b6cf223" }, "downloads": -1, "filename": "cssutils-0.9.8-py2.5.egg", "has_sig": false, "md5_digest": "6d76a3e12af487d9e87218076b6e0e5b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 621597, "upload_time": "2011-12-10T19:50:23", "url": "https://files.pythonhosted.org/packages/82/58/3abbc6c44f52fb4f60362f4ab4125b8174f495ed21934cfc99fe7f3fadf7/cssutils-0.9.8-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "9671ec6e80ea33332da8e748008f4265", "sha256": "cb2978e306cd7bf82a70086805adbaca848d9596c144752f87ce395458cf37d2" }, "downloads": -1, "filename": "cssutils-0.9.8-py2.6.egg", "has_sig": false, "md5_digest": "9671ec6e80ea33332da8e748008f4265", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 627745, "upload_time": "2011-12-10T19:51:23", "url": "https://files.pythonhosted.org/packages/55/db/e4e3fecc099fd3521c79f4b1f0930abc569efb334e8a2c77c57ded37570e/cssutils-0.9.8-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "bae49d7f5d24b290497a052564cccd96", "sha256": "e5097b6e3c7dd9f0da0b678e38f5cf10534f86ba801a07d56e057ac247f34e98" }, "downloads": -1, "filename": "cssutils-0.9.8-py2.7.egg", "has_sig": false, "md5_digest": "bae49d7f5d24b290497a052564cccd96", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 626700, "upload_time": "2011-12-10T19:52:30", "url": "https://files.pythonhosted.org/packages/79/d2/c54fe378941193cd21e937306fca9f5dc3946a9e590ffc0a974ed9e7a896/cssutils-0.9.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c47e2df0ac99bdc90816b2bed53c8554", "sha256": "33ddb2957370abee701598a20f28f27fb29f6ff67a3c8bcaafe67630bf184172" }, "downloads": -1, "filename": "cssutils-0.9.8-py3.2.egg", "has_sig": false, "md5_digest": "c47e2df0ac99bdc90816b2bed53c8554", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 631027, "upload_time": "2011-12-10T19:54:26", "url": "https://files.pythonhosted.org/packages/f0/6a/f7e1ed7a12dd1ebdf39547792c396b5e2c91c726ad5c699bfe6c49327a8d/cssutils-0.9.8-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "30bb7b1e12ea2d0f350236826f8b7601", "sha256": "1bb6be5bd2804e0b3a2af15be7515bcab75ff7b380625759d5ffe732a336fe3d" }, "downloads": -1, "filename": "cssutils-0.9.8.win-amd64.exe", "has_sig": false, "md5_digest": "30bb7b1e12ea2d0f350236826f8b7601", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 515538, "upload_time": "2011-12-10T19:53:23", "url": "https://files.pythonhosted.org/packages/67/9e/d234198330eb3a111e66e25bcf2541012d79c17833a636af3feba4dd7db1/cssutils-0.9.8.win-amd64.exe" }, { "comment_text": "NEW", "digests": { "md5": "416af035c002150da7248a1944bd9cf9", "sha256": "bf5bd0c26845deb1eeeed7884d8bd03d78ae26c46dd2066a80d0e08243aaea23" }, "downloads": -1, "filename": "cssutils-0.9.8.zip", "has_sig": false, "md5_digest": "416af035c002150da7248a1944bd9cf9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 419099, "upload_time": "2011-12-10T19:47:38", "url": "https://files.pythonhosted.org/packages/d7/d5/c4209880512def5d12e20636a7f28b266eab88ee2329a3cbf0cc91a3a5e4/cssutils-0.9.8.zip" } ], "0.9.8a1": [ { "comment_text": "", "digests": { "md5": "fdc82a8b47b37a839bde99d5ba5b066c", "sha256": "9929b06d269f2dc0c3abd573205f2855201c8eb551d3ab1ed1ab404388f7a0b4" }, "downloads": -1, "filename": "cssutils-0.9.8a1-py2.6.egg", "has_sig": false, "md5_digest": "fdc82a8b47b37a839bde99d5ba5b066c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 376859, "upload_time": "2010-12-12T19:40:48", "url": "https://files.pythonhosted.org/packages/7e/01/f8860e26407e9ecdbe7360729331d236597b95bca78317af4440e26d7697/cssutils-0.9.8a1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "2df06bb55a44ed2173784de507739096", "sha256": "74761875ad48f23ecdf0f874dbbb36ccc68765b5738c0e7b1190c37c3e78f4fe" }, "downloads": -1, "filename": "cssutils-0.9.8a1-py2.7.egg", "has_sig": false, "md5_digest": "2df06bb55a44ed2173784de507739096", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 376195, "upload_time": "2010-12-12T19:41:19", "url": "https://files.pythonhosted.org/packages/e6/a4/ac04d009f031c77abf2d37c46b264a9e26a13713a8bd88a22e6eaaf0dffa/cssutils-0.9.8a1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c337ab0fa9b39a1d17ed484e6eeb8567", "sha256": "4624055c7223458b1fd383f6411d14e8b0e738c56810450e12a4ee4498f6be65" }, "downloads": -1, "filename": "cssutils-0.9.8a1.win-amd64.exe", "has_sig": false, "md5_digest": "c337ab0fa9b39a1d17ed484e6eeb8567", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 407886, "upload_time": "2010-12-12T19:43:13", "url": "https://files.pythonhosted.org/packages/be/6b/153b97edff22253f00c583f46aac0f5b07bc302154eea22a41bc6d2aefdc/cssutils-0.9.8a1.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "7b959a8bdddfa8f01fcb4e7df2310346", "sha256": "861f797558fe2062a72a90fb31d93dcc2272e644ee2ba5651fe9565d477dabc5" }, "downloads": -1, "filename": "cssutils-0.9.8a1.zip", "has_sig": false, "md5_digest": "7b959a8bdddfa8f01fcb4e7df2310346", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 580579, "upload_time": "2010-12-12T19:39:53", "url": "https://files.pythonhosted.org/packages/e7/ec/bd0fb21dd4388eac5613e22a1a706d3635a9ecf485155404aacb72e23e20/cssutils-0.9.8a1.zip" } ], "0.9.8a2": [ { "comment_text": "", "digests": { "md5": "317c7263839af827eda93a12f0e1455e", "sha256": "535e3cf4b59484ac69cd2022c207a2f7fb47e969e85a44fad6e6790611aef1c1" }, "downloads": -1, "filename": "cssutils-0.9.8a2-py2.4.egg", "has_sig": false, "md5_digest": "317c7263839af827eda93a12f0e1455e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 376508, "upload_time": "2011-06-11T19:18:14", "url": "https://files.pythonhosted.org/packages/d0/ec/377800b00d73dd5e84e49a58e88e3cc27a056a0dc1a495a3578faf0534c3/cssutils-0.9.8a2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ce7456aa22c2252a99269e53cfbe6116", "sha256": "0d726740a247035c58fb91a091778fdec971881b9580e3b90d50c7093ee49435" }, "downloads": -1, "filename": "cssutils-0.9.8a2-py2.5.egg", "has_sig": false, "md5_digest": "ce7456aa22c2252a99269e53cfbe6116", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 378923, "upload_time": "2011-06-11T19:18:53", "url": "https://files.pythonhosted.org/packages/a7/0e/448337f8cd8ef64b2b070926f7caab5ad981d53c3d389d3878fd325e4a01/cssutils-0.9.8a2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "ab503504426056e797f9ca9b08cc9fc7", "sha256": "00ffcd17e887f8f79131012c02b2a478881bbd83bcf1aa306fcb3242e2c8e8e8" }, "downloads": -1, "filename": "cssutils-0.9.8a2-py2.6.egg", "has_sig": false, "md5_digest": "ab503504426056e797f9ca9b08cc9fc7", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 378731, "upload_time": "2011-06-11T19:19:56", "url": "https://files.pythonhosted.org/packages/d6/71/e14a4dac9eba2d956f0f352141ffc9248b4c6dc49bedcfdec4bfdd3070dd/cssutils-0.9.8a2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "1a19a2212ad27fc4d36519e13abc1914", "sha256": "8ced60dfe336611dedcd8882628b61f33277197734411dbfd781e627f65041be" }, "downloads": -1, "filename": "cssutils-0.9.8a2-py2.7.egg", "has_sig": false, "md5_digest": "1a19a2212ad27fc4d36519e13abc1914", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 378000, "upload_time": "2011-06-11T19:20:42", "url": "https://files.pythonhosted.org/packages/ac/73/141ea1b77a12184fdb75d9569377cb5e809ab9b56e7d43cd37a866c6429b/cssutils-0.9.8a2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ac3dce42ca8d3341a5f2a3e596b6004d", "sha256": "618c43747e70245478a6d44a30ae516d56140b982e7720e74d0f4af908e2b4e7" }, "downloads": -1, "filename": "cssutils-0.9.8a2.win-amd64.exe", "has_sig": false, "md5_digest": "ac3dce42ca8d3341a5f2a3e596b6004d", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 409097, "upload_time": "2011-06-11T19:17:03", "url": "https://files.pythonhosted.org/packages/a5/8b/f4c1941e133f57466de1a0ed7fc530c2c1c4db4dcdcc53319b7351c6698b/cssutils-0.9.8a2.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "05eca7ca7807988b90f89a97f2ab8581", "sha256": "91e0df10c986ce8cb49fdc83e8241436771fd53cb52f8aad2deb157cc6bca25a" }, "downloads": -1, "filename": "cssutils-0.9.8a2.zip", "has_sig": false, "md5_digest": "05eca7ca7807988b90f89a97f2ab8581", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 588045, "upload_time": "2011-06-11T19:15:49", "url": "https://files.pythonhosted.org/packages/a3/e1/9e0b2aab78a08fbbfc62c6243951ed6a43adbf545a5b538fa0414c98aec1/cssutils-0.9.8a2.zip" } ], "0.9.8a3": [ { "comment_text": "", "digests": { "md5": "23a58c831fca4886f28cb192732c4282", "sha256": "5a0b2ca67cb38b6bf578a17742ae691c02ba855e570102abb1bdf25df7b8ef5b" }, "downloads": -1, "filename": "cssutils-0.9.8a3-py2.5.egg", "has_sig": false, "md5_digest": "23a58c831fca4886f28cb192732c4282", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 619572, "upload_time": "2011-07-27T00:01:45", "url": "https://files.pythonhosted.org/packages/13/64/2ae9918e05512f49e71976fc682ed42b6c7bfe8daeaf855af0150c4171e1/cssutils-0.9.8a3-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "6f62ad4fdf5ef4e4d9db90d34db219f1", "sha256": "ca4091e3a253e7fa95087b812831c4da739ae53c69abe8b7230a895a1962b842" }, "downloads": -1, "filename": "cssutils-0.9.8a3-py2.6.egg", "has_sig": false, "md5_digest": "6f62ad4fdf5ef4e4d9db90d34db219f1", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 625702, "upload_time": "2011-07-27T00:02:56", "url": "https://files.pythonhosted.org/packages/9d/6d/8ca92a34d7ce84ab24b8a9d1c7f7288ded0d155ede6f27151d7662a4b2fb/cssutils-0.9.8a3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "f3181446609bd07d0af63361c2bd11ad", "sha256": "d3c027c808651ac2de0152b855fc37fc91f97fcb8a190d9178ee0b29ee6c0b39" }, "downloads": -1, "filename": "cssutils-0.9.8a3-py2.7.egg", "has_sig": false, "md5_digest": "f3181446609bd07d0af63361c2bd11ad", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 624623, "upload_time": "2011-07-27T00:03:41", "url": "https://files.pythonhosted.org/packages/2b/96/195811d508c38de4b013e0ae234d9a5123c4662ea2b3499cb2b3b3899496/cssutils-0.9.8a3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "09560ce93f91ce8df6b14e5a051a301d", "sha256": "3193e0e82e19696b20cfc5f71a05925ac662621500cabeadc91e80e6529596aa" }, "downloads": -1, "filename": "cssutils-0.9.8a3-py3.2.egg", "has_sig": false, "md5_digest": "09560ce93f91ce8df6b14e5a051a301d", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 628738, "upload_time": "2011-07-27T00:04:43", "url": "https://files.pythonhosted.org/packages/fa/a6/ee8ebb891252b5f0a50f8933c27001cb5c3d7f8d410bfae9f00223a4ef67/cssutils-0.9.8a3-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "a15da15a940523658f550c291459ef90", "sha256": "f55aa67be393ada5252130556d5e9f7d7b01c54010e887e17ace47afb1a4ab57" }, "downloads": -1, "filename": "cssutils-0.9.8a3.win-amd64.exe", "has_sig": false, "md5_digest": "a15da15a940523658f550c291459ef90", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 512789, "upload_time": "2011-07-27T00:05:40", "url": "https://files.pythonhosted.org/packages/91/ac/c7584e818f271038c9c479438d2ae497cc288e4bf1cfca490beba658462c/cssutils-0.9.8a3.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "d4638fed7a942ddfc8c72ee5dfca8817", "sha256": "47e668358c456451bd9f2b276b936d331a390e46f3926a825f88e52b0ccf82d2" }, "downloads": -1, "filename": "cssutils-0.9.8a3.zip", "has_sig": false, "md5_digest": "d4638fed7a942ddfc8c72ee5dfca8817", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 309221, "upload_time": "2011-07-27T00:00:01", "url": "https://files.pythonhosted.org/packages/16/d8/2752dff0858107e9943f2ff2a0c9c847e583d3d1ba65046578cf3988411e/cssutils-0.9.8a3.zip" } ], "0.9.9": [ { "comment_text": "", "digests": { "md5": "636e3c37a46dcb0aa55170b838cc7b64", "sha256": "f6ea4c138ce63e9d987d01af0a295f0495ae02c0c35d57ef6a3d800ec337404b" }, "downloads": -1, "filename": "cssutils-0.9.9-py2.5.egg", "has_sig": false, "md5_digest": "636e3c37a46dcb0aa55170b838cc7b64", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 639205, "upload_time": "2012-01-31T21:36:22", "url": "https://files.pythonhosted.org/packages/4a/c4/421e7a00a41c73c4b476a99a22a49e59013c0bbe7b7f57be1ae113fc0edd/cssutils-0.9.9-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "ad8b9300c698448d3fe9c7613959152e", "sha256": "36db5163e77207fae1dba5e3756b222741ffb04028c0ec9ae92c8e96c05baa82" }, "downloads": -1, "filename": "cssutils-0.9.9-py2.6.egg", "has_sig": false, "md5_digest": "ad8b9300c698448d3fe9c7613959152e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 645306, "upload_time": "2012-01-31T21:37:20", "url": "https://files.pythonhosted.org/packages/7e/58/682fc564537419913595980c89116cf1a52c426954ead9622ab6eb8d162e/cssutils-0.9.9-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "e1b1cf6eb7c90433a9dc45d7d581c076", "sha256": "296d4d4566463e9d788b0d78e65876dabfe18b1269c44ad91d92b3cced34b934" }, "downloads": -1, "filename": "cssutils-0.9.9-py2.7.egg", "has_sig": false, "md5_digest": "e1b1cf6eb7c90433a9dc45d7d581c076", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 644262, "upload_time": "2012-01-31T21:38:42", "url": "https://files.pythonhosted.org/packages/52/10/ba9bfe5dcb1ba8d3eb21c26693953c3096591d10f6a718338341d789f620/cssutils-0.9.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "fe4ba803114a0b81196d6300316f9965", "sha256": "27896d9565b7cf46b7ac2b27bbfeaa12a4c5c3bb3b9503fd0fcca881791ea973" }, "downloads": -1, "filename": "cssutils-0.9.9-py3.2.egg", "has_sig": false, "md5_digest": "fe4ba803114a0b81196d6300316f9965", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 648453, "upload_time": "2012-01-31T21:40:16", "url": "https://files.pythonhosted.org/packages/bb/e1/23a0da67a6a26c0185090ff6a1cbb236f07b871078d349edae2bdb02b4d9/cssutils-0.9.9-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "fcf6f2bea7191e99f402040def126a74", "sha256": "0d0910cdf31e666d539f65ad5bed922322a9297231f773718e92c923bff58889" }, "downloads": -1, "filename": "cssutils-0.9.9.win-amd64.exe", "has_sig": false, "md5_digest": "fcf6f2bea7191e99f402040def126a74", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 522853, "upload_time": "2012-01-31T21:40:54", "url": "https://files.pythonhosted.org/packages/99/e1/67637162c4009c3cca539ea29d7f9b9ae1d8066fa5ed8b3672f2a8f04a97/cssutils-0.9.9.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "5f8ea824cc0e0518b574da20e895be08", "sha256": "f7061a591859c025504c7871ef3b843383a025d570128edf1c63a6ef53753e8d" }, "downloads": -1, "filename": "cssutils-0.9.9.zip", "has_sig": false, "md5_digest": "5f8ea824cc0e0518b574da20e895be08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 426449, "upload_time": "2012-01-31T21:34:15", "url": "https://files.pythonhosted.org/packages/c1/18/1177b6c6abe8c458439129c49cf260deca913c03e9305c9a052baec22755/cssutils-0.9.9.zip" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "a96b87c534935e0bbfcfdda61b7efa1e", "sha256": "6b6ca1d70185a3759d9362934052fcdd9ab849a9ecbd4ffaba1a44df76c75376" }, "downloads": -1, "filename": "cssutils-1.0-py2.7.egg", "has_sig": false, "md5_digest": "a96b87c534935e0bbfcfdda61b7efa1e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 660003, "upload_time": "2013-12-15T11:26:20", "url": "https://files.pythonhosted.org/packages/70/8a/fb09150caf0e547ada78c77e8113bd2bb4e6c0deb27efd78d63561a13883/cssutils-1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "33fdb9c41dd92c6b5ef1d5b370afd887", "sha256": "1670973272e08871d40fbb4ca1bc948df294d84b1b0da86c9705145d59261352" }, "downloads": -1, "filename": "cssutils-1.0-py3.3.egg", "has_sig": false, "md5_digest": "33fdb9c41dd92c6b5ef1d5b370afd887", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 682253, "upload_time": "2013-12-15T11:27:17", "url": "https://files.pythonhosted.org/packages/cb/d3/9db29b9073ec5dd3ad11f325ed7e9671a1229fef31982b58c99136b85c39/cssutils-1.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "12052db99d13564617b69172fff22ca1", "sha256": "8cff2bbc6069fc9e7174c6ebb960b36bf9e9ba0f12dbae3cecead1de4ce89e20" }, "downloads": -1, "filename": "cssutils-1.0.win-amd64.exe", "has_sig": false, "md5_digest": "12052db99d13564617b69172fff22ca1", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 637905, "upload_time": "2013-12-15T11:30:24", "url": "https://files.pythonhosted.org/packages/c9/cd/aea46afc43a61b314cf0b6a0bb66ea85df4ca28d902048ecacf922a8d307/cssutils-1.0.win-amd64.exe" }, { "comment_text": "", "digests": { "md5": "0c0b9df329ec1461c732d0f3cba05e93", "sha256": "4504762f5d8800b98fa713749c00acfef8419826568f9363c490e45146a891af" }, "downloads": -1, "filename": "cssutils-1.0.zip", "has_sig": false, "md5_digest": "0c0b9df329ec1461c732d0f3cba05e93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 434178, "upload_time": "2013-12-15T11:24:28", "url": "https://files.pythonhosted.org/packages/c4/b0/20741964ef91c8b8280973c115826909495f088acd5cff55d24abc28f2e0/cssutils-1.0.zip" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "b173f51f1b87bcdc5e5e20fd39530cdc", "sha256": "78ac48006ac2336b9456e88a75ed35f6a31a030c65162503b7af01a60d78db5a" }, "downloads": -1, "filename": "cssutils-1.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "b173f51f1b87bcdc5e5e20fd39530cdc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 292704, "upload_time": "2015-10-11T05:38:49", "url": "https://files.pythonhosted.org/packages/e1/ec/2cea8032a094e3f23a3b27e3d3c9d49d39c51f5bda2fc728524fb1313b9c/cssutils-1.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7fcdf2c3e9f053136af1990146eb361d", "sha256": "d8a18b2848ea1011750231f1dd64fe9053dbec1be0b37563c582561e7a529063" }, "downloads": -1, "filename": "cssutils-1.0.1.tar.gz", "has_sig": false, "md5_digest": "7fcdf2c3e9f053136af1990146eb361d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 353621, "upload_time": "2015-10-11T05:38:40", "url": "https://files.pythonhosted.org/packages/22/de/6b03e0088baf0299ab7d2e95a9e26c2092e9cb3855876b958b6a62175ca2/cssutils-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "e5e872b22e870f6834d49c1fb2d8a9fb", "sha256": "c74dbe19c92f5052774eadb15136263548dd013250f1ed1027988e7fef125c8d" }, "downloads": -1, "filename": "cssutils-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "e5e872b22e870f6834d49c1fb2d8a9fb", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 406304, "upload_time": "2017-03-04T16:41:55", "url": "https://files.pythonhosted.org/packages/6b/15/a9fb9010f58d1c55dd0b7779db2334feb9a572d407024f39a60f44293861/cssutils-1.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dc66d96c2d78f1687f59ac412fe9d318", "sha256": "a2fcf06467553038e98fea9cfe36af2bf14063eb147a70958cfcaa8f5786acaf" }, "downloads": -1, "filename": "cssutils-1.0.2.tar.gz", "has_sig": false, "md5_digest": "dc66d96c2d78f1687f59ac412fe9d318", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367038, "upload_time": "2017-03-04T16:42:22", "url": "https://files.pythonhosted.org/packages/5c/0b/c5f29d29c037e97043770b5e7c740b6252993e4b57f029b3cd03c78ddfec/cssutils-1.0.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e5e872b22e870f6834d49c1fb2d8a9fb", "sha256": "c74dbe19c92f5052774eadb15136263548dd013250f1ed1027988e7fef125c8d" }, "downloads": -1, "filename": "cssutils-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "e5e872b22e870f6834d49c1fb2d8a9fb", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 406304, "upload_time": "2017-03-04T16:41:55", "url": "https://files.pythonhosted.org/packages/6b/15/a9fb9010f58d1c55dd0b7779db2334feb9a572d407024f39a60f44293861/cssutils-1.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dc66d96c2d78f1687f59ac412fe9d318", "sha256": "a2fcf06467553038e98fea9cfe36af2bf14063eb147a70958cfcaa8f5786acaf" }, "downloads": -1, "filename": "cssutils-1.0.2.tar.gz", "has_sig": false, "md5_digest": "dc66d96c2d78f1687f59ac412fe9d318", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367038, "upload_time": "2017-03-04T16:42:22", "url": "https://files.pythonhosted.org/packages/5c/0b/c5f29d29c037e97043770b5e7c740b6252993e4b57f029b3cd03c78ddfec/cssutils-1.0.2.tar.gz" } ] }