{ "info": { "author": "Ed Summers", "author_email": "ehs@pobox.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: Public Domain", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Communications :: File Sharing", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Filesystems" ], "description": "bagit-python\n============\n\n|Build Status| |Coverage Status|\n\nbagit is a Python library and command line utility for working with\n`BagIt `__ style packages.\n\nInstallation\n------------\n\nbagit.py is a single-file python module that you can drop into your\nproject as needed or you can install globally with:\n\n::\n\n pip install bagit\n\nPython v2.7+ is required.\n\nCommand Line Usage\n------------------\n\nWhen you install bagit you should get a command-line program called\nbagit.py which you can use to turn an existing directory into a bag:\n\n::\n\n bagit.py --contact-name 'John Kunze' /directory/to/bag\n\nFinding Bagit on your system\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe ``bagit.py`` program should be available in your normal command-line\nwindow (Terminal on OS X, Command Prompt or Powershell on Windows,\netc.). If you are unsure where it was installed you can also request\nthat Python search for ``bagit`` as a Python module: simply replace\n``bagit.py`` with ``python -m bagit``:\n\n::\n\n python -m bagit --help\n\nOn some systems Python may have been installed as ``python3``, ``py``,\netc. \u2013 simply use the same name you use to start an interactive Python\nshell:\n\n::\n\n py -m bagit --help\n python3 -m bagit --help\n\nConfiguring BagIt\n~~~~~~~~~~~~~~~~~\n\nYou can pass in key/value metadata for the bag using options like\n``--contact-name`` above, which get persisted to the bag-info.txt. For a\ncomplete list of bag-info.txt properties you can use as commmand line\narguments see ``--help``.\n\nSince calculating checksums can take a while when creating a bag, you\nmay want to calculate them in parallel if you are on a multicore\nmachine. You can do that with the ``--processes`` option:\n\n::\n\n bagit.py --processes 4 /directory/to/bag\n\nTo specify which checksum algorithm(s) to use when generating the\nmanifest, use the --md5, --sha1, --sha256 and/or --sha512 flags (MD5 is\ngenerated by default).\n\n::\n\n bagit.py --sha1 /path/to/bag\n bagit.py --sha256 /path/to/bag\n bagit.py --sha512 /path/to/bag\n\nIf you would like to validate a bag you can use the --validate flag.\n\n::\n\n bagit.py --validate /path/to/bag\n\nIf you would like to take a quick look at the bag to see if it seems\nvalid by just examining the structure of the bag, and comparing its\npayload-oxum (byte count and number of files) then use the ``--fast``\nflag.\n\n::\n\n bagit.py --validate --fast /path/to/bag\n\nAnd finally, if you'd like to parallelize validation to take advantage\nof multiple CPUs you can:\n\n::\n\n bagit.py --validate --processes 4 /path/to/bag\n\nUsing BagIt in your programs\n----------------------------\n\nYou can also use BagIt programatically in your own Python programs by\nimporting the ``bagit`` module.\n\nCreate\n~~~~~~\n\nTo create a bag you would do this:\n\n.. code:: python\n\n bag = bagit.make_bag('mydir', {'Contact-Name': 'John Kunze'})\n\n``make_bag`` returns a Bag instance. If you have a bag already on disk\nand would like to create a Bag instance for it, simply call the\nconstructor directly:\n\n.. code:: python\n\n bag = bagit.Bag('/path/to/bag')\n\nUpdate Bag Metadata\n~~~~~~~~~~~~~~~~~~~\n\nYou can change the metadata persisted to the bag-info.txt by using the\n``info`` property on a ``Bag``.\n\n.. code:: python\n\n # load the bag\n bag = bagit.Bag('/path/to/bag')\n\n # update bag info metadata\n bag.info['Internal-Sender-Description'] = 'Updated on 2014-06-28.'\n bag.info['Authors'] = ['John Kunze', 'Andy Boyko']\n bag.save()\n\nUpdate Bag Manifests\n~~~~~~~~~~~~~~~~~~~~\n\nBy default ``save`` will not update manifests. This guards against a\nsituation where a call to ``save`` to persist bag metadata accidentally\nregenerates manifests for an invalid bag. If you have modified the\npayload of a bag by adding, modifying or deleting files in the data\ndirectory, and wish to regenerate the manifests set the ``manifests``\nparameter to True when calling ``save``.\n\n.. code:: python\n\n\n import shutil, os\n\n # add a file\n shutil.copyfile('newfile', '/path/to/bag/data/newfile')\n\n # remove a file\n os.remove('/path/to/bag/data/file')\n\n # persist changes\n bag.save(manifests=True)\n\nThe save method takes an optional processes parameter which will\ndetermine how many processes are used to regenerate the checksums. This\ncan be handy on multicore machines.\n\nValidation\n~~~~~~~~~~\n\nIf you would like to see if a bag is valid, use its ``is_valid`` method:\n\n.. code:: python\n\n bag = bagit.Bag('/path/to/bag')\n if bag.is_valid():\n print(\"yay :)\")\n else:\n print(\"boo :(\")\n\nIf you'd like to get a detailed list of validation errors, execute the\n``validate`` method and catch the ``BagValidationError`` exception. If\nthe bag's manifest was invalid (and it wasn't caught by the payload\noxum) the exception's ``details`` property will contain a list of\n``ManifestError``\\ s that you can introspect on. Each ManifestError,\nwill be of type ``ChecksumMismatch``, ``FileMissing``,\n``UnexpectedFile``.\n\nSo for example if you want to print out checksums that failed to\nvalidate you can do this:\n\n.. code:: python\n\n\n bag = bagit.Bag(\"/path/to/bag\")\n\n try:\n bag.validate()\n\n except bagit.BagValidationError as e:\n for d in e.details:\n if isinstance(d, bagit.ChecksumMismatch):\n print(\"expected %s to have %s checksum of %s but found %s\" %\n (d.path, d.algorithm, d.expected, d.found))\n\nTo iterate through a bag's manifest and retrieve checksums for the\npayload files use the bag's entries dictionary:\n\n.. code:: python\n\n bag = bagit.Bag(\"/path/to/bag\")\n\n for path, fixity in bag.entries.items():\n print(\"path:%s md5:%s\" % (path, fixity[\"md5\"]))\n\nContributing to bagit-python development\n----------------------------------------\n\n::\n\n % git clone git://github.com/LibraryOfCongress/bagit-python.git\n % cd bagit-python\n # MAKE CHANGES\n % python test.py\n\nRunning the tests\n~~~~~~~~~~~~~~~~~\n\nYou can quickly run the tests by having setuptools install dependencies:\n\n::\n\n python setup.py test\n\nOnce your code is working, you can use\n`Tox `__ to run the tests with every\nsupported version of Python which you have installed on the local\nsystem:\n\n::\n\n tox\n\nIf you have Docker installed, you can run the tests under Linux inside a\ncontainer:\n\n::\n\n % docker build -t bagit:latest . && docker run -it bagit:latest\n\nBenchmarks\n----------\n\nIf you'd like to see how increasing parallelization of bag creation on\nyour system effects the time to create a bag try using the included\nbench utility:\n\n::\n\n % ./bench.py\n\nLicense\n-------\n\n|cc0|\n\nNote: By contributing to this project, you agree to license your work\nunder the same terms as those that govern this project's distribution.\n\n.. |Build Status| image:: https://travis-ci.org/LibraryOfCongress/bagit-python.svg?branch=master\n :target: http://travis-ci.org/LibraryOfCongress/bagit-python\n.. |Coverage Status| image:: https://coveralls.io/repos/github/LibraryOfCongress/bagit-python/badge.svg?branch=master\n :target: https://coveralls.io/github/LibraryOfCongress/bagit-python?branch=master\n.. |cc0| image:: http://i.creativecommons.org/p/zero/1.0/88x31.png\n :target: http://creativecommons.org/publicdomain/zero/1.0/\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://libraryofcongress.github.io/bagit-python/", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "bagit", "package_url": "https://pypi.org/project/bagit/", "platform": "POSIX", "project_url": "https://pypi.org/project/bagit/", "project_urls": { "Homepage": "https://libraryofcongress.github.io/bagit-python/" }, "release_url": "https://pypi.org/project/bagit/1.7.0/", "requires_dist": null, "requires_python": "", "summary": "Create and validate BagIt packages", "version": "1.7.0" }, "last_serial": 4386315, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "0e64979945c7a51ccd35c71cdc696d2e", "sha256": "b2577f7cee9c9b1d1964803848962d7364af65f50d965b0f54c07db7bdc14251" }, "downloads": -1, "filename": "bagit-0.1.tar.gz", "has_sig": false, "md5_digest": "0e64979945c7a51ccd35c71cdc696d2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2501, "upload_time": "2010-02-09T18:32:01", "url": "https://files.pythonhosted.org/packages/20/f9/206b3c1165312a13fdc4f991455b97478e5134b3efd632b3b3d2ad6f3207/bagit-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "91346c776d0ef2a442fcb26e88ae0ed1", "sha256": "dc9d873fceac3409d45942206570a0e2ee85647cf765ebfdc7f602c1f439a526" }, "downloads": -1, "filename": "bagit-0.2.tar.gz", "has_sig": false, "md5_digest": "91346c776d0ef2a442fcb26e88ae0ed1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2520, "upload_time": "2010-02-09T19:04:42", "url": "https://files.pythonhosted.org/packages/81/28/6161bfbe254f010016b78a51cc96df5cf99d064c8251bda5d8a552b6a54f/bagit-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "9bb998a16533f0bef4332e36c8822004", "sha256": "ce120566ca37a4b7fe117517bd2eec7ebcdc160b6963d97ca0c693eaf0475c9c" }, "downloads": -1, "filename": "bagit-0.3.tar.gz", "has_sig": false, "md5_digest": "9bb998a16533f0bef4332e36c8822004", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2748, "upload_time": "2010-02-09T20:10:49", "url": "https://files.pythonhosted.org/packages/97/c7/d54d5082a78fb13bfacb6d56d56f7c43ce6f83e2d3fe4b2a1bd138e5f902/bagit-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "9245915e526dd2d122169cf0273adc6f", "sha256": "42a2936ab0fce50b40255b004872ff6fc65eca29df0426cb56f47b69ccdb82d8" }, "downloads": -1, "filename": "bagit-0.4.tar.gz", "has_sig": false, "md5_digest": "9245915e526dd2d122169cf0273adc6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3072, "upload_time": "2010-03-13T16:44:30", "url": "https://files.pythonhosted.org/packages/a0/50/44ec8343508a000c226b9d835bff8e1ca8cb7b99bccc69690465fddd33d4/bagit-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "1c022c8f002f9d4dc50395fe2a74d8a5", "sha256": "ae90df9432a56e19250a2374514eefc3d7d4aa3c6f7138bac0c8555e6b70c10c" }, "downloads": -1, "filename": "bagit-0.5.tar.gz", "has_sig": false, "md5_digest": "1c022c8f002f9d4dc50395fe2a74d8a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3323, "upload_time": "2010-03-19T20:58:38", "url": "https://files.pythonhosted.org/packages/1a/36/06b8fe449a82e05c742ca1d991eb8aaeb8a8a25e690f864b99b713b9942f/bagit-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "ca1993c605dc3240309f77ed0dd0121e", "sha256": "db86c5f66ac85de51e5e504fac06833e780d6a679b04df9bf17870f264a16190" }, "downloads": -1, "filename": "bagit-0.6.tar.gz", "has_sig": false, "md5_digest": "ca1993c605dc3240309f77ed0dd0121e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3351, "upload_time": "2010-04-16T04:00:40", "url": "https://files.pythonhosted.org/packages/52/6c/597b0b854f8306c76fa0cffc6e0d7a4ef19b995edb76174b11e724aa767c/bagit-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "3145788490bcb43a7394245a46fe9c5b", "sha256": "001b8bd5daebdf03a21489f0705119f84a4c6f99a74838e8d5f7fb47c6b2032e" }, "downloads": -1, "filename": "bagit-0.7.tar.gz", "has_sig": false, "md5_digest": "3145788490bcb43a7394245a46fe9c5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6924, "upload_time": "2010-07-16T04:45:01", "url": "https://files.pythonhosted.org/packages/42/55/6b9b87fe7e6f175a1ec1ee37563b4b88643b120c7edd36e3fa1c27c572b6/bagit-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "9b421e30695a4741f1f55221cf80f173", "sha256": "b4e5e2fcb1b6566a886ffffbf8e468dec9b1f72d2ec7a88856abfa73cdd8b2d1" }, "downloads": -1, "filename": "bagit-0.8.tar.gz", "has_sig": false, "md5_digest": "9b421e30695a4741f1f55221cf80f173", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7337, "upload_time": "2011-02-03T22:18:32", "url": "https://files.pythonhosted.org/packages/3a/a8/50010e1c7b90b65568a3357f21e6f472ba0ccfd20e28203d8b84e208ef57/bagit-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "c2b9179c3500a67e03db7f64cadddf7f", "sha256": "d535265551d2037071b7bf202952ad55acc500ee4767f794c28d98e1fb480e76" }, "downloads": -1, "filename": "bagit-0.9.tar.gz", "has_sig": false, "md5_digest": "c2b9179c3500a67e03db7f64cadddf7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7365, "upload_time": "2011-02-23T21:12:56", "url": "https://files.pythonhosted.org/packages/64/fa/1a18c2cec7fbbbf87ba1e35cf2dcdb9338bda06227967e69fc99a38d3367/bagit-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "478646484b627bf60f496d743152fc1a", "sha256": "bfa49062e51dc0636ca9866163d802b29cfd47f7ccc6c1ce975fa1497c1b2f5b" }, "downloads": -1, "filename": "bagit-0.9.1.tar.gz", "has_sig": false, "md5_digest": "478646484b627bf60f496d743152fc1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7179, "upload_time": "2011-02-24T02:50:37", "url": "https://files.pythonhosted.org/packages/68/ee/078d82a11b9ab53421e36e1e3480f2e1812865a6fcd06b89f768afcbb775/bagit-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "4a19a26a37790b5f7691d1aeb6ca271b", "sha256": "00793dca391e2be73c920729e8c651bf5cd8e90cb3e5ce762e28781ba16ac161" }, "downloads": -1, "filename": "bagit-0.9.2.tar.gz", "has_sig": false, "md5_digest": "4a19a26a37790b5f7691d1aeb6ca271b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7186, "upload_time": "2011-02-28T03:46:17", "url": "https://files.pythonhosted.org/packages/b6/a2/80e70943d23cd16ed0e497e9a61c17b66d67148bf69d41ef7da97519c981/bagit-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "683587f29163e04bf9d64ba188c709f3", "sha256": "3766641e7b244bc5b5ef66a1ef86f34ef4f9e4cc70f8bb33bb255597b36f61f4" }, "downloads": -1, "filename": "bagit-0.9.3.tar.gz", "has_sig": false, "md5_digest": "683587f29163e04bf9d64ba188c709f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7180, "upload_time": "2011-02-28T14:59:55", "url": "https://files.pythonhosted.org/packages/47/15/88653552e22e77e971d239224922d665590537b7dae60c4ffa0b099fd53c/bagit-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "0334956bd3342e41f58f50002e908ddc", "sha256": "30a598b8886a2e563552bb4ac4f023c1583f6e4697afaddd1087fdb3a61bd2da" }, "downloads": -1, "filename": "bagit-0.9.4.tar.gz", "has_sig": false, "md5_digest": "0334956bd3342e41f58f50002e908ddc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7269, "upload_time": "2011-04-04T14:10:45", "url": "https://files.pythonhosted.org/packages/be/c1/34acfc4deab2bbc35339c31d32b1f8ebccdaf8822c7deffd4a3db613e3c4/bagit-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "a832ebfa2ea3426f598d314e3af80965", "sha256": "33ee8002aebd7196f874b6cfe2dd711c526353b8e2bd1ddc1ef827158002b752" }, "downloads": -1, "filename": "bagit-0.9.5.tar.gz", "has_sig": false, "md5_digest": "a832ebfa2ea3426f598d314e3af80965", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7240, "upload_time": "2011-04-04T22:07:54", "url": "https://files.pythonhosted.org/packages/1b/81/8d713072c8ad760ccfbc57b1399d7b11f10867a127e716a91c16fd96d99a/bagit-0.9.5.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "fc759240362c0cf718c810bde57f343b", "sha256": "bfdbfbccacbdd68627370f292e82320091b2f396f09b4b1b3a088589678def7a" }, "downloads": -1, "filename": "bagit-0.9.6.tar.gz", "has_sig": false, "md5_digest": "fc759240362c0cf718c810bde57f343b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7354, "upload_time": "2011-05-02T16:01:35", "url": "https://files.pythonhosted.org/packages/2e/b1/11a761bf55cd2af15fa54896d260484eed07dbe631a12a549faf4e111349/bagit-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "84224bec4be88bf039afb6f926517538", "sha256": "7c251232566cad3852ac8516d21b6f567e95a7ea07b1f2d6edff39aa96e65a30" }, "downloads": -1, "filename": "bagit-0.9.7.tar.gz", "has_sig": false, "md5_digest": "84224bec4be88bf039afb6f926517538", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7337, "upload_time": "2011-08-11T23:31:33", "url": "https://files.pythonhosted.org/packages/05/23/e84a7ab286be27102cbc326cecef8a2ef61564ba13e1001f186a3ee9e386/bagit-0.9.7.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "c31fbbe73616ec6f5b20ac5b5beec154", "sha256": "fd99d6b043405811b59319479c13d8d32fd2678abc1305e625290a6ec6b475f1" }, "downloads": -1, "filename": "bagit-0.9.8.tar.gz", "has_sig": false, "md5_digest": "c31fbbe73616ec6f5b20ac5b5beec154", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7163, "upload_time": "2012-09-03T04:01:02", "url": "https://files.pythonhosted.org/packages/46/3e/adb8433aead76f06afbdf72c15004b98df749dd311aeacee127500f25b58/bagit-0.9.8.tar.gz" } ], "0.9.9": [ { "comment_text": "", "digests": { "md5": "af361ad44f4d42587bf0eb0b0d5d690c", "sha256": "2744ec81fc41adc112581663faa793b19c67640a15b9c2f046c6887b0aa66afd" }, "downloads": -1, "filename": "bagit-0.9.9.tar.gz", "has_sig": false, "md5_digest": "af361ad44f4d42587bf0eb0b0d5d690c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7258, "upload_time": "2012-12-18T16:33:21", "url": "https://files.pythonhosted.org/packages/fc/da/72db66cdf4ce3142f87670e5c0e735b150a7d533a2959bd6d86720511633/bagit-0.9.9.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "db2a45ae571f5c785a6ac3aec94a2669", "sha256": "9cc3e00d51e7870680910f7eb901495d3f526f1e903476749b1c8e30371f966a" }, "downloads": -1, "filename": "bagit-1.0.0.tar.gz", "has_sig": false, "md5_digest": "db2a45ae571f5c785a6ac3aec94a2669", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7375, "upload_time": "2013-02-09T21:45:32", "url": "https://files.pythonhosted.org/packages/fd/7f/48825e2e12c70376fab55860569112a77666e3b6fe0180152ad251b7e716/bagit-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "319a39a10d7a39c57aeeead38ec37be3", "sha256": "8b0e2cee90bd86c0f05484ad006fa70c45c6921e881164833c4d527aa5eec7b0" }, "downloads": -1, "filename": "bagit-1.0.1.tar.gz", "has_sig": false, "md5_digest": "319a39a10d7a39c57aeeead38ec37be3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7487, "upload_time": "2013-03-13T17:44:48", "url": "https://files.pythonhosted.org/packages/d5/bd/ef7eac7671f250d3ceca4385686db81752432862aedf026d10f6fa7b5e10/bagit-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "26919cfa515d70f92f32b239ea94bb24", "sha256": "21bf6aa604b03e1b8dd129357fc079982bbb3fbcc28d088118dc9568cd401af4" }, "downloads": -1, "filename": "bagit-1.0.2.tar.gz", "has_sig": false, "md5_digest": "26919cfa515d70f92f32b239ea94bb24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7482, "upload_time": "2013-03-27T19:21:08", "url": "https://files.pythonhosted.org/packages/0f/dd/cc4f19ab6eccbd22e5429000c38b06c7a0edded326d679b4fdabf80de117/bagit-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "e7633d14e41be9296c102edbd2beef78", "sha256": "a23ebfa587a221533d007d8831f67b3ba4bd36a18efdf269eae0161e389ee0bb" }, "downloads": -1, "filename": "bagit-1.0.3.tar.gz", "has_sig": false, "md5_digest": "e7633d14e41be9296c102edbd2beef78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7654, "upload_time": "2013-04-16T14:32:52", "url": "https://files.pythonhosted.org/packages/25/d0/e3d9decf730440033dea7a29240d8b0ca0e22dff26980a5df5ed6f4dc499/bagit-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "86f0c18d7e3827e631ed5a98322e37a1", "sha256": "b9e94e63f3c3a8dc842b936fd94529b2f4997b4ca1832aa634269047022bc22e" }, "downloads": -1, "filename": "bagit-1.0.4.tar.gz", "has_sig": false, "md5_digest": "86f0c18d7e3827e631ed5a98322e37a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7719, "upload_time": "2013-04-22T12:11:51", "url": "https://files.pythonhosted.org/packages/6d/94/0f3d6569414469052c3691378a73eaa750bd1c1e9db3d8f908ad4a86a3d0/bagit-1.0.4.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "2f5ea9cc66ceddaa0a7a654d86eba895", "sha256": "61452a295f501f8608213769934213bd2e99f3504075999743ec9ba3467e1f41" }, "downloads": -1, "filename": "bagit-1.1.0.tar.gz", "has_sig": false, "md5_digest": "2f5ea9cc66ceddaa0a7a654d86eba895", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8317, "upload_time": "2013-05-31T16:05:16", "url": "https://files.pythonhosted.org/packages/71/ce/76fba182ef94762d9efbe9d6b7c1af2d4bfed614ed278275a9fb3020d646/bagit-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "22a877b36cecfbdd5f7627573e7fb865", "sha256": "b641ce3ed1bab8d5fddd4f4d0f6af8627484d862656888f9f0c8d1b2f1738bcb" }, "downloads": -1, "filename": "bagit-1.2.0.tar.gz", "has_sig": false, "md5_digest": "22a877b36cecfbdd5f7627573e7fb865", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8567, "upload_time": "2013-06-18T20:13:49", "url": "https://files.pythonhosted.org/packages/f7/1a/7405951df05be08434b134d2ebdb3603336973618f7daa958e27caac14b4/bagit-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "052f96039cfd32a5366fc4fef25a3340", "sha256": "d65cf033533fcd56342b85893884508f1601663fbe520ae949aa3cba37658f66" }, "downloads": -1, "filename": "bagit-1.2.1.tar.gz", "has_sig": false, "md5_digest": "052f96039cfd32a5366fc4fef25a3340", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8580, "upload_time": "2013-06-18T20:16:26", "url": "https://files.pythonhosted.org/packages/72/15/f7dadfe191645edbfccb07ffdc1467f9eb85685484fa75de6cb7fbd38005/bagit-1.2.1.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "172acf31e7145637fea4d459b324df29", "sha256": "f7eeca7ff751e4dd691159634a9230df8605f3f23b32d1b6e2dc668ff5a76c63" }, "downloads": -1, "filename": "bagit-1.3.1.tar.gz", "has_sig": false, "md5_digest": "172acf31e7145637fea4d459b324df29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8873, "upload_time": "2014-02-14T19:24:52", "url": "https://files.pythonhosted.org/packages/59/c7/f98570bdcd677a17daec1ff8965b6cfe0377dd42892eea93d80f0cea2e61/bagit-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "4f05116d949471674f4d64b1d7137c0a", "sha256": "4913b2bf4cfa75c5014aa2570232788821a90c9d39834b79561e0057cd490ffa" }, "downloads": -1, "filename": "bagit-1.3.2.tar.gz", "has_sig": false, "md5_digest": "4f05116d949471674f4d64b1d7137c0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9450, "upload_time": "2014-02-17T16:38:42", "url": "https://files.pythonhosted.org/packages/f3/18/42ff123233e8aed6b738aaf1a04f526893999c33e69f25b3e060e8ce72cc/bagit-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "be64721723124f60c9361db782a9f3b0", "sha256": "4d2e0882dc6f43c8d363a3952378563b469269d780d5fa5bdd855d0bb6c24428" }, "downloads": -1, "filename": "bagit-1.3.3.tar.gz", "has_sig": false, "md5_digest": "be64721723124f60c9361db782a9f3b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9456, "upload_time": "2014-02-18T19:32:32", "url": "https://files.pythonhosted.org/packages/80/ea/bb6c1edad9e3585152028244950a01575498c9cab51d75e619637cda00e1/bagit-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "87101cda57672e4b9d0cc63cdf93e0e6", "sha256": "04df0c93a95cdcacb943d08b697d07f27e18b4880df6651ac5ba97a465815e92" }, "downloads": -1, "filename": "bagit-1.3.4.tar.gz", "has_sig": false, "md5_digest": "87101cda57672e4b9d0cc63cdf93e0e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9512, "upload_time": "2014-03-10T18:44:23", "url": "https://files.pythonhosted.org/packages/f3/c6/fb8cd3f45f8beeb95e590aeeea2950a2a4b631e05acc673040f743e46580/bagit-1.3.4.tar.gz" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "12fb4ec0d875b24695da58f65c8e299c", "sha256": "9adb69663ebd842e049610bd32f3a2da0b3f805be5e281a2ca8bc704c1bed371" }, "downloads": -1, "filename": "bagit-1.3.5.tar.gz", "has_sig": false, "md5_digest": "12fb4ec0d875b24695da58f65c8e299c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9493, "upload_time": "2014-03-22T11:30:17", "url": "https://files.pythonhosted.org/packages/21/4d/33bb33da6bcbe6539d6aba5650483cb7005b5750212f26bae63e29649f21/bagit-1.3.5.tar.gz" } ], "1.3.6": [ { "comment_text": "", "digests": { "md5": "f3b12f360eb244553e2bf7bf7ad3ff60", "sha256": "902d38ed9a7e7bd7bdd326a667dc62ba1edf7d44a686628924d99b601d892501" }, "downloads": -1, "filename": "bagit-1.3.6.tar.gz", "has_sig": false, "md5_digest": "f3b12f360eb244553e2bf7bf7ad3ff60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9545, "upload_time": "2014-04-04T08:11:01", "url": "https://files.pythonhosted.org/packages/9b/62/d57055c8cb0e7c7dcb073d6136834672d8dd21ce369d8352b5c8d9c7aebe/bagit-1.3.6.tar.gz" } ], "1.3.7": [ { "comment_text": "", "digests": { "md5": "c310a508b36868fc71f87353ed8f228f", "sha256": "e24e75b81db6265fda4387f9de763e7f6e7ce1c49449a67f25abb61f38b0e1b9" }, "downloads": -1, "filename": "bagit-1.3.7.tar.gz", "has_sig": false, "md5_digest": "c310a508b36868fc71f87353ed8f228f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9673, "upload_time": "2014-05-09T13:31:48", "url": "https://files.pythonhosted.org/packages/ef/90/9523ba4449bb75bcdc8e0bf9a56b769e09a7f0d7a1058b1ef7c18d56179a/bagit-1.3.7.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "0c0cfd535d9886cc4229b5f5539963bd", "sha256": "57d99d31c43801036c22266906e6178427b4926724ca7776a928b20f01600543" }, "downloads": -1, "filename": "bagit-1.4.0.tar.gz", "has_sig": false, "md5_digest": "0c0cfd535d9886cc4229b5f5539963bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10058, "upload_time": "2014-06-06T09:23:50", "url": "https://files.pythonhosted.org/packages/bc/02/fa8e088fb5b385bba5d0fe6b8bcbac83d70ca127e30f975d6be1e52edbe7/bagit-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "960686de66416d48bd9d250a2582a8fd", "sha256": "110af329b68aa5d3c434356b7881f75d232c51eb8e40f4f3618d759abef6f07c" }, "downloads": -1, "filename": "bagit-1.5.0.tar.gz", "has_sig": false, "md5_digest": "960686de66416d48bd9d250a2582a8fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10519, "upload_time": "2014-07-01T13:47:07", "url": "https://files.pythonhosted.org/packages/f0/44/25a5da631970ab6abe4cb58c7e200f430a92c33f499e0de1fb0ff7bd239a/bagit-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "8482f9890413092375da4b056f894702", "sha256": "3f2c6d3e51b7406ab1149345b2329c08cf8e1776eb9199b52415a14d94c7d35d" }, "downloads": -1, "filename": "bagit-1.5.1.tar.gz", "has_sig": false, "md5_digest": "8482f9890413092375da4b056f894702", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10655, "upload_time": "2014-08-04T08:39:28", "url": "https://files.pythonhosted.org/packages/54/d9/aefd7d1755d3f4074a1a673a94dd853cd7abd2c743210f25b2dfa9fb5959/bagit-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "b5c5ab98eff0ebeeca2abec87424a38f", "sha256": "8fc77e52d53158daa913e525b8604493b16f5e6fd3760811e0b514837228ef76" }, "downloads": -1, "filename": "bagit-1.5.2.tar.gz", "has_sig": false, "md5_digest": "b5c5ab98eff0ebeeca2abec87424a38f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10705, "upload_time": "2014-09-19T19:20:44", "url": "https://files.pythonhosted.org/packages/5a/0b/1a87f5b67b6e19e7a70e2b898d6573aa6480b36683a347540714d99a34de/bagit-1.5.2.tar.gz" } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "0898df86ef965815e5f40a2e8c04f07d", "sha256": "81b6e27f5307cd64ba276d21a54d354f6215b6e1d64974a6a1afb1495659f6d4" }, "downloads": -1, "filename": "bagit-1.5.4-py2-none-any.whl", "has_sig": false, "md5_digest": "0898df86ef965815e5f40a2e8c04f07d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20860, "upload_time": "2015-07-09T14:29:04", "url": "https://files.pythonhosted.org/packages/a9/93/9ebf9e175f5dff2b4b3339100fa2d5e85d7568601295e8a43f802624a812/bagit-1.5.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "242b5f7e707cbdad60d1cefe076abd50", "sha256": "73bd9dc6d364adebcb0e5ecdd047a78fe8b1d0ffa3cf4ce4d22547a5be04c383" }, "downloads": -1, "filename": "bagit-1.5.4-py3-none-any.whl", "has_sig": false, "md5_digest": "242b5f7e707cbdad60d1cefe076abd50", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 20649, "upload_time": "2015-07-09T14:29:54", "url": "https://files.pythonhosted.org/packages/06/44/c5b355f579e74bd6bda15cc0896fc6b41e11db87afaaf6b61e373fad82f2/bagit-1.5.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d784c4da0e47aaab6bc0ff99ecc0319", "sha256": "8c3a30673377f18419bd1a0268ae456623705137a2d17792857866688821f7bd" }, "downloads": -1, "filename": "bagit-1.5.4.tar.gz", "has_sig": false, "md5_digest": "6d784c4da0e47aaab6bc0ff99ecc0319", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10675, "upload_time": "2015-07-09T14:29:00", "url": "https://files.pythonhosted.org/packages/42/39/7e3469fa66e98486a1d2dadd9f6baf8b09c488e407007cd1a9656ddc479e/bagit-1.5.4.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "e5984b77562e000afa1d87f473f2a839", "sha256": "796c3dd489288c51713bd24fd08a75827a4451d54652268d7e82578c931bb823" }, "downloads": -1, "filename": "bagit-1.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "e5984b77562e000afa1d87f473f2a839", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 38308, "upload_time": "2017-11-02T20:04:36", "url": "https://files.pythonhosted.org/packages/6c/a8/6db7a0ac765e61f42ab5e23bd55319f3b36eaac83a4124f88826581a6333/bagit-1.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c242757c8d8c1e1ccc4b840d7f9d9ef", "sha256": "c13d9289255dcde2505659b63496d36c3668f81c2dc4793519c88532cfc92b20" }, "downloads": -1, "filename": "bagit-1.6.0.tar.gz", "has_sig": false, "md5_digest": "6c242757c8d8c1e1ccc4b840d7f9d9ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25756, "upload_time": "2017-11-02T20:04:32", "url": "https://files.pythonhosted.org/packages/f4/c0/9f8cd0f739b06463ec33595e72fe89985480387e279857900766b890d7d5/bagit-1.6.0.tar.gz" } ], "1.6.0b1": [ { "comment_text": "", "digests": { "md5": "8d9d5c390406fa30a96a1abb34dfc5f9", "sha256": "b320a3b998e25b2c2f530a15cfddfebca89104bf517e03a7abb5a17ec9656a28" }, "downloads": -1, "filename": "bagit-1.6.0b1.tar.gz", "has_sig": false, "md5_digest": "8d9d5c390406fa30a96a1abb34dfc5f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21614, "upload_time": "2017-02-24T22:17:31", "url": "https://files.pythonhosted.org/packages/2f/96/dcfeb691c8db5339076a3293c8ec1c13861a01179ee22d00db7b1b8fdad8/bagit-1.6.0b1.tar.gz" } ], "1.6.0b2": [ { "comment_text": "", "digests": { "md5": "1b6038ebadef40bfe6f6aa4370eace6c", "sha256": "1584c6b51027889aa4c7103a58354c57023b395d2ae66725d346e48957826830" }, "downloads": -1, "filename": "bagit-1.6.0b2.tar.gz", "has_sig": false, "md5_digest": "1b6038ebadef40bfe6f6aa4370eace6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21969, "upload_time": "2017-02-27T22:06:10", "url": "https://files.pythonhosted.org/packages/01/b8/820569d38210b7b11f840019b09214ed000dd48bef8978e69f2919bcef28/bagit-1.6.0b2.tar.gz" } ], "1.6.0b3": [ { "comment_text": "", "digests": { "md5": "5cfc3b6839ab2aac3b9598aad4a6224b", "sha256": "a0052892c461e6553af663c8e8053378e648f9b36761bf511d64d07e67d0fe8b" }, "downloads": -1, "filename": "bagit-1.6.0b3.tar.gz", "has_sig": false, "md5_digest": "5cfc3b6839ab2aac3b9598aad4a6224b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23356, "upload_time": "2017-04-20T20:23:02", "url": "https://files.pythonhosted.org/packages/df/0e/7005132c3e94b16e455dfc47e246ec6d07fbffe0ea25690654937c0cb2fb/bagit-1.6.0b3.tar.gz" } ], "1.6.0b4": [ { "comment_text": "", "digests": { "md5": "79d94dae74fd6989cc075d82b765a879", "sha256": "76bad94645745b6ce246bd87c7f1d2ee782708e1514b3b870e26dbe72e412f6e" }, "downloads": -1, "filename": "bagit-1.6.0b4.tar.gz", "has_sig": false, "md5_digest": "79d94dae74fd6989cc075d82b765a879", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21978, "upload_time": "2017-05-10T20:46:41", "url": "https://files.pythonhosted.org/packages/af/d3/3a207253b5e420e5bb055cf07249730e77e4b2ab3cafea9496a3a8124ca9/bagit-1.6.0b4.tar.gz" } ], "1.6.0b5": [], "1.6.0b6": [ { "comment_text": "", "digests": { "md5": "bf3ae4fe05d8db713e9921bb153fcb2f", "sha256": "3dc389b6ac4007fcc53a6598685a4cddb193b7d15ec5e6683b338153e752a994" }, "downloads": -1, "filename": "bagit-1.6.0b6.tar.gz", "has_sig": false, "md5_digest": "bf3ae4fe05d8db713e9921bb153fcb2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25176, "upload_time": "2017-05-10T21:00:17", "url": "https://files.pythonhosted.org/packages/9c/e7/ec207c7af8ebffce760d597e94300e769047d85ccbcae94b474202585824/bagit-1.6.0b6.tar.gz" } ], "1.6.0b7": [ { "comment_text": "", "digests": { "md5": "5f0a4b7d7d177653956dcbdfd9c32db3", "sha256": "a18aa3735d6b2878ae29dbeef621509004b11d0ab408ac617ca7123184575756" }, "downloads": -1, "filename": "bagit-1.6.0b7-py2-none-any.whl", "has_sig": false, "md5_digest": "5f0a4b7d7d177653956dcbdfd9c32db3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 37639, "upload_time": "2017-05-12T13:19:01", "url": "https://files.pythonhosted.org/packages/7a/cf/d959792b36904e8888e6f27caa9458867bffc6b352c4bec51130d8842284/bagit-1.6.0b7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "752066d4a74e950f2bc87eedcfb5caaf", "sha256": "a785f9d4aa21bbe05eda398a4291e779d14933f359576200418a2c88cfc7a802" }, "downloads": -1, "filename": "bagit-1.6.0b7-py3-none-any.whl", "has_sig": false, "md5_digest": "752066d4a74e950f2bc87eedcfb5caaf", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 37658, "upload_time": "2017-05-12T13:25:59", "url": "https://files.pythonhosted.org/packages/ca/3b/2e1dfde2411932ff1c8e600674043d86dd854fbe3c929ecfafa3865029bd/bagit-1.6.0b7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aa42283cb0e048fa3eb48e7149ca6550", "sha256": "6a619bc21347125e7a724083fe85442b87440b3840c3aa18a7fa5eb253e7c84a" }, "downloads": -1, "filename": "bagit-1.6.0b7.tar.gz", "has_sig": false, "md5_digest": "aa42283cb0e048fa3eb48e7149ca6550", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25260, "upload_time": "2017-05-12T13:18:59", "url": "https://files.pythonhosted.org/packages/4d/c3/838536b7f981db6c887879779da69392559086deb84ab35834a6c6f75ef7/bagit-1.6.0b7.tar.gz" } ], "1.6.0b8": [ { "comment_text": "", "digests": { "md5": "1d6f049ca09a2752c69b7464a7d116e4", "sha256": "b2ed7bf35f61a807e12c57a275a1cbfc83dfee0674103ac54c880c4854acca90" }, "downloads": -1, "filename": "bagit-1.6.0b8-py2-none-any.whl", "has_sig": false, "md5_digest": "1d6f049ca09a2752c69b7464a7d116e4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 37718, "upload_time": "2017-08-23T19:05:38", "url": "https://files.pythonhosted.org/packages/f7/b6/c74f6457e4bb0ec1c08d83bcfa473110a5320a386a4a1205f11cd7a5e136/bagit-1.6.0b8-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "318d75674964e784017cadb54c4b1f9a", "sha256": "d6d7e10ee03aca13ec1ff2c2e278f343f47ca21150a177f7e9f4ce1a53999628" }, "downloads": -1, "filename": "bagit-1.6.0b8.tar.gz", "has_sig": false, "md5_digest": "318d75674964e784017cadb54c4b1f9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25300, "upload_time": "2017-08-23T19:05:25", "url": "https://files.pythonhosted.org/packages/14/d0/9abe4211636cb9f880b05dab30ee4cae7a29751bdc9ba0dcaa94d1f93cbd/bagit-1.6.0b8.tar.gz" } ], "1.6.0b9": [ { "comment_text": "", "digests": { "md5": "f1fae80a39f6ae3667753b41c1d7fd35", "sha256": "bb844a3ce7f408d1f8f6726d2a2f39f23a7b32f0ae6fcf6fc7bfebd9887d6036" }, "downloads": -1, "filename": "bagit-1.6.0b9.tar.gz", "has_sig": false, "md5_digest": "f1fae80a39f6ae3667753b41c1d7fd35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25319, "upload_time": "2017-10-26T17:23:25", "url": "https://files.pythonhosted.org/packages/f0/93/7d43929b61f25f668fe565d0aa301e33bc83f6a93022e88554793d9c32e3/bagit-1.6.0b9.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "45570df41da736c0fe790bb287f835a7", "sha256": "186ab65b063c793c4f9ff9f8c9eb74231e68f7acabe64d3e201bf9eadd52c1f4" }, "downloads": -1, "filename": "bagit-1.6.1.tar.gz", "has_sig": false, "md5_digest": "45570df41da736c0fe790bb287f835a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27769, "upload_time": "2017-11-03T18:11:30", "url": "https://files.pythonhosted.org/packages/6a/fb/aa92915ff6ff1d8c70a98b8d39437a6ccd7256e3ee2a0d42146972586d00/bagit-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "f316fdb4994b0a9786725aec6ca18152", "sha256": "d42110702830b2b2e9ff88937b8b94bd172ac0c4c9f48c8891bf82552c5ea942" }, "downloads": -1, "filename": "bagit-1.6.2.tar.gz", "has_sig": false, "md5_digest": "f316fdb4994b0a9786725aec6ca18152", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25760, "upload_time": "2017-11-16T15:18:52", "url": "https://files.pythonhosted.org/packages/97/9b/a99eb1e71465bdebca72b7f1fe3ee6bb0cd44dc999af4f3d56dc5efa4191/bagit-1.6.2.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "1611464169eb3bcde02704b36f526db8", "sha256": "0f5e7138511ac4a703e67aab709c755e58993cea9707ad163941fbbc24e62b4a" }, "downloads": -1, "filename": "bagit-1.6.3.tar.gz", "has_sig": false, "md5_digest": "1611464169eb3bcde02704b36f526db8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25791, "upload_time": "2018-01-08T20:28:05", "url": "https://files.pythonhosted.org/packages/a8/92/da887c1cf04d3c5a0f4ef87a7608eae88f1f418cf650f1811ccb142687b9/bagit-1.6.3.tar.gz" } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "036b40373cd6aa5900c6604861fd64ea", "sha256": "91c5e253ad4ae0c5a5e795c689cda348c01286c671e9f6ca5cab0018980f9be9" }, "downloads": -1, "filename": "bagit-1.6.4.tar.gz", "has_sig": false, "md5_digest": "036b40373cd6aa5900c6604861fd64ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29194, "upload_time": "2018-03-16T15:25:55", "url": "https://files.pythonhosted.org/packages/64/91/4363e2d56a81431ef7b86cd8f0a530a5729032f207eb3b756eb29b4ed282/bagit-1.6.4.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "58a700377c8cf2e732ec9475b29e679a", "sha256": "f248a3dad06fd3e5d329217baace6ade79d106579696b13e2c0bbc583101ded4" }, "downloads": -1, "filename": "bagit-1.7.0.tar.gz", "has_sig": false, "md5_digest": "58a700377c8cf2e732ec9475b29e679a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28241, "upload_time": "2018-06-26T14:42:37", "url": "https://files.pythonhosted.org/packages/ee/11/7a7fa81c0d43fb4d449d418eba57fc6c77959754c5c2259a215152810555/bagit-1.7.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "58a700377c8cf2e732ec9475b29e679a", "sha256": "f248a3dad06fd3e5d329217baace6ade79d106579696b13e2c0bbc583101ded4" }, "downloads": -1, "filename": "bagit-1.7.0.tar.gz", "has_sig": false, "md5_digest": "58a700377c8cf2e732ec9475b29e679a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28241, "upload_time": "2018-06-26T14:42:37", "url": "https://files.pythonhosted.org/packages/ee/11/7a7fa81c0d43fb4d449d418eba57fc6c77959754c5c2259a215152810555/bagit-1.7.0.tar.gz" } ] }