{ "info": { "author": "Stephen McDonald", "author_email": "stephen.mc@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Internet :: WWW/HTTP :: WSGI", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. image:: https://secure.travis-ci.org/stephenmcd/cartridge.png?branch=master\n :target: http://travis-ci.org/#!/stephenmcd/cartridge\n\nCreated by `Stephen McDonald `_\n\n========\nOverview\n========\n\nCartridge is a shopping cart application built using the `Django`_\nframework. It is `BSD licensed`_, and designed to provide a clean and\nsimple base for developing e-commerce websites. It purposely does not\ninclude every conceivable feature of an e-commerce website; instead,\nCartridge focuses on providing core features common to most e-commerce\nwebsites.\n\nThis specific focus stems from the idea that every e-commerce website\nis different, is tailored to the particular business and products at\nhand, and should therefore be as easy to customize as possible.\nCartridge achieves this goal with a code-base that is as simple as\npossible and implements only the core features of an e-commerce\nwebsite.\n\nCartridge extends the `Mezzanine`_ content management platform. A live\ndemo of Cartridge can be found by visiting the `Mezzanine live demo`_.\n\nFeatures\n========\n\n* Hierarchical categories\n* Easily configurable product options (colours, sizes, etc.)\n* Hooks for tax/shipping calculations and payment gateways\n* Sale pricing\n* Promotional discount codes\n* PDF invoice generation (for packing slips)\n* Stock control\n* Product popularity\n* Thumbnail generation\n* Built-in test suite\n* Separation of presentation (no embedded markup)\n* Smart categories (by price range, colour, etc)\n* Registered or anonymous checkout\n* Configurable number of checkout steps\n* Denormalised data for accessiblilty and performance\n* Authenticated customer accounts with transaction history\n\nDependencies\n============\n\nCartridge is designed as a plugin for the `Mezzanine`_ content\nmanagement platform, and therefore requires `Mezzanine`_ to be\ninstalled. The integration of the two applications should occur\nautomatically by following the installation instructions below.\n\nInstallation\n============\n\nThe easiest method is to install directly from PyPI using `pip`_ by\nrunning the command below, which will also install the required\ndependencies mentioned above::\n\n $ pip install -U cartridge\n\nOtherwise, you can download Cartridge and install it directly from source::\n\n $ python setup.py install\n\nOnce installed, the command ``mezzanine-project`` can be used to\ncreate a new Mezzanine project, with Cartridge installed, in similar\nfashion to ``django-admin.py``::\n\n $ mezzanine-project -a cartridge project_name\n $ cd project_name\n $ python manage.py createdb --noinput\n $ python manage.py runserver\n\nHere we specify the ``-a`` switch for the ``mezzanine-project`` command,\nwhich tells it to use an alternative package (cartridge) for the project\ntemplate to use. Both Mezzanine and Cartridge contain a project template\npackage containing the ``settings.py`` and ``urls.py`` modules for an\ninitial project. If you'd like to add Cartridge to an existing Mezzanine\nor Django project, you'll need to manually configure these yourself. See\nthe `FAQ section of the Mezzanine documentation`_ for more information.\n\n.. note::\n\n The ``createdb`` command is a shortcut for using Django's\n ``migrate`` command, which will also install some demo content,\n such as a contact form, image gallery, and more. If you'd like to\n omit this step, use the ``--nodata`` option with ``createdb``.\n\nYou should then be able to browse to http://127.0.0.1:8000/admin/ and\nlog in using the default account (``username: admin, password:\ndefault``). If you'd like to specify a different username and password\nduring set up, simply exclude the ``--noinput`` option included above\nwhen running ``createdb``.\n\nContributing\n============\n\nCartridge is an open source project managed using both the Git and\nMercurial version control systems. These repositories are hosted on\nboth `GitHub`_ and `Bitbucket`_ respectively, so contributing is as\neasy as forking the project on either of these sites and committing\nback your enhancements.\n\nPlease note the following guidelines for contributing:\n\n* Contributed code must be written in the existing style. For Python\n (and to a decent extent, JavaScript as well), this is as simple as\n following the `Django coding style`_ and (most importantly)\n `PEP 8`_. Front-end CSS should adhere to the\n `Bootstrap CSS guidelines`_.\n* Contributions must be available on a separately named branch\n based on the latest version of the main branch.\n* Run the tests before committing your changes. If your changes\n cause the tests to break, they won't be accepted.\n* If you are adding new functionality, you must include basic tests\n and documentation.\n\nHere's a quick start to hacking on Cartridge after forking it on\nGitHub, by using the internal \"project_template\" as your current\nproject::\n\n $ git clone https://github.com/your-github-username/cartridge/\n $ cd cartridge\n $ git checkout -b your-new-branch-name\n $ cp cartridge/project_template/project_name/local_settings.py{.template,}\n $ python setup.py develop\n $ python cartridge/project_template/manage.py createdb --noinput\n $ python cartridge/project_template/manage.py runserver\n\n \"hack hack hack\"\n\n $ python setup.py test\n $ git commit -am \"A message describing what you changed.\"\n $ git push origin your-new-branch-name\n\n.. note::\n\n Cartridge's development branch often relies on features that exist\n in Mezzanine's development branch, but haven't yet made it into an\n official release. To install Mezzanine's development version in your\n environment, run::\n\n $ pip install --upgrade git+https://github.com/stephenmcd/mezzanine.git#egg=Mezzanine\n\n\nLanguage Translations\n=====================\n\nCartridge makes full use of translation strings, which allow Cartridge\nto be translated into multiple languages using `Django's\ninternationalization`_ methodology. Translations are managed on the\n`Transiflex`_ website but can also be submitted via `GitHub`_ or\n`Bitbucket`_. Consult the documentation for `Django's\ninternationalization`_ methodology for more information on creating\ntranslations and using them.\n\nThird-party Modules\n===================\n\nThe following modules have been developed outside of Cartridge. If you\nhave developed a module to integrate with Mezzanine or Cartridge, and\nwould like it listed in the documentation, send an email to the\n`mezzanine-users`_ mailing list. You can also add modules to the\n`Mezzanine Grid on djangopackages.com`_.\n\n* `cartridge_braintree`_ - Payment processor for `Braintree`_.\n* `cartridge-external-payment`_ - Allows payment on an external\n provider platform.\n* `cartridge-tax`_ - Implements a handful of sales tax models.\n* `cartridge-stripe`_ - Alternative payment backend for `Stripe`_.\n* `cartridge-pinpayments`_ - `PIN`_ payments integration.\n\nDonating\n========\n\nIf you would like to make a donation to continue development of\nCartridge, you can do so via the `Mezzanine Project`_ website.\n\nSupport\n=======\n\nTo report a security issue, please send an email privately to\n`core-team@mezzaninecms.com`_. This gives us a chance to fix the issue and\ncreate an official release prior to the issue being made\npublic.\n\nFor all other Cartridge support, the primary channel is the\n`mezzanine-users`_ mailing list. Questions, comments, and all related\ndiscussions take place here amongst knowledgeable members of the\ncommunity.\n\nIf you're certain you've come across a bug, then please use the\n`GitHub issue tracker`_. It's crucial that enough information is\nprovided to reproduce the bug. This includes things such as the\nPython stack trace generated by error pages, as well as other aspects\nof the development environment used, such as operating system,\ndatabase, Python version, etc. If you're not sure you've found a\nreproducable bug, then please try the mailing list first.\n\nFinally, feel free to drop by the `#mezzanine IRC channel`_ on\n`Freenode`_, for a chat!\n\nCommunications in all Cartridge and Mezzanine spaces are expected to\nconform to the `Django Code of Conduct`_.\n\nSites Using Cartridge\n=====================\n\n* `Ripe Maternity `_\n* `Cotton On `_\n* `Coopers Store `_\n* `Sheer Ethic `_\n* `tindie.com `_\n* `Ross A. Laird `_\n* `Pink Twig `_\n* `Parfume Planet `_\n* `Life is Good `_\n* `Brooklyn Navy Yard `_\n* `Cotton On Asia `_\n* `Manai Glitter `_\n* `Tactical Bags `_\n* `Charles Koll Jewelry `_\n* `Puraforce Remedies `_\n* `Adrenaline `_\n* `The Peculiar Store `_\n* `KisanHub `_\n* `Kegbot `_\n* `Amblitec `_\n* `ZigZag Bags `_\n* `Justine & Katie's Bowtique `_\n* `The Art Rebellion `_\n* `Engineered Arts `_\n* `Lipman Art `_\n* `ZHackers `_\n* `Potrillo al Pie `_\n* `You Name It `_\n* `Warwick Friendly Society Pharmacies `_\n\n.. _`Django`: http://djangoproject.com/\n.. _`BSD licensed`: http://www.linfo.org/bsdlicense.html\n.. _`Mezzanine live demo`: http://mezzanine.jupo.org/\n.. _`Mezzanine`: http://mezzanine.jupo.org/\n.. _`Mezzanine Project`: http://mezzanine.jupo.org/\n.. _`pip`: http://www.pip-installer.org/\n.. _`FAQ section of the Mezzanine documentation`: http://mezzanine.jupo.org/docs/frequently-asked-questions.html#how-can-i-add-mezzanine-to-an-existing-django-project\n.. _`South`: http://south.aeracode.org/\n.. _`Github`: http://github.com/stephenmcd/cartridge/\n.. _`Bitbucket`: http://bitbucket.org/stephenmcd/cartridge/\n.. _`mezzanine-users`: http://groups.google.com/group/mezzanine-users\n.. _`Github issue tracker`: http://github.com/stephenmcd/cartridge/issues\n.. _`Django coding style`: http://docs.djangoproject.com/en/dev/internals/contributing/#coding-style\n.. _`PEP 8`: http://www.python.org/dev/peps/pep-0008/\n.. _`Bootstrap CSS guidelines`: https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md#css\n.. _`Django Code of Conduct`: https://www.djangoproject.com/conduct/\n.. _`Transiflex`: https://www.transifex.com/projects/p/cartridge/\n.. _`core-team@mezzaninecms.com`: mailto:core-team@mezzaninecms.com?subject=Mezzanine+Security+Issue\n.. _`#mezzanine IRC channel`: irc://freenode.net/mezzanine\n.. _`Freenode`: http://freenode.net\n.. _`Django's internationalization`: https://docs.djangoproject.com/en/dev/topics/i18n/translation/\n.. _`virtualenvwrapper`: http://www.doughellmann.com/projects/virtualenvwrapper\n.. _`Mezzanine Grid on djangopackages.com`: http://www.djangopackages.com/grids/g/mezzanine/\n.. _`Braintree`: https://www.braintreepayments.com/\n.. _`Stripe`: https://stripe.com\n.. _`PIN`: https://pin.net.au/\n\n.. THIRD PARTY LIBS\n\n.. _`cartridge_braintree`: https://github.com/henri-hulski/cartridge_braintree\n.. _`cartridge-external-payment`: https://github.com/thomasWajs/cartridge-external-payment\n.. _`cartridge-tax`: https://github.com/kenbolton/cartridge-tax\n.. _`cartridge-stripe`: https://github.com/readevalprint/cartridge-stripe\n.. _`cartridge-pinpayments`: https://github.com/molokov/cartridge-pinpayments\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://cartridge.jupo.org/", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "Cartridge", "package_url": "https://pypi.org/project/Cartridge/", "platform": "", "project_url": "https://pypi.org/project/Cartridge/", "project_urls": { "Homepage": "http://cartridge.jupo.org/" }, "release_url": "https://pypi.org/project/Cartridge/0.13.0/", "requires_dist": null, "requires_python": "", "summary": "A Django shopping cart application.", "version": "0.13.0" }, "last_serial": 3963282, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "5e1754077674546e82d0adb94d4eed88", "sha256": "6c131b983c2c008e3ef5b605eea7a890c4aa49b607c7b7821579ca38a9071b1d" }, "downloads": -1, "filename": "Cartridge-0.1.tar.gz", "has_sig": false, "md5_digest": "5e1754077674546e82d0adb94d4eed88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 298871, "upload_time": "2010-09-19T22:57:43", "url": "https://files.pythonhosted.org/packages/6e/80/6b0166a86a938f1863e68428606e25ece9a068a7428deb49f756bad3babd/Cartridge-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "a0a6513eee68ffaf10a5137f8dfaff08", "sha256": "c224d7f7b3e7073de6720fac6a035fc365fae65850d5494d3cf1851512a2fdcd" }, "downloads": -1, "filename": "Cartridge-0.1.1.tar.gz", "has_sig": false, "md5_digest": "a0a6513eee68ffaf10a5137f8dfaff08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 263999, "upload_time": "2010-09-19T23:09:01", "url": "https://files.pythonhosted.org/packages/e1/3f/e205e6f25150fb65a3386881dc958db8965470959b3227a53b93a8e438e0/Cartridge-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "7dbe040f5986aa340fa70389852cdb66", "sha256": "6bec50ae7f52efa76526ffcc43710a4a1b688b73e0ee8308b864f202e2769369" }, "downloads": -1, "filename": "Cartridge-0.1.2.tar.gz", "has_sig": false, "md5_digest": "7dbe040f5986aa340fa70389852cdb66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 290154, "upload_time": "2010-09-23T21:00:39", "url": "https://files.pythonhosted.org/packages/76/c8/36f1bf8254cd4811eeee1fb94fea17af6007f7f91005afbf36ba75467ba6/Cartridge-0.1.2.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "f0806ea749299ed9a70ca072b4904de2", "sha256": "a1c8971cada5585823d372fdb0a80048a6033314d059c950cc19f3e3ba5a7889" }, "downloads": -1, "filename": "Cartridge-0.1.4.tar.gz", "has_sig": false, "md5_digest": "f0806ea749299ed9a70ca072b4904de2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 253198, "upload_time": "2010-11-10T03:38:03", "url": "https://files.pythonhosted.org/packages/a1/88/8464976d94010fe5483da4ba5eb08709da2bc8626a812a2f89252ca33366/Cartridge-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "30f9c51d1b3d12b85fe11ca59b5c4baa", "sha256": "3eaf68d083680544ee47a45c3e4899e94af056843422ee728e445eb9100c0310" }, "downloads": -1, "filename": "Cartridge-0.1.5.tar.gz", "has_sig": false, "md5_digest": "30f9c51d1b3d12b85fe11ca59b5c4baa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 298707, "upload_time": "2010-12-21T20:44:30", "url": "https://files.pythonhosted.org/packages/da/fd/b73848108158bf6975a295298a2c5d5d2c8de5f13ace2c9573c08db027a0/Cartridge-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "d883abf31b84267d2ca1ff983a8473f3", "sha256": "0fe4c2915d24d855553fb93810bedd9115ee56cc3c7a7b1425e208e40d0827eb" }, "downloads": -1, "filename": "Cartridge-0.1.6.tar.gz", "has_sig": false, "md5_digest": "d883abf31b84267d2ca1ff983a8473f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 517988, "upload_time": "2010-12-22T03:41:40", "url": "https://files.pythonhosted.org/packages/2c/24/520d39a2038a3af59d429799557dfc6b8faeb086025d84615a7403974df8/Cartridge-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "b71709d2f1eaa62345b46875bd38df59", "sha256": "46a04f96aed9a5ce88ad69ccbc64607de1c778a19527fba3bf2c953bcc36d2cc" }, "downloads": -1, "filename": "Cartridge-0.1.7.tar.gz", "has_sig": false, "md5_digest": "b71709d2f1eaa62345b46875bd38df59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 524439, "upload_time": "2011-01-28T08:42:42", "url": "https://files.pythonhosted.org/packages/74/70/7de88524c8507471670ea71f7cc9250332267127eca7919729e5f26be6d3/Cartridge-0.1.7.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "621bf30c4fdb60abcaade4d340b91ce7", "sha256": "514c82b7103fe23dfa115de407bdcf813bd52a659c06a37fa769c909f6c01f60" }, "downloads": -1, "filename": "Cartridge-0.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "621bf30c4fdb60abcaade4d340b91ce7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 549389, "upload_time": "2015-07-27T13:46:27", "url": "https://files.pythonhosted.org/packages/44/a4/6ee518a57dc90a97c7ed3028feb42c67293bfe6974e84af9f207353b4b23/Cartridge-0.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "088303e561392d87e77328b43e6129f9", "sha256": "c472dfa19e55a65a7d47536f66c9a9bb0a8237b8afc2f1dbee24917611f0cbf2" }, "downloads": -1, "filename": "Cartridge-0.10.0.tar.gz", "has_sig": false, "md5_digest": "088303e561392d87e77328b43e6129f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2916727, "upload_time": "2015-07-27T13:46:13", "url": "https://files.pythonhosted.org/packages/da/97/6a1ec30b795a22a7fbe79c238fb2277e8d0a32c13dc8bd56335f5e3d6a9f/Cartridge-0.10.0.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "bb0601797db63710707375d4e2aa35bb", "sha256": "1e24b5cb7ff2a4d09119e3a6d86b81602d9c262aba9e3098202b2f1419f19b91" }, "downloads": -1, "filename": "Cartridge-0.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bb0601797db63710707375d4e2aa35bb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 576239, "upload_time": "2016-01-17T05:19:28", "url": "https://files.pythonhosted.org/packages/30/1a/a5a03ad56b75a6e70fa2d9450cf35f6568970fc1e447d541bebf38199b2e/Cartridge-0.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0fd4aa2c5915fb1441bb6b00eaccc7a9", "sha256": "e8058a342eadc95962f0fe8810c75ef480d531062259c6b815b156290e60985d" }, "downloads": -1, "filename": "Cartridge-0.11.0.tar.gz", "has_sig": false, "md5_digest": "0fd4aa2c5915fb1441bb6b00eaccc7a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2944058, "upload_time": "2016-01-17T05:19:09", "url": "https://files.pythonhosted.org/packages/39/a4/8ffb61463a1072b3bfd9d67969902fa5f78e95ba8233b5af331d99db1468/Cartridge-0.11.0.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "731919f32a44d1a5d66a0d726e6847e8", "sha256": "24e29a50a8b48a894e224873be23c18118c1cbd83954341d5c8e9717c71e4999" }, "downloads": -1, "filename": "Cartridge-0.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "731919f32a44d1a5d66a0d726e6847e8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 576368, "upload_time": "2016-08-17T04:49:35", "url": "https://files.pythonhosted.org/packages/ef/47/659c8b96e6307bdf9c804937f618a0bb543d34739970aa107c14519bcf69/Cartridge-0.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f62d36347c43029944f54882aba81a44", "sha256": "84e4dfcfeac8fa262488e1c0b5413e28af84660c82c6ba77c8ccd9d9faf812cf" }, "downloads": -1, "filename": "Cartridge-0.12.0.tar.gz", "has_sig": false, "md5_digest": "f62d36347c43029944f54882aba81a44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2944863, "upload_time": "2016-08-17T04:49:27", "url": "https://files.pythonhosted.org/packages/d1/69/ac42bc28b15e9b6c5b9a91ce6d47e00ed77184e092f93ed7726d5434183e/Cartridge-0.12.0.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "e1018f810a64a5b60a2c9fb5b5bb5025", "sha256": "ff488a0d67cd6df040f75d6c8e232d401a13f33798c466776c7d2655cf2076d0" }, "downloads": -1, "filename": "Cartridge-0.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e1018f810a64a5b60a2c9fb5b5bb5025", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 577017, "upload_time": "2018-06-15T01:44:14", "url": "https://files.pythonhosted.org/packages/49/59/aee540a98b34dc50f17f9d62c879d4a898ca46e9efc8f1f0819cc2f4f44a/Cartridge-0.13.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad1be8d3e808922710938ae2ddf617e2", "sha256": "55628dff1bfcc0a2148d1a6507762231d1bd8c9b5a9362d8e32e74c90b7a731b" }, "downloads": -1, "filename": "Cartridge-0.13.0.tar.gz", "has_sig": false, "md5_digest": "ad1be8d3e808922710938ae2ddf617e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2946596, "upload_time": "2018-06-15T01:44:07", "url": "https://files.pythonhosted.org/packages/ec/2f/b7e1c2b15edc06dc05d648cfc09b83943e91d704ec8b237e7e3d1a97d5d0/Cartridge-0.13.0.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "2353ed8c0f93cf72dbe47abb111c50be", "sha256": "f6101e53129268297615ad2663784ade602b6d2b9e57899cb60bb36198d4c5c9" }, "downloads": -1, "filename": "Cartridge-0.2.tar.gz", "has_sig": false, "md5_digest": "2353ed8c0f93cf72dbe47abb111c50be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 528421, "upload_time": "2011-04-30T09:07:13", "url": "https://files.pythonhosted.org/packages/86/ba/e2fe5f167be5b0d9ee23184f2b54505b726f0b0d11572659f784dacdf7bf/Cartridge-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "2f939029018cecfd79a7b45267a0cf85", "sha256": "59443e8b947df84f5415336e6785c5e7a0e9519e46478b7e88c45675f98b2fd5" }, "downloads": -1, "filename": "Cartridge-0.2.1.tar.gz", "has_sig": false, "md5_digest": "2f939029018cecfd79a7b45267a0cf85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 505197, "upload_time": "2011-05-28T12:10:09", "url": "https://files.pythonhosted.org/packages/37/81/fd5a1dd8ee051c47612d0ad68325957e8c0fa57f180c32190b908784794f/Cartridge-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "3d0405e8fab9f271baca9f41b28965e7", "sha256": "0e1ae4c5727802ef52d13f7be1d341f67fd3dc0bab612d18327401e217af75a7" }, "downloads": -1, "filename": "Cartridge-0.2.2.tar.gz", "has_sig": false, "md5_digest": "3d0405e8fab9f271baca9f41b28965e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 281249, "upload_time": "2011-06-30T12:59:52", "url": "https://files.pythonhosted.org/packages/8e/0a/f01c507767197665128fe027675c8b67a29cf77e6a25850474c37e9d31a6/Cartridge-0.2.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "57ad2f448f4037ae50ce8ce7778bf288", "sha256": "63ffb9a970863f42f621cbbd91f1b43d9bd875036d8895729efb11248df11e1a" }, "downloads": -1, "filename": "Cartridge-0.3.tar.gz", "has_sig": false, "md5_digest": "57ad2f448f4037ae50ce8ce7778bf288", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 285381, "upload_time": "2011-11-05T09:44:44", "url": "https://files.pythonhosted.org/packages/56/e6/f6fe049d1b8c5aaf5ac7c5a2ea7f96ef33d74c821b6f5c313a48b33d7244/Cartridge-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "e9a870117cf0952922f283918586201e", "sha256": "ca1ac64bf6d12ac49721f29f8da9340bd40ae30bbf22b8d5e490d91e2dbfa0ed" }, "downloads": -1, "filename": "Cartridge-0.3.1.tar.gz", "has_sig": false, "md5_digest": "e9a870117cf0952922f283918586201e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 492637, "upload_time": "2011-11-05T10:18:46", "url": "https://files.pythonhosted.org/packages/28/0f/bc10cbb64e26696b448b6b78d4d5a10c6f1b2ae3d6b8e14b00bfb72010a8/Cartridge-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "8786852bbf583d071ae61e9acb51c13e", "sha256": "9897ebaa5ce6dc8dd02647118535ed251a18aea975f1ca8f352a8b6d8dde86f1" }, "downloads": -1, "filename": "Cartridge-0.3.2.tar.gz", "has_sig": false, "md5_digest": "8786852bbf583d071ae61e9acb51c13e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 493882, "upload_time": "2011-11-11T06:01:32", "url": "https://files.pythonhosted.org/packages/71/d6/f21bb150db35109e3d446c3c0a9a5993e2172cd20b7d5764887d30700e1b/Cartridge-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "e47ed59d3e75e8f10688d8473c760ee7", "sha256": "3c6835202e4cd797f0dae8d395b426da079b7f43ca10c3e40fce763fe4e5b541" }, "downloads": -1, "filename": "Cartridge-0.3.3.tar.gz", "has_sig": false, "md5_digest": "e47ed59d3e75e8f10688d8473c760ee7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 493874, "upload_time": "2011-11-11T06:34:12", "url": "https://files.pythonhosted.org/packages/99/4d/28072f3418db7978d6520527a56848118996e3ed08302eb99c5b7cb80987/Cartridge-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "c94428578fc3f55b94e2d00961b6dbca", "sha256": "4da40b5784956221e619bdd75341b7e352b48b7ae535af9e98660a378eb77bb7" }, "downloads": -1, "filename": "Cartridge-0.3.4.tar.gz", "has_sig": false, "md5_digest": "c94428578fc3f55b94e2d00961b6dbca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 297385, "upload_time": "2011-11-13T02:44:19", "url": "https://files.pythonhosted.org/packages/f7/0d/82e4fde3e8dc311a47884ac11825ddb3546e4b31d86f798af7ab22bb56b7/Cartridge-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "463b268fdf18bbc5b5da860d0dd787fd", "sha256": "de15fbba32068db1d5b216eba9b95980718ada72b70a7066f44c192c8a513d05" }, "downloads": -1, "filename": "Cartridge-0.3.5.tar.gz", "has_sig": false, "md5_digest": "463b268fdf18bbc5b5da860d0dd787fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 300768, "upload_time": "2011-12-03T11:14:27", "url": "https://files.pythonhosted.org/packages/0f/96/ac99e44cb9614d61c817ef595aa4f369fe6258398bca878c5c37a260839c/Cartridge-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "ff9aadd2c02f36611197b9c4fd078811", "sha256": "1a29bf41d68341d19e9ba254e3cf1f08121efde4368fd34a7e4ef1f433a3ab9f" }, "downloads": -1, "filename": "Cartridge-0.3.6.tar.gz", "has_sig": false, "md5_digest": "ff9aadd2c02f36611197b9c4fd078811", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 301378, "upload_time": "2011-12-08T21:12:12", "url": "https://files.pythonhosted.org/packages/69/1d/7539dc15eefc03c9a13dbd8df1a0f344d03caf4c66ae5224a55f47d93aaa/Cartridge-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "7eb9d3e99e0a506d13a23489ad524d5b", "sha256": "799ca183ba92ce4ce34767f81a20af60d070e3a759278ad45e08d2bc12076b3f" }, "downloads": -1, "filename": "Cartridge-0.3.7.tar.gz", "has_sig": false, "md5_digest": "7eb9d3e99e0a506d13a23489ad524d5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 301380, "upload_time": "2011-12-09T11:31:43", "url": "https://files.pythonhosted.org/packages/c6/d2/0026cc62a0a555edda9d66aa581e7a75548c1a1efefd08b12f2b639b010a/Cartridge-0.3.7.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "77ceb14ac3cd6ca8762d94a763afafdb", "sha256": "b636f4b913849c116543ead48c7d9297776df0a7612d2cf19130dc9537e35df0" }, "downloads": -1, "filename": "Cartridge-0.4.0.tar.gz", "has_sig": false, "md5_digest": "77ceb14ac3cd6ca8762d94a763afafdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4024078, "upload_time": "2012-03-03T13:09:36", "url": "https://files.pythonhosted.org/packages/a6/a5/0633c35bc382609245cc573dbc4b7d9e5abaf88a05013ad3a5f3a2196155/Cartridge-0.4.0.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "11b4f4556a6630ffe165c02ee6b8f481", "sha256": "fbdbd8e4449a1d94098b9187a76b4be128c0ad0bf85efec6e1896ba8e853d04e" }, "downloads": -1, "filename": "Cartridge-0.4.2.tar.gz", "has_sig": false, "md5_digest": "11b4f4556a6630ffe165c02ee6b8f481", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 274477, "upload_time": "2012-03-05T21:51:22", "url": "https://files.pythonhosted.org/packages/a3/fe/b4cd1f6a039afdcf274495aa7d30a066d06c5c8d51370775f6f50fcd8305/Cartridge-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "0ee83d8ee429dabacd01ca758f0cdca3", "sha256": "0199c02e34ad0b30eae796d9fb436e50e5cd27b7d926848456d4348198201575" }, "downloads": -1, "filename": "Cartridge-0.4.3.tar.gz", "has_sig": false, "md5_digest": "0ee83d8ee429dabacd01ca758f0cdca3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 302236, "upload_time": "2012-03-12T00:16:58", "url": "https://files.pythonhosted.org/packages/7e/5b/078c6591c298cd2848b81f4dc10bd4ae83e88259aae0eefcb9b6560e0814/Cartridge-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "0ec42cf786dd68666d7169c55166ec71", "sha256": "801c29453a20a1c7c9c57065da01723c8708b76b1f8de4ffd6be5bdeb8929c92" }, "downloads": -1, "filename": "Cartridge-0.4.4.tar.gz", "has_sig": false, "md5_digest": "0ec42cf786dd68666d7169c55166ec71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2054946, "upload_time": "2012-03-19T10:54:56", "url": "https://files.pythonhosted.org/packages/2f/08/93d9b87c72ac6f38532745b5aac788244e9a2570e970a3fb9ec0d487d6e6/Cartridge-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "2f2d99bcaacc82295f43b0699f28c398", "sha256": "657ff1745973f6be8e81d98c527fd32cde00284c421500d142ebd836501354e5" }, "downloads": -1, "filename": "Cartridge-0.4.5.tar.gz", "has_sig": false, "md5_digest": "2f2d99bcaacc82295f43b0699f28c398", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1989880, "upload_time": "2012-03-19T11:42:19", "url": "https://files.pythonhosted.org/packages/e1/a1/2ce45c3a0443dcb5012b5ac02e3992c2b459fee5bdbe76e5112e122034c0/Cartridge-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "514cd245150621b36dbf91cd90e3fac5", "sha256": "86290e6e08bd299e99e139c051b0fa9b282aa2332bb138a4b1768933a092a4cb" }, "downloads": -1, "filename": "Cartridge-0.4.6.tar.gz", "has_sig": false, "md5_digest": "514cd245150621b36dbf91cd90e3fac5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2015666, "upload_time": "2012-03-19T21:12:43", "url": "https://files.pythonhosted.org/packages/ce/54/b1de9a9550698ad2afb4ff559a50ff0466fa33e5f354ee43195da7a5e805/Cartridge-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "c77bda030430b0291907989cd39ccdb0", "sha256": "c61016159d81d7c4249eaee8dd2d75dc80be4427e9df2902d5c496decf8de048" }, "downloads": -1, "filename": "Cartridge-0.4.7.tar.gz", "has_sig": false, "md5_digest": "c77bda030430b0291907989cd39ccdb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1986158, "upload_time": "2012-03-21T21:05:52", "url": "https://files.pythonhosted.org/packages/3e/d6/2c5f8442e3db0d146359bdf813779a397fa3dd8ab67a713d5688603133ea/Cartridge-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "6ff6813d1f4e349a0c7b6a1ea430c42e", "sha256": "75ee82653240c422ab1329c6199d720504f8439d0a3f5a8569f393fecb37b3b8" }, "downloads": -1, "filename": "Cartridge-0.4.8.tar.gz", "has_sig": false, "md5_digest": "6ff6813d1f4e349a0c7b6a1ea430c42e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1986161, "upload_time": "2012-03-24T04:45:38", "url": "https://files.pythonhosted.org/packages/96/80/fda45b993bc6552e3166e532de529195c4faafa5432758c6a4521ee088e3/Cartridge-0.4.8.tar.gz" } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "bce9745f96553a65767834df7ca5dc35", "sha256": "e2dcead883279d022500cffee3ee20637c6c4aaa2b8a9f4772b9aa908aeb1cac" }, "downloads": -1, "filename": "Cartridge-0.4.9.tar.gz", "has_sig": false, "md5_digest": "bce9745f96553a65767834df7ca5dc35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2008196, "upload_time": "2012-03-24T13:01:32", "url": "https://files.pythonhosted.org/packages/c1/3b/19e1341000530309dbab65d5ab80f18ca2d36780629a3c9dfe4067034f1a/Cartridge-0.4.9.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "76a5dc49183216ce197fefca8b78d79c", "sha256": "7a91c3d5bb201cfda3ed44693249980bb790422b7584fa02e7abcaf0169542d7" }, "downloads": -1, "filename": "Cartridge-0.5.0.tar.gz", "has_sig": false, "md5_digest": "76a5dc49183216ce197fefca8b78d79c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2105452, "upload_time": "2012-06-03T11:33:42", "url": "https://files.pythonhosted.org/packages/62/cf/46684169b745fec259a3dbe20849940d04147f1d629ac573d13f95f02281/Cartridge-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "baa63ec76f039b1e75fd9020c2413195", "sha256": "f684371ac37a655f97d43d43c9eca0acb5e9a07e78fe90d54db9b848cba7b39d" }, "downloads": -1, "filename": "Cartridge-0.5.1.tar.gz", "has_sig": false, "md5_digest": "baa63ec76f039b1e75fd9020c2413195", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2168458, "upload_time": "2012-06-04T14:45:21", "url": "https://files.pythonhosted.org/packages/14/b9/286fbee61fdb1cc6cefb855fb5fc2c26d824b8c146b7a2b7c39c4b8afcf6/Cartridge-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "3290955015e1c49dab9909bf27d2fdb2", "sha256": "6ea1c90407de8da42c2dd1924794f01f07a601751515b0286cbd0a53d8dba13d" }, "downloads": -1, "filename": "Cartridge-0.5.2.tar.gz", "has_sig": false, "md5_digest": "3290955015e1c49dab9909bf27d2fdb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2169334, "upload_time": "2012-06-04T23:22:10", "url": "https://files.pythonhosted.org/packages/e2/c6/93acfaa075849bdcb9b03f2adc886f7ce7fe1c3e07b7d8c10d98cb6eb534/Cartridge-0.5.2.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "0d25f5b8c90663a4a4a46a7f889215bc", "sha256": "6bdbf87a652e00644f7004749e64dca66832b7ea4e6be5df766ec59e41f4e0a3" }, "downloads": -1, "filename": "Cartridge-0.6.0.tar.gz", "has_sig": false, "md5_digest": "0d25f5b8c90663a4a4a46a7f889215bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2172321, "upload_time": "2012-08-05T04:03:09", "url": "https://files.pythonhosted.org/packages/76/a9/0c21269169aaf92232fdbfe648216d5d58f3d584c905ac6defed8bc786e0/Cartridge-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "e1ffe5bc8d13833702fcecd57af1225b", "sha256": "bcfa7f9990f1cff62b55db67cece1a073a7ed653929a46afb9508f0bbc7b65ff" }, "downloads": -1, "filename": "Cartridge-0.7.0.tar.gz", "has_sig": false, "md5_digest": "e1ffe5bc8d13833702fcecd57af1225b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2362239, "upload_time": "2012-12-26T02:45:30", "url": "https://files.pythonhosted.org/packages/8e/72/6a4cdf211db7aa9e45849ff5af9e5cf6d8fba8712bcc29fe956cc3b501ae/Cartridge-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "b31c2c12e63a37d825fbe59f7ecfcb24", "sha256": "b2b51e629aec3f4860dcf748fdc7f845129be93e071dd1b9956ebe70d8389c1a" }, "downloads": -1, "filename": "Cartridge-0.8.0.tar.gz", "has_sig": false, "md5_digest": "b31c2c12e63a37d825fbe59f7ecfcb24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2431973, "upload_time": "2013-02-17T08:55:44", "url": "https://files.pythonhosted.org/packages/e2/cd/4f8451f6d5e1ea330ba3fb885a330bcf3f13b01c8490ca4c6e3dd521b8e4/Cartridge-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "153feb4308c33e120d793a2e9e518b64", "sha256": "922f329f58da1cdc3c52b5806fc61206e479bf3c68c5db33d3587ec2fe2e107d" }, "downloads": -1, "filename": "Cartridge-0.8.1.tar.gz", "has_sig": false, "md5_digest": "153feb4308c33e120d793a2e9e518b64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2500977, "upload_time": "2013-02-23T08:07:48", "url": "https://files.pythonhosted.org/packages/3f/5f/6cb95d991509af4e3f3ef908d16365c201e353e91dbd90ecdb00782207b9/Cartridge-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "fa8df5f867a285c1b63e092d001e6138", "sha256": "a1cedd7de1232fd30f6eab450080d0721904e356f824c85231de4326bc73ffe6" }, "downloads": -1, "filename": "Cartridge-0.8.2.tar.gz", "has_sig": false, "md5_digest": "fa8df5f867a285c1b63e092d001e6138", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2579857, "upload_time": "2013-03-30T23:55:18", "url": "https://files.pythonhosted.org/packages/48/1c/2e4815d43ec63bf7662b65bf397e95fce3c786a73a00406514a27ec59460/Cartridge-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "5ae9a166658d05dc5a1b909fe59debe1", "sha256": "904a1d07f5ff711bde8615b887b4df4e3b8f4d5dbcc7e3007665766d76b5484c" }, "downloads": -1, "filename": "Cartridge-0.8.3.tar.gz", "has_sig": false, "md5_digest": "5ae9a166658d05dc5a1b909fe59debe1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2707561, "upload_time": "2013-08-26T21:23:46", "url": "https://files.pythonhosted.org/packages/41/33/17544338dbb8fa924961b4e827670501c35c4ef7e013b4d19aee71ecf221/Cartridge-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "061172043112383247dae24e56071eb2", "sha256": "e66aa485ca6f6674e19857099d2917063441ea48582bd8b843af817eb6589d7f" }, "downloads": -1, "filename": "Cartridge-0.8.4.tar.gz", "has_sig": false, "md5_digest": "061172043112383247dae24e56071eb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2675181, "upload_time": "2013-09-29T10:12:04", "url": "https://files.pythonhosted.org/packages/52/4b/0d91614e81a45f2fcde060d9cb0d9867019ce7ee3601b4718a576854507d/Cartridge-0.8.4.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "54ed406761a0a57aae84b09a7199c4e5", "sha256": "36191ad3992e45e67c7191e2e99968f94f5903277ee494d8b59a381fc18001bc" }, "downloads": -1, "filename": "Cartridge-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "54ed406761a0a57aae84b09a7199c4e5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 605228, "upload_time": "2013-12-24T09:25:45", "url": "https://files.pythonhosted.org/packages/d3/67/adda6536f806e19104c2139c4f0511a5da1696c597bac88d6e80cec29f82/Cartridge-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "78f8a32b9803a16731b441037040ee46", "sha256": "eb0f13d9f41e417800c8cf450e647334ed2ebf1963f72b000a51aef6bb442292" }, "downloads": -1, "filename": "Cartridge-0.9.0.tar.gz", "has_sig": false, "md5_digest": "78f8a32b9803a16731b441037040ee46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2976518, "upload_time": "2013-12-24T09:25:31", "url": "https://files.pythonhosted.org/packages/50/6a/cab6be06a8d463de90eee6f2400462b9b7c111d1f90ccdab7e911d84ceca/Cartridge-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "6ea50ecd2b5e1a60cbc2640b0d6fbd28", "sha256": "edd56375307cc49017b738612bd90f4f9b655d82a9e95a61d15d644a43d9c464" }, "downloads": -1, "filename": "Cartridge-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6ea50ecd2b5e1a60cbc2640b0d6fbd28", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 605243, "upload_time": "2013-12-24T10:20:09", "url": "https://files.pythonhosted.org/packages/ea/4b/2b8940abbc40ddabf48029a1f2244370a3108c197620386acb7f0aa43655/Cartridge-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a590529c5b6566423cce5f291adcd351", "sha256": "e83e8c734b92c716055bd787b2bbac31455e9320db6870415f8e934d1c59c9a1" }, "downloads": -1, "filename": "Cartridge-0.9.1.tar.gz", "has_sig": false, "md5_digest": "a590529c5b6566423cce5f291adcd351", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2863042, "upload_time": "2013-12-24T10:19:56", "url": "https://files.pythonhosted.org/packages/bb/80/5317d57e507dcc78a442e16393b40fba8be1926d7b540362769a3ec38c58/Cartridge-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "786d44ff92bc09b019947d19ae1e8dbc", "sha256": "edfea6c643fc4eb1a56b204e5144d376adb0aae5c5218525365c1642e33dfa59" }, "downloads": -1, "filename": "Cartridge-0.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "786d44ff92bc09b019947d19ae1e8dbc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 605450, "upload_time": "2014-01-17T22:42:12", "url": "https://files.pythonhosted.org/packages/ad/cb/06b7dfb3def5f2e1549f855b411d4e9455de6c5d2f78d4beddf2cbbdb199/Cartridge-0.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b99ad24e2a31189c633b9549f05bae6f", "sha256": "8befd3b1fec80fd551022582e400520066db1176151d037a1f93ffa04e3c9122" }, "downloads": -1, "filename": "Cartridge-0.9.2.tar.gz", "has_sig": false, "md5_digest": "b99ad24e2a31189c633b9549f05bae6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2906250, "upload_time": "2014-01-17T22:41:43", "url": "https://files.pythonhosted.org/packages/92/e1/b78d81a3385589f9530156f59131c95e1a4a9f2a753737b26611b9e87a7d/Cartridge-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "8b2f676f0eb95a892c04f95bd9a70639", "sha256": "bfb12cfc4f840e62ea9072d334adc3bf72903533f124dff1576cb7128ccbc3fd" }, "downloads": -1, "filename": "Cartridge-0.9.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8b2f676f0eb95a892c04f95bd9a70639", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 607521, "upload_time": "2014-04-18T11:42:12", "url": "https://files.pythonhosted.org/packages/31/2a/1fbf019c45eb25d265d59e7f79f072ae581873901a8e0002f1f2878fc764/Cartridge-0.9.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d1f3500f8173d632449bedd30a558043", "sha256": "556d2b76294cb7950e968652e8b9d4dfcb67deca3d5a2692accefa7bd37ad2e8" }, "downloads": -1, "filename": "Cartridge-0.9.3.tar.gz", "has_sig": false, "md5_digest": "d1f3500f8173d632449bedd30a558043", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3166307, "upload_time": "2014-04-18T11:41:58", "url": "https://files.pythonhosted.org/packages/ae/73/d628cbcf87040b1eb2d3e3f450202dadf58d3384ff3ab9fd80e29299a655/Cartridge-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "53d8509a4482a7384ce26c7d77299a33", "sha256": "7eb96cc9f5b59aad023fbfac988dc28900edc8463cb91b34f90a37f8cac51996" }, "downloads": -1, "filename": "Cartridge-0.9.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53d8509a4482a7384ce26c7d77299a33", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 610679, "upload_time": "2014-06-09T04:36:55", "url": "https://files.pythonhosted.org/packages/5b/39/172b126a690da9681169c7daae6a117bce205f5312022a8aee27e11a938c/Cartridge-0.9.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43a9625a24f545184f799de7df6d97ba", "sha256": "278f7ac6fa857d7a0f2c9987282b926c35bb300331c90c08d499b05e3c18a8d2" }, "downloads": -1, "filename": "Cartridge-0.9.4.tar.gz", "has_sig": false, "md5_digest": "43a9625a24f545184f799de7df6d97ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3121751, "upload_time": "2014-06-09T04:36:38", "url": "https://files.pythonhosted.org/packages/fa/31/4ab6522a3da2b384b3e8e6a3422fd96ca0612c5dd8c9eac5008d793a385e/Cartridge-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "a686513ba5108bbce62a0a45e134bd3a", "sha256": "6401bde32d2bf4b85e6986a29859c87a2b7fb2677e6ab3768ffac218aa496e87" }, "downloads": -1, "filename": "Cartridge-0.9.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a686513ba5108bbce62a0a45e134bd3a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 611773, "upload_time": "2014-08-11T10:18:19", "url": "https://files.pythonhosted.org/packages/ef/fc/e12d9e891d736fd2bf359d1614047ad28a28a9e01a2f128516626ff389e2/Cartridge-0.9.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d9b26e7a33e1dbafbee3f99b42f1d408", "sha256": "26c4fd37e0dd2be8ec233f1a98c57330101f5836451b5cb17818f415119611dc" }, "downloads": -1, "filename": "Cartridge-0.9.5.tar.gz", "has_sig": false, "md5_digest": "d9b26e7a33e1dbafbee3f99b42f1d408", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2926162, "upload_time": "2014-08-11T10:18:05", "url": "https://files.pythonhosted.org/packages/c9/cc/b61006f262db10d3d152808c4ff1cc75bb42c673939b57d0c22b5cba4c69/Cartridge-0.9.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e1018f810a64a5b60a2c9fb5b5bb5025", "sha256": "ff488a0d67cd6df040f75d6c8e232d401a13f33798c466776c7d2655cf2076d0" }, "downloads": -1, "filename": "Cartridge-0.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e1018f810a64a5b60a2c9fb5b5bb5025", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 577017, "upload_time": "2018-06-15T01:44:14", "url": "https://files.pythonhosted.org/packages/49/59/aee540a98b34dc50f17f9d62c879d4a898ca46e9efc8f1f0819cc2f4f44a/Cartridge-0.13.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad1be8d3e808922710938ae2ddf617e2", "sha256": "55628dff1bfcc0a2148d1a6507762231d1bd8c9b5a9362d8e32e74c90b7a731b" }, "downloads": -1, "filename": "Cartridge-0.13.0.tar.gz", "has_sig": false, "md5_digest": "ad1be8d3e808922710938ae2ddf617e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2946596, "upload_time": "2018-06-15T01:44:07", "url": "https://files.pythonhosted.org/packages/ec/2f/b7e1c2b15edc06dc05d648cfc09b83943e91d704ec8b237e7e3d1a97d5d0/Cartridge-0.13.0.tar.gz" } ] }