{ "info": { "author": "Bay Citizen & Texas Tribune", "author_email": "dev@armstrongcms.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7" ], "description": "armstrong.core.arm_sections\n===========================\n\n.. image:: https://travis-ci.org/armstrong/armstrong.core.arm_sections.svg?branch=master\n :target: https://travis-ci.org/armstrong/armstrong.core.arm_sections\n :alt: TravisCI status\n.. image:: https://coveralls.io/repos/armstrong/armstrong.core.arm_sections/badge.png\n :target: https://coveralls.io/r/armstrong/armstrong.core.arm_sections\n :alt: Coverage status\n.. image:: https://pypip.in/version/armstrong.core.arm_sections/badge.png\n :target: https://pypi.python.org/pypi/armstrong.core.arm_sections/\n :alt: PyPI Version\n.. image:: https://pypip.in/license/armstrong.core.arm_sections/badge.png\n :target: https://pypi.python.org/pypi/armstrong.core.arm_sections/\n :alt: License\n\nProvides content categorization within an Armstrong site.\n\nThe ``Section`` model provides hierarchical organization for content, or\nreally for anything you'd like to organize. In the Armstrong ecosystem\nwe organize articles. For example, the Texas Tribune has an Immigration\nsection which in turn has Sanctuary Cities and Dream Act as children\nsections. Like a typical tree structure, anything belonging to a child\nalso belongs to the parent. You can also ignore the hierarchy and create\na flat structure.\n\nArmSections also provides a basic View for items in a section and a template\ntag for displaying (and linking to) all the sections. Also available is a\nFeed view, an Admin display mixin and a queryset manager for use on the\ncontent items. These aren't documented as they should be...\n\n\nUsage\n-----\nAdd a ``section`` field to any model that you would like to show up\nin a given section. ::\n\n # models.py\n from django.db import models\n from armstrong.core.arm_sections.models import Section\n\n class MyArticle(models.Model):\n title = models.CharField(max_length=100)\n body = models.TextField()\n section = models.ForeignKey(Section)\n\nYou can also relate to multiple sections through a ``ManyToManyField``::\n\n class MyArticle(models.Model):\n sections = models.ManyToManyField(Section)\n\nSections are designed to hold items of a single model type (or a single\nparent type, inheritance is fine. Actually inheritance is one of ArmSections'\nstrengths). If you aren't using the ``armstrong.apps.content`` companion\npackage, you'll need to set ``ARMSTRONG_SECTION_ITEM_MODEL`` in settings.\n\nOn the other side of the relationship, Sections have ``items`` and\n``published`` attributes that allow different access to the associated\ncontent. These attributes are powered by configurable backends for\nflexibility so you can tailor the lookup. For example, \"published\" might\nmean a non-draft flag on the content or a combination of flag and date;\nswap the ``published`` backend to meet the need.\n\n``ItemFilter`` and ``PublishedItemFilter`` are the defaults and tie into\n`managers`_ used in the companion (but not required)\n`armstrong.core.arm_content`_. They also know about `django-model-utils`_\nInheritanceManager and will utilize ``select_subclasses()`` if available.\n\n\n.. _managers: https://docs.djangoproject.com/en/1.6/topics/db/managers/\n.. _armstrong.core.arm_content: https://github.com/armstrong/armstrong.core.arm_content\n.. _django-model-utils: https://github.com/carljm/django-model-utils\n\n\n.. Pull this next sub-section into real documentation and expand it\n\nDisplaying Sections\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\nYou can display a section through the ``SimpleSectionView`` class-based-view\n(CBV). First, setup a named URL route::\n\n url(r'^section/(?P[-\\w/]+)',\n SimpleSectionView.as_view(template_name='section.html'),\n name='section_view'),\n\nThen use the ``{% section_menu %}`` template tag to display a list of all\nsections inside your template. ``{% load section_helpers %}`` first to use the\ntemplate tag and provide a ``section_view`` kwarg that is the named URL route\nassociated with your section view. Putting it together::\n\n {% load section_helpers %}\n {% section_menu section_view='section_view' %}\n\nWith the following sections in your database... ::\n\n Politics\n Sports\n Football\n Basketball\n Fashion\n\n...and the example so far, the output from your template would look like this::\n\n \n\n\nInstallation & Configuration\n----------------------------\nSupports Django 1.3, 1.4, 1.5, 1.6, 1.7 on Python 2.6 and 2.7.\n(Though if you are using Django 1.3, make sure to use django-mptt<0.6.)\n\n#. ``pip install armstrong.core.arm_sections``\n\n#. Add ``armstrong.core.arm_sections`` to your ``INSTALLED_APPS``\n\n#. Install the database schema\n\n * Django 1.7+ use ``manage.py migrate``\n * previous Djangos use either ``manage.py syncdb`` or ``manage.py migrate``\n if you are using `South`_ (in which case use South 1.0+)\n\n**Optional Settings:** (Used in ``settings.py``)\n\nThere are three settings that you can use to change the behavior of this\ncomponent and its relation to content items.\n\n``ARMSTRONG_SECTION_ITEM_BACKEND``\n This is used to configure which backend is used to find the items\n associated with a given ``Section``. (default:\n ``armstrong.core.arm_sections.backend.ItemFilter``)\n\n``ARMSTRONG_SECTION_PUBLISHED_BACKEND``\n Same as ITEM_BACKEND except it is designed for limiting to published items.\n (default: ``armstrong.core.arm_sections.backend.PublishedItemFilter``)\n\n``ARMSTRONG_SECTION_ITEM_MODEL``\n Used by the two default backends to determine which model has a section\n associated with it. (default: ``armstrong.apps.content.models.Content``)\n\n.. _South: http://south.aeracode.org/\n\n\nContributing\n------------\nDevelopment occurs on Github. Participation is welcome!\n\n* Found a bug? File it on `Github Issues`_. Include as much detail as you\n can and make sure to list the specific component since we use a centralized,\n project-wide issue tracker.\n* Testing? ``pip install tox`` and run ``tox``\n* Have code to submit? Fork the repo, consolidate your changes on a topic\n branch and create a `pull request`_. The `armstrong.dev`_ package provides\n tools for testing, coverage and South migration as well as making it very\n easy to run a full Django environment with this component's settings.\n* Questions, need help, discussion? Use our `Google Group`_ mailing list.\n\n.. _Github Issues: https://github.com/armstrong/armstrong/issues\n.. _pull request: http://help.github.com/pull-requests/\n.. _armstrong.dev: https://github.com/armstrong/armstrong.dev\n.. _Google Group: http://groups.google.com/group/armstrongcms\n\n\nState of Project\n----------------\n`Armstrong`_ is an open-source news platform that is freely available to any\norganization. It is the result of a collaboration between the `Texas Tribune`_\nand `Bay Citizen`_ and a grant from the `John S. and James L. Knight\nFoundation`_. Armstrong is available as a complete bundle and as individual,\nstand-alone components.\n\n.. _Armstrong: http://www.armstrongcms.org/\n.. _Bay Citizen: http://www.baycitizen.org/\n.. _Texas Tribune: http://www.texastribune.org/\n.. _John S. and James L. Knight Foundation: http://www.knightfoundation.org/\n", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/armstrong/armstrong.core.arm_sections/", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "armstrong.core.arm_sections", "package_url": "https://pypi.org/project/armstrong.core.arm_sections/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/armstrong.core.arm_sections/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/armstrong/armstrong.core.arm_sections/" }, "release_url": "https://pypi.org/project/armstrong.core.arm_sections/1.6.0/", "requires_dist": null, "requires_python": null, "summary": "Provides hierarchical taxonomy for content", "version": "1.6.0" }, "last_serial": 1216696, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "c027b4beeb7e3ef4d802f555ea351ac6", "sha256": "312a6bd268f1f58720b3612d67ff72b1fbca527d6d3a84094bdff71da0fb69d6" }, "downloads": -1, "filename": "armstrong.core.arm_sections-0.1.tar.gz", "has_sig": false, "md5_digest": "c027b4beeb7e3ef4d802f555ea351ac6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6883, "upload_time": "2011-05-19T01:37:24", "url": "https://files.pythonhosted.org/packages/33/29/c38933ae0d3cfb35ba72b4f3fe798eab4bd12b703f3206a8f335f4d54693/armstrong.core.arm_sections-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "a2ef91739c468ec936e48dd31af50d23", "sha256": "0191d0994b96ed8f634454313382327faa30aa5504df02995ff29bc04cc9392a" }, "downloads": -1, "filename": "armstrong.core.arm_sections-0.1.1.tar.gz", "has_sig": false, "md5_digest": "a2ef91739c468ec936e48dd31af50d23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6900, "upload_time": "2011-05-19T23:38:07", "url": "https://files.pythonhosted.org/packages/97/fa/dc0ea03568e32445f2222bbe435d4deeb488dd09bc8145d0ceee719032a8/armstrong.core.arm_sections-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "0893e004b17331bf5fda968746eaec92", "sha256": "25097504d6f68047b3dbbf329e9990666862e351700476b4d858d137030f903d" }, "downloads": -1, "filename": "armstrong.core.arm_sections-0.1.2.tar.gz", "has_sig": false, "md5_digest": "0893e004b17331bf5fda968746eaec92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3307, "upload_time": "2011-05-19T23:40:52", "url": "https://files.pythonhosted.org/packages/90/81/eb92ad7c08f73bcfd21895e412bd23d445873aaed310d39de919f2ff4908/armstrong.core.arm_sections-0.1.2.tar.gz" } ], "0.1.2.1": [ { "comment_text": "", "digests": { "md5": "129f8049f0ecd61fa3594aff1db8c4cf", "sha256": "e6899cfd6d02a7ce9b05498e1c91a912bbdf706f829c0e33cd0d9cee26766968" }, "downloads": -1, "filename": "armstrong.core.arm_sections-0.1.2.1.tar.gz", "has_sig": false, "md5_digest": "129f8049f0ecd61fa3594aff1db8c4cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3233, "upload_time": "2011-06-11T21:12:36", "url": "https://files.pythonhosted.org/packages/80/82/6e2813c414909ee263ded17817ae42b16dc7c77b7e9ba3d289e6767c525c/armstrong.core.arm_sections-0.1.2.1.tar.gz" } ], "0.1.2.2": [ { "comment_text": "", "digests": { "md5": "c29c7381755aae40ecfaffc494d797ed", "sha256": "c5ce6b637fb54a22e1482accd2dff234f5481a10849836837c990804816d7a69" }, "downloads": -1, "filename": "armstrong.core.arm_sections-0.1.2.2.tar.gz", "has_sig": false, "md5_digest": "c29c7381755aae40ecfaffc494d797ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3320, "upload_time": "2011-06-21T00:45:39", "url": "https://files.pythonhosted.org/packages/57/53/db89fca897529309cf5a8c29b5d4ba4534614ff240250d0bc4ecbe11b425/armstrong.core.arm_sections-0.1.2.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "e02971dad10c874966acb3937f5fa60e", "sha256": "be0132b321d274fa4c3817c9dfe46c1f91116c08e9fd95fcbc2883d5270950da" }, "downloads": -1, "filename": "armstrong.core.arm_sections-0.2.0.tar.gz", "has_sig": false, "md5_digest": "e02971dad10c874966acb3937f5fa60e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11776, "upload_time": "2011-07-26T19:55:50", "url": "https://files.pythonhosted.org/packages/7b/6e/9da8e7e4ed872a259aca8801ba273654e57a586421225e0a9ef92ba1378f/armstrong.core.arm_sections-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "ebc29e2d200538998c3a23b6966d97a2", "sha256": "aaeedad0d1d6b740f676e3763ed8578e78c9bc6d515f29f1ab5bf235fb9cec0d" }, "downloads": -1, "filename": "armstrong.core.arm_sections-0.2.1.tar.gz", "has_sig": false, "md5_digest": "ebc29e2d200538998c3a23b6966d97a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11803, "upload_time": "2011-07-26T23:49:13", "url": "https://files.pythonhosted.org/packages/e2/3c/9e1f527132fb6f387fa2fd7a2c5c935f8a213b9b40caabc13e55c525a462/armstrong.core.arm_sections-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "c4c32f06d867a9174620065a0b0b084b", "sha256": "40150b92c0032c2596153cfcbd17ce78ac382e17559f03359f4f9ac11b97a1b8" }, "downloads": -1, "filename": "armstrong.core.arm_sections-0.3.0.tar.gz", "has_sig": false, "md5_digest": "c4c32f06d867a9174620065a0b0b084b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12062, "upload_time": "2011-08-22T21:46:19", "url": "https://files.pythonhosted.org/packages/08/cf/bfae13eef11dfe6c8033c55543f9404d5e72a0e134fb41ad1b17f3dbb360/armstrong.core.arm_sections-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "f8408cee1ed510e8db487db446fa4c96", "sha256": "759720c3fb62693055f17123949ca48fa98803080c98f65a75a64a0d0c51c84e" }, "downloads": -1, "filename": "armstrong.core.arm_sections-0.3.1.tar.gz", "has_sig": false, "md5_digest": "f8408cee1ed510e8db487db446fa4c96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12071, "upload_time": "2011-09-15T22:07:05", "url": "https://files.pythonhosted.org/packages/6f/42/34a501954a588a4dae03d7d70b80c666d387989991d4f131b1dca8f508b8/armstrong.core.arm_sections-0.3.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "a8fda9d6da293678f3f505b9a160e0cf", "sha256": "47104d73f088dbe35bbf0520b3b271a85bbe87509e988143434d7cdfac797974" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.0.0.tar.gz", "has_sig": false, "md5_digest": "a8fda9d6da293678f3f505b9a160e0cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12685, "upload_time": "2011-10-01T01:39:26", "url": "https://files.pythonhosted.org/packages/e7/57/7f15400c9629cb30d97f88d67afa4e4a28bf9bebec344ca76a8fd909bd01/armstrong.core.arm_sections-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "3857c44af0a2b08c3f6b20e88919ec99", "sha256": "95ecd90cbe37433ae206072e4bc5b67d0fe03b091faffafe928dfc1682be931f" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.0.1.tar.gz", "has_sig": false, "md5_digest": "3857c44af0a2b08c3f6b20e88919ec99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12658, "upload_time": "2011-12-20T22:33:43", "url": "https://files.pythonhosted.org/packages/2a/c0/d72a9f9b6c5f23fbcadc74917b07955e42babee176fc945d1bf779747e2a/armstrong.core.arm_sections-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "4ae8c77ee331437fc5aac060cb339b8e", "sha256": "52de6a0ca1798f5a7c736a044734938a2820181d6420683fa3107396f0266dcf" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.1.0.tar.gz", "has_sig": false, "md5_digest": "4ae8c77ee331437fc5aac060cb339b8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14464, "upload_time": "2012-01-24T22:08:18", "url": "https://files.pythonhosted.org/packages/41/a0/51b066132ae2b0f5a14a5af97a612124664624767a1fe5ce5cbd214f394f/armstrong.core.arm_sections-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "2fbf7cb83f21af80e2c9184057211366", "sha256": "2373d3df2b639b6c22d0adeaa6bef91c296253728489aaf26404484bd4939820" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.1.1.tar.gz", "has_sig": false, "md5_digest": "2fbf7cb83f21af80e2c9184057211366", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14435, "upload_time": "2012-03-06T23:34:56", "url": "https://files.pythonhosted.org/packages/e9/a1/bbbc9bac2e14b721f5561b2764bfe1de7cccc72f684c01bc69cff49b1baf/armstrong.core.arm_sections-1.1.1.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "6d49200073a26c0de027e6c9e076ee65", "sha256": "2c9d70aa6980e322057980051f2eab759c4980a0807a3dd5575e0c0fe85b3a12" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.2.0.tar.gz", "has_sig": false, "md5_digest": "6d49200073a26c0de027e6c9e076ee65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15231, "upload_time": "2012-01-30T21:02:36", "url": "https://files.pythonhosted.org/packages/79/97/3a14c196934ab0527e6554b3a22e81e5e8d2a816d4e476fd4616168c3e98/armstrong.core.arm_sections-1.2.0.tar.gz" } ], "1.2.0.1": [ { "comment_text": "", "digests": { "md5": "19014d5eaf2af3fd942c0d9e4fc71915", "sha256": "1c6548d7a6052b85aa7660cfc76cb4eda433280c8fc7422fd7e5b89e6ee16252" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.2.0.1.tar.gz", "has_sig": false, "md5_digest": "19014d5eaf2af3fd942c0d9e4fc71915", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15180, "upload_time": "2012-01-30T21:09:54", "url": "https://files.pythonhosted.org/packages/6c/98/309b2ca15b43734c129dd8c3fcafd1acff75a4d23af73d0bf9ca0f620ee7/armstrong.core.arm_sections-1.2.0.1.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "84ddc665e4df1cc7d769f61503db98ec", "sha256": "d3066bd9aaf4d1c2b96d98c45f6b09f9aabdb81af53a6bc98c3aeebd16bd79fe" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.2.1.tar.gz", "has_sig": false, "md5_digest": "84ddc665e4df1cc7d769f61503db98ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15110, "upload_time": "2012-03-06T23:36:16", "url": "https://files.pythonhosted.org/packages/37/4c/0705a840acef40c846b6d589645beb35d17d312ab033d65a7490189f21ba/armstrong.core.arm_sections-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "0474230fbb9330e31b20cd39d1beec25", "sha256": "99151c314d73e97550b43e082497c71dbec5b95bcc57a0ee95ca8fa6e160d0bb" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.3.0.tar.gz", "has_sig": false, "md5_digest": "0474230fbb9330e31b20cd39d1beec25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15120, "upload_time": "2012-03-06T23:49:16", "url": "https://files.pythonhosted.org/packages/37/3f/72432ef51d645b54e5e846c32414c448017aaaee420021d8e9bbba5e6388/armstrong.core.arm_sections-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "cc6c339d51ebb8f337bb338d0fcb0b29", "sha256": "7c4796f7f2d95c70ea24b78d3bbdf84c432c6baf47cff24ee019ddee06b6d5c0" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.4.0.tar.gz", "has_sig": false, "md5_digest": "cc6c339d51ebb8f337bb338d0fcb0b29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17152, "upload_time": "2012-03-16T02:57:15", "url": "https://files.pythonhosted.org/packages/53/1e/0999544217b0dca26de69e661995ead4f81e5555d1af718d0b6d0108a8a8/armstrong.core.arm_sections-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "fb778c55d5108b5681848717bd535f8e", "sha256": "364c519ed3acb52db22366a051eabb04b7e6420e8b477ec2062856edb75f1a47" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.5.0.tar.gz", "has_sig": false, "md5_digest": "fb778c55d5108b5681848717bd535f8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17580, "upload_time": "2012-03-20T21:41:00", "url": "https://files.pythonhosted.org/packages/a0/69/9b59fa81cbd698f5e4f6f1cef1458d6a5005cf39e4b81367b22f0290c55d/armstrong.core.arm_sections-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "986d966d1acf60fb00709e70842ce56f", "sha256": "d7d1b9e49e27c90ae34c2096fc1e669346f41bbdd465a0c90a3aa157534b2573" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.5.1.tar.gz", "has_sig": false, "md5_digest": "986d966d1acf60fb00709e70842ce56f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17788, "upload_time": "2012-03-20T22:30:44", "url": "https://files.pythonhosted.org/packages/60/c7/56c780e8814e9877034622de25b866dbe0cb5095aa213aff5888e86cff7a/armstrong.core.arm_sections-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "84ccf633a89d8d46f5d4b7d26be3b1a5", "sha256": "dfa94a1873a22d1ca5c0d67ac7a702cff7fd16ada161e5e1d49aecd839200a02" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.5.2.tar.gz", "has_sig": false, "md5_digest": "84ccf633a89d8d46f5d4b7d26be3b1a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17608, "upload_time": "2012-03-29T23:07:03", "url": "https://files.pythonhosted.org/packages/5e/69/7123ed4324a5adbf8fa541cbd51d2574b4f3eb457e005b8e93a34223693d/armstrong.core.arm_sections-1.5.2.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "3977f30a664803838e5983df96c8be43", "sha256": "c52495155615f7067deb6b2bdee80ab893e08da027631269db44ad077d06a832" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.5.3.tar.gz", "has_sig": false, "md5_digest": "3977f30a664803838e5983df96c8be43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21231, "upload_time": "2012-03-30T01:12:27", "url": "https://files.pythonhosted.org/packages/70/bd/0899ce344bed4a416f2fdc23f3b6f3c3345227c09ddbc0bfc4a3aaa5eaba/armstrong.core.arm_sections-1.5.3.tar.gz" } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "68742cc532c9c6c0a64d354b041e8846", "sha256": "36b8752c8e0e0ddbcae64d3987ef8d03dc16337ec535a541b2379ad2cdad2333" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.5.4.tar.gz", "has_sig": false, "md5_digest": "68742cc532c9c6c0a64d354b041e8846", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21242, "upload_time": "2013-01-22T14:36:55", "url": "https://files.pythonhosted.org/packages/78/0f/717281fa2bb23892ca4a409b48a6ebdc5988408a3e4a8398ee686946e44f/armstrong.core.arm_sections-1.5.4.tar.gz" } ], "1.5.5": [ { "comment_text": "", "digests": { "md5": "765b36a388f3d317d575148f4fd3876f", "sha256": "25eef630c9a7c642994a69870f2b1566a43087f482971c11e83acebc772db955" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.5.5.tar.gz", "has_sig": false, "md5_digest": "765b36a388f3d317d575148f4fd3876f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21236, "upload_time": "2013-02-20T21:58:57", "url": "https://files.pythonhosted.org/packages/e1/f4/6b9d5a02394d3fc8b46ceca4a6cf34642eb6f1b8409785e831323fda645b/armstrong.core.arm_sections-1.5.5.tar.gz" } ], "1.5.6": [ { "comment_text": "", "digests": { "md5": "cd9777cda6d1d9f5502d9ad164887738", "sha256": "18c04405162026dd1cc396955b4f6dfb87db180d69b215321377579bf38461bc" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.5.6.tar.gz", "has_sig": false, "md5_digest": "cd9777cda6d1d9f5502d9ad164887738", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21235, "upload_time": "2013-02-20T22:14:46", "url": "https://files.pythonhosted.org/packages/91/97/630ddd4044fd9522ff33904b2d1d49fb91558bc0c326110f813a4ddd8748/armstrong.core.arm_sections-1.5.6.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "d6357f6dc4f9579ad5dbb07b5fd24a80", "sha256": "d92c8e8fa49c2579af5538eabbbf1b8689ce6048a0c8792b01d27bfa0ffaaf37" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.6.0.tar.gz", "has_sig": false, "md5_digest": "d6357f6dc4f9579ad5dbb07b5fd24a80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14994, "upload_time": "2014-09-08T06:40:18", "url": "https://files.pythonhosted.org/packages/58/d5/69af4751076e68c97ccf98084c92e45c7e753a85fa634757ed61281f51fb/armstrong.core.arm_sections-1.6.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d6357f6dc4f9579ad5dbb07b5fd24a80", "sha256": "d92c8e8fa49c2579af5538eabbbf1b8689ce6048a0c8792b01d27bfa0ffaaf37" }, "downloads": -1, "filename": "armstrong.core.arm_sections-1.6.0.tar.gz", "has_sig": false, "md5_digest": "d6357f6dc4f9579ad5dbb07b5fd24a80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14994, "upload_time": "2014-09-08T06:40:18", "url": "https://files.pythonhosted.org/packages/58/d5/69af4751076e68c97ccf98084c92e45c7e753a85fa634757ed61281f51fb/armstrong.core.arm_sections-1.6.0.tar.gz" } ] }