{ "info": { "author": "Nathan J. Mehl", "author_email": "n@climate.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Topic :: System :: Archiving :: Packaging" ], "description": "[![Build Status](https://travis-ci.org/TheClimateCorporation/python-dpkg.svg?branch=master)](https://travis-ci.org/TheClimateCorporation/python-dpkg)\n\n# python-dpkg\n\nThis library can be used to:\n\n1. read and extract control data from Debian-format package files, even\n on platforms that generally lack a native implementation of dpkg\n\n2. compare dpkg version strings, using a pure Python implementation of\n the algorithm described at\n https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Version\n\n3. Parse debian source description (dsc) files, inspect their contents\n and verify that their source files are present and checksums are\n correct.\n\nThis is primarily intended for use on platforms that do not normally\nship [python-apt](http://apt.alioth.debian.org/python-apt-doc/) due to\nlicensing restrictions or the lack of a native libapt.so (e.g. macOS)\n\nCurrently only tested on CPython 2.7 and 3.5, but at least in theory should run\non any python distribution that can install the [arpy](https://pypi.python.org/pypi/arpy/)\nlibrary.\n\n## Installing\n\nInstall the 'pydpkg' package from [PyPi](https://pypi.python.org) using\nthe [pip](https://packaging.python.org/installing/) tool:\n\n $ pip install pydpkg\n Collecting pydpkg\n Downloading pydpkg-1.1-py2-none-any.whl\n Installing collected packages: pydpkg\n Successfully installed pydpkg-1.1\n\n## Usage\n\n### Binary Packages\n\n#### Read and extract headers\n\n >>> from pydpkg import Dpkg\n >>> dp = Dpkg('/tmp/testdeb_1:0.0.0-test_all.deb')\n\n >>> dp.headers\n {'maintainer': u'Climate Corp Engineering ', 'description': u'testdeb\\n a bogus debian package for testing dpkg builds', 'package': u'testdeb', 'section': u'base', 'priority': u'extra', 'installed-size': u'0', 'version': u'1:0.0.0-test', 'architecture': u'all'}\n\n >>> print dp\n Package: testdeb\n Version: 1:0.0.0-test\n Section: base\n Priority: extra\n Architecture: all\n Installed-Size: 0\n Maintainer: Climate Corp Engineering \n Description: testdeb\n a bogus debian package for testing dpkg builds\n\n#### Interact directly with the package control message\n\n >>> dp.message\n \n >>> dp.message.get_content_type()\n 'text/plain'\n\n#### Get package file fingerprints\n\n >>> dp.fileinfo\n {'sha256': '547500652257bac6f6bc83f0667d0d66c8abd1382c776c4de84b89d0f550ab7f', 'sha1': 'a5d28ae2f23e726a797349d7dd5f21baf8aa02b4', 'filesize': 910, 'md5': '149e61536a9fe36374732ec95cf7945d'}\n >>> dp.md5\n '149e61536a9fe36374732ec95cf7945d'\n >>> dp.sha1\n 'a5d28ae2f23e726a797349d7dd5f21baf8aa02b4'\n >>> dp.sha256\n '547500652257bac6f6bc83f0667d0d66c8abd1382c776c4de84b89d0f550ab7f'\n >>> dp.filesize\n 910\n\n#### Get the components of the package version\n\n >>> d.epoch\n 1\n >>> d.upstream_version\n u'0.0.0'\n >>> d.debian_revision\n u'test'\n\n#### Get an arbitrary control header, case-independent\n\n >>> d.version\n u'1:0.0.0-test'\n\n >>> d.VERSION\n u'1:0.0.0-test'\n\n >>> d.description\n u'testdeb\\n a bogus debian package for testing dpkg builds'\n\n >>> d.get('nosuchheader', 'default')\n 'default'\n\n#### Compare current version to a candidate version\n\n >>> dp.compare_version_with('1.0')\n 1\n\n >>> dp.compare_version_with('1:1.0')\n -1\n\n#### Compare two arbitrary version strings\n\n >>> from pydpkg import Dpkg\n >>> ver_1 = '0:1.0-test1'\n >>> ver_2 = '0:1.0-test2'\n >>> Dpkg.compare_versions(ver_1, ver_2)\n -1\n\n#### Use as a key function to sort a list of version strings\n\n >>> from pydpkg import Dpkg\n >>> sorted(['0:1.0-test1', '1:0.0-test0', '0:1.0-test2'] , key=Dpkg.compare_versions_key)\n ['0:1.0-test1', '0:1.0-test2', '1:0.0-test0']\n\n#### Use the `dpkg-inspect.py` script to inspect packages\n\n $ dpkg-inspect.py ~/testdeb*deb\n Filename: /Home/n/testdeb_1:0.0.0-test_all.deb\n Size: 910\n MD5: 149e61536a9fe36374732ec95cf7945d\n SHA1: a5d28ae2f23e726a797349d7dd5f21baf8aa02b4\n SHA256: 547500652257bac6f6bc83f0667d0d66c8abd1382c776c4de84b89d0f550ab7f\n Headers:\n Package: testdeb\n Version: 1:0.0.0-test\n Section: base\n Priority: extra\n Architecture: all\n Installed-Size: 0\n Maintainer: Nathan Mehl \n Description: testdeb\n a bogus debian package for testing dpkg builds\n\n### Source Packages\n\n#### Read and extract headers\n\n >>> from pydpkg import Dsc\n >>> dsc = Dsc('testdeb_0.0.0.dsc')\n >>> dsc.standards_version\n '3.9.6'\n >>> dsc.format\n '3.0 (quilt)'\n >>> x.build_depends\n 'python (>= 2.6.6-3), debhelper (>= 9)'\n\n#### Get the full set of dsc headers as a dictionary\n\n >>> dsc.headers\n {'Architecture': 'all',\n 'Binary': 'testdeb',\n 'Build-Depends': 'python (>= 2.6.6-3), debhelper (>= 9)',\n 'Checksums-Sha1': ' f250ac0a426b31df24fc2c98050f4fab90e456cd 280 testdeb_0.0.0.orig.tar.gz\\n cb3474ff94053018957ebcf1d8a2b45f75dda449 232 testdeb_0.0.0-1.debian.tar.xz\\n 80cd7b01014a269d445c63b037b885d6002cf533 841 testdeb_0.0.0.dsc',\n 'Checksums-Sha256': ' aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7 280 testdeb_0.0.0.orig.tar.gz\\n 1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858 232 testdeb_0.0.0-1.debian.tar.xz\\n b5ad1591349eb48db65e6865be506ad7dbd21931902a71addee5b1db9ae1ac2a 841 testdeb_0.0.0.dsc',\n 'Files': ' 142ca7334ed1f70302b4504566e0c233 280 testdeb_0.0.0.orig.tar.gz\\n fc80e6e7f1c1a08b78a674aaee6c1548 232 testdeb_0.0.0-1.debian.tar.xz\\n 893d13a2ef13f7409c9521e8ab1dbccb 841 testdeb_0.0.0.dsc',\n 'Format': '3.0 (quilt)',\n 'Homepage': 'https://github.com/TheClimateCorporation',\n 'Maintainer': 'Nathan J. Mehl ',\n 'Package-List': 'testdeb',\n 'Source': 'testdeb',\n 'Standards-Version': '3.9.6',\n 'Uploaders': 'Nathan J. Mehl ',\n 'Version': '0.0.0-1'}\n\n#### Interact directly with the dsc message\n\n >>> dsc.message\n \n >>> dsc.message.get_content_type()\n 'text/plain'\n >>> dsc.message.get('uploaders')\n 'Nathan J. Mehl '\n\n#### Render the dsc message as a string\n\n >>> print(dsc)\n Format: 3.0 (quilt)\n Source: testdeb\n Binary: testdeb\n Architecture: all\n Version: 0.0.0-1\n Maintainer: Nathan J. Mehl \n Uploaders: Nathan J. Mehl \n Homepage: https://github.com/TheClimateCorporation\n Standards-Version: 3.9.6\n Build-Depends: python (>= 2.6.6-3), debhelper (>= 9)\n Package-List: testdeb\n Checksums-Sha1:\n f250ac0a426b31df24fc2c98050f4fab90e456cd 280 testdeb_0.0.0.orig.tar.gz\n cb3474ff94053018957ebcf1d8a2b45f75dda449 232 testdeb_0.0.0-1.debian.tar.xz\n 80cd7b01014a269d445c63b037b885d6002cf533 841 testdeb_0.0.0.dsc\n Checksums-Sha256:\n aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7 280 testdeb_0.0.0.orig.tar.gz\n 1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858 232 testdeb_0.0.0-1.debian.tar.xz\n b5ad1591349eb48db65e6865be506ad7dbd21931902a71addee5b1db9ae1ac2a 841 testdeb_0.0.0.dsc\n Files:\n 142ca7334ed1f70302b4504566e0c233 280 testdeb_0.0.0.orig.tar.gz\n fc80e6e7f1c1a08b78a674aaee6c1548 232 testdeb_0.0.0-1.debian.tar.xz\n 893d13a2ef13f7409c9521e8ab1dbccb 841 testdeb_0.0.0.dsc\n\n#### List the package source files from the dsc\n\n >>> dsc.source_files\n ['/tmp/testdeb_0.0.0.orig.tar.gz',\n '/tmp/testdeb_0.0.0-1.debian.tar.xz',\n '/tmp/testdeb_0.0.0.dsc' ]\n\n#### Validate that the package source files are present\n\n >>> dsc.missing_files\n []\n >>> dsc.all_files_present\n True\n >>> dsc.validate()\n >>>\n\n >>> bad = Dsc('testdeb_1.1.1-bad.dsc')\n >>> bad.missing_files\n ['/tmp/testdeb_1.1.1.orig.tar.gz', '/tmp/testdeb_1.1.1-1.debian.tar.xz']\n >>> bad.all_files_present\n False\n >>> bad.validate()\n pydpkg.DscMissingFileError: ['/tmp/testdeb_1.1.1.orig.tar.gz', '/tmp/testdeb_1.1.1-1.debian.tar.xz']\n\n#### Inspect the source file checksums from the dsc\n\n >>> pp(dsc.checksums)\n {'md5': {'/tmp/testdeb_0.0.0-1.debian.tar.xz': 'fc80e6e7f1c1a08b78a674aaee6c1548',\n '/tmp/testdeb_0.0.0.dsc': '893d13a2ef13f7409c9521e8ab1dbccb',\n '/tmp/testdeb_0.0.0.orig.tar.gz': '142ca7334ed1f70302b4504566e0c233'},\n 'sha1': {'/tmp/testdeb_0.0.0-1.debian.tar.xz': 'cb3474ff94053018957ebcf1d8a2b45f75dda449',\n '/tmp/testdeb_0.0.0.dsc': '80cd7b01014a269d445c63b037b885d6002cf533',\n '/tmp/testdeb_0.0.0.orig.tar.gz': 'f250ac0a426b31df24fc2c98050f4fab90e456cd'},\n 'sha256': {'/tmp/testdeb_0.0.0-1.debian.tar.xz': '1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858',\n '/tmp/testdeb_0.0.0.dsc': 'b5ad1591349eb48db65e6865be506ad7dbd21931902a71addee5b1db9ae1ac2a',\n '/tmp/testdeb_0.0.0.orig.tar.gz': 'aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7'}}\n\n#### Validate that all source file checksums are correct\n\n >>> dsc.corrected_checksums\n {}\n >>> dsc.all_checksums_correct\n True\n >>> dsc.validate()\n >>>\n\n >>> bad = Dsc('testdeb_0.0.0-badchecksums.dsc')\n >>> bad.corrected_checksums\n {'sha256': defaultdict(None, {'/tmp/testdeb_0.0.0-1.debian.tar.xz': '1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858', '/tmp/testdeb_0.0.0.orig.tar.gz': 'aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7'}), 'sha1': defaultdict(None, {'/tmp/testdeb_0.0.0-1.debian.tar.xz': 'cb3474ff94053018957ebcf1d8a2b45f75dda449', '/tmp/testdeb_0.0.0.orig.tar.gz': 'f250ac0a426b31df24fc2c98050f4fab90e456cd'})}\n >>> bad.all_checksums_correct\n False\n >>> bad.validate()\n pydpkg.DscBadChecksumsError: {'sha256': defaultdict(None, {'/tmp/testdeb_0.0.0-1.debian.tar.xz': '1ddb2a7336a99bc1d203f3ddb59f6fa2d298e90cb3e59cccbe0c84e359979858', '/tmp/testdeb_0.0.0.orig.tar.gz': 'aa57ba8f29840383f5a96c5c8f166a9e6da7a484151938643ce2618e82bfeea7'}), 'sha1': defaultdict(None, {'/tmp/testdeb_0.0.0-1.debian.tar.xz': 'cb3474ff94053018957ebcf1d8a2b45f75dda449', '/tmp/testdeb_0.0.0.orig.tar.gz': 'f250ac0a426b31df24fc2c98050f4fab90e456cd'})}\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/theclimatecorporation/python-dpkg/tarball/1.4.0", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/theclimatecorporation/python-dpkg", "keywords": "apt,debian,dpkg,packaging", "license": "", "maintainer": "", "maintainer_email": "", "name": "pydpkg", "package_url": "https://pypi.org/project/pydpkg/", "platform": "", "project_url": "https://pypi.org/project/pydpkg/", "project_urls": { "Download": "https://github.com/theclimatecorporation/python-dpkg/tarball/1.4.0", "Homepage": "https://github.com/theclimatecorporation/python-dpkg" }, "release_url": "https://pypi.org/project/pydpkg/1.4.0/", "requires_dist": [ "arpy (==1.1.1)", "six (==1.10.0)", "PGPy (==0.4.1)", "pep8 (==1.7.0) ; extra == 'test'", "pytest (==3.1.1) ; extra == 'test'", "pylint (==2.3.1) ; extra == 'test'" ], "requires_python": ">=3.4", "summary": "A python library for parsing debian package control headers and comparing version strings", "version": "1.4.0" }, "last_serial": 5407234, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "79fed4f9d237211b53b02b46b5702658", "sha256": "be805071e85f77962ca870c9f5374fa4081619574c63938bb06547c157b63e51" }, "downloads": -1, "filename": "pydpkg-1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "79fed4f9d237211b53b02b46b5702658", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 5400, "upload_time": "2017-01-25T20:58:17", "url": "https://files.pythonhosted.org/packages/70/37/3089331b051c0875edc168db5c69fbf9d06db3694a91315b97c8b775191e/pydpkg-1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "661d7f0478bdb1ec16418163c505a0f1", "sha256": "1cbffecb53e2babac63f75a3e6502378cb40b760c21c974832efe2ae3d9b858e" }, "downloads": -1, "filename": "pydpkg-1.0.tar.gz", "has_sig": false, "md5_digest": "661d7f0478bdb1ec16418163c505a0f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3984, "upload_time": "2017-01-25T20:58:44", "url": "https://files.pythonhosted.org/packages/ee/65/a3ac913f2cd913b6bded5eebd8a7a60b301e622af4a754a2e67ea7d702e7/pydpkg-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "341b813c089d0d76d0372dabbf09dcf0", "sha256": "70e705c14634564bfedd8fa7e687964b515438842614b588dbe404b22c9d64b7" }, "downloads": -1, "filename": "pydpkg-1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "341b813c089d0d76d0372dabbf09dcf0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7391, "upload_time": "2017-06-04T23:03:37", "url": "https://files.pythonhosted.org/packages/8f/da/8a82d7c97cbfa3a66afacf6f7818c5cf7e52878cdfc6217b8ed8151d45fc/pydpkg-1.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4775317bf08be48ac3d907dffd13d986", "sha256": "42086fdbd0a78fd0890790be75cf83e7c6903cdd88181116cdc3da33b1e536ec" }, "downloads": -1, "filename": "pydpkg-1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "4775317bf08be48ac3d907dffd13d986", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7397, "upload_time": "2017-06-04T23:03:39", "url": "https://files.pythonhosted.org/packages/b3/9f/aa121718372ad521ca45eb5b31a7684560b85beb6f95bb09e9650d3ffcbf/pydpkg-1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2998b1cb96eb28934b8bea40441fda1e", "sha256": "d8778a7f814a39929bf7677d2096c7d450dd5b606de17b5114f17ff8758503fc" }, "downloads": -1, "filename": "pydpkg-1.1.tar.gz", "has_sig": false, "md5_digest": "2998b1cb96eb28934b8bea40441fda1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5607, "upload_time": "2017-06-04T23:04:21", "url": "https://files.pythonhosted.org/packages/df/c1/398f4af0fd4222aa1e4072f2bcc49da1c710d6db3bba983591f26bb8d733/pydpkg-1.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "85eba002365fd5f2b88b59de1b7fa763", "sha256": "f77acc00a3e1d6e2e5d89135372d0c2fbce2b8e5e727eafd7ceb57e2ce9ca567" }, "downloads": -1, "filename": "pydpkg-1.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "85eba002365fd5f2b88b59de1b7fa763", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7417, "upload_time": "2017-06-09T17:54:25", "url": "https://files.pythonhosted.org/packages/4d/1f/7620a4895837e8393255e5a882b534a38b9b2bcdbfd8e73915a9d704a7bd/pydpkg-1.1.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1c502a7f6430f792d315be50dfc31049", "sha256": "17f2a4e764427fa66f2f90c80dea54b62f3d0909a3a64660178b775160422777" }, "downloads": -1, "filename": "pydpkg-1.1.1.tar.gz", "has_sig": false, "md5_digest": "1c502a7f6430f792d315be50dfc31049", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5615, "upload_time": "2017-06-09T17:53:40", "url": "https://files.pythonhosted.org/packages/ad/8d/10a8b40a0e213b11bf32d74706a33eaf86f39ac16c71478192f302433cdf/pydpkg-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "6a0a91bd6eb584cf18bc7f187816aabc", "sha256": "269dc3c6426cc31d105bf71b1db6be9f671bb97aafecdde082c22feb412bcdbf" }, "downloads": -1, "filename": "pydpkg-1.1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "6a0a91bd6eb584cf18bc7f187816aabc", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7442, "upload_time": "2017-06-09T17:59:29", "url": "https://files.pythonhosted.org/packages/68/1e/1bcbe9a71d486fcd0e6370f97ce1c763b9cd99acc221860a8f1e0b355bf4/pydpkg-1.1.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9318df2d604476633e9781da58f616cc", "sha256": "60ca75471415c808c117b2d4f568475dd7d9b17fc0f9557aa129d3d3a4d5b850" }, "downloads": -1, "filename": "pydpkg-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "9318df2d604476633e9781da58f616cc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7422, "upload_time": "2017-06-09T18:00:44", "url": "https://files.pythonhosted.org/packages/41/57/a85d4029d2fb802b26b35cd45f4823e958ea94b9abef401afff9ac2549fa/pydpkg-1.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5840c88aa23843707052b9ad53b74d3a", "sha256": "80ba721055d29e9469da83fe50f8c8eb66f01490c1b8fd420c2a4b73a791e76f" }, "downloads": -1, "filename": "pydpkg-1.1.2.tar.gz", "has_sig": false, "md5_digest": "5840c88aa23843707052b9ad53b74d3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5647, "upload_time": "2017-06-09T17:59:00", "url": "https://files.pythonhosted.org/packages/8c/12/9b2c86e38c864dededc05cd29ed66677baa46d607dab7eb107856cf4b9fb/pydpkg-1.1.2.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "14a24b25cf2ed1f8e943d00655579feb", "sha256": "80c26ea6277bf5b212df70d7371ae9f7f21a3f706da1fa664dc665d7c204545f" }, "downloads": -1, "filename": "pydpkg-1.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "14a24b25cf2ed1f8e943d00655579feb", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7923, "upload_time": "2017-06-12T14:32:36", "url": "https://files.pythonhosted.org/packages/f8/e4/0d7b2e7ef5428c6da6d24301dfad1e352f342fc931ba916e3614057c6202/pydpkg-1.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c718640f7f5856b202cfefeb418fd224", "sha256": "939726a8a1d39384925553dc9d1164486ae4b474db2d01eacf75ceee686a7f54" }, "downloads": -1, "filename": "pydpkg-1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c718640f7f5856b202cfefeb418fd224", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7928, "upload_time": "2017-06-12T14:34:13", "url": "https://files.pythonhosted.org/packages/2a/e6/2eabb1aa62f3626ad143400dd6d3c074df7624e37eff0f8484cba7abe577/pydpkg-1.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "573972cadd7e3c2a377e577a3c26334b", "sha256": "2830a14aa44fc05d84e3652f0a59a7f88101d0c2715f2c91e06e4d561233abc1" }, "downloads": -1, "filename": "pydpkg-1.2.0.tar.gz", "has_sig": false, "md5_digest": "573972cadd7e3c2a377e577a3c26334b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6134, "upload_time": "2017-06-12T14:29:38", "url": "https://files.pythonhosted.org/packages/0d/a9/4d7aedf79960f719720d5f97bd11a3e5c0caf8323238dcd6860eadb39d1e/pydpkg-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "88cced4565bcdee8b6be4ca4ac318cc7", "sha256": "fb064e211de6434fbe8befdafa30d82cf925fbb7a196af73f43fd3970558649f" }, "downloads": -1, "filename": "pydpkg-1.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "88cced4565bcdee8b6be4ca4ac318cc7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 8034, "upload_time": "2017-06-13T21:16:01", "url": "https://files.pythonhosted.org/packages/70/ac/2140134321cacd2bee949ecb327d8d7d421139ac83156f2aafaaa7cfb17a/pydpkg-1.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16ce800a8de0667f59ada6a836d4cba3", "sha256": "630e3a314e0441074e33f6a2ba8dd0ff0fed22011aba3b12aacc2057f954ccb8" }, "downloads": -1, "filename": "pydpkg-1.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "16ce800a8de0667f59ada6a836d4cba3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8039, "upload_time": "2017-06-13T21:16:22", "url": "https://files.pythonhosted.org/packages/47/c2/348085366c118839c16e8dfbc0a0d90e119a318728c989ae3ff4daa5a5e5/pydpkg-1.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29e5c7b865668fe204921cd0fd8c4058", "sha256": "b0e79ee0b0e3dd81edea8c66064f2c20fb9d0702367627905597098793909c52" }, "downloads": -1, "filename": "pydpkg-1.2.1.tar.gz", "has_sig": false, "md5_digest": "29e5c7b865668fe204921cd0fd8c4058", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6240, "upload_time": "2017-06-13T21:15:22", "url": "https://files.pythonhosted.org/packages/bb/95/0c9086506f9b1c9def60906beb2c72759b5f5ef82c450cb881cdf9757308/pydpkg-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "104cdf9a11a65b6f48a9334bfbc328cd", "sha256": "b78b6e0c40f9cfbe5e5b71bcef958b9a1b6062bf3f6c91cdbce39488e873285e" }, "downloads": -1, "filename": "pydpkg-1.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "104cdf9a11a65b6f48a9334bfbc328cd", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 10000, "upload_time": "2017-06-22T03:19:00", "url": "https://files.pythonhosted.org/packages/09/29/a88843f5a66e273164657784e22648047f70e4125139b8f78c5d0370f6df/pydpkg-1.3.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1a16e53309a3e1e7ce3f3d8e7ec1a254", "sha256": "9c91cb61b82cb33e1d938609613616a956ff6ae76f657d3968ea49115a8b5f6e" }, "downloads": -1, "filename": "pydpkg-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1a16e53309a3e1e7ce3f3d8e7ec1a254", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10003, "upload_time": "2017-06-22T03:19:02", "url": "https://files.pythonhosted.org/packages/8c/6c/a4b4666c11740b21ad6b38e168623198d38c32086fdb3d546edb515a348d/pydpkg-1.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0f911f372bfd80b99ec04a2ae754916b", "sha256": "984759fcfde4ba967166e91f0fa63fc622daf64c81a83c82b21bf816e101304d" }, "downloads": -1, "filename": "pydpkg-1.3.0.tar.gz", "has_sig": false, "md5_digest": "0f911f372bfd80b99ec04a2ae754916b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8330, "upload_time": "2017-06-22T03:19:04", "url": "https://files.pythonhosted.org/packages/e5/52/4c5b3725ef4e714d774cc8fb12aadf72a797c162695f868b0b1930a4df04/pydpkg-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "3b653ee71af729ad15c150d20ba3031a", "sha256": "6929f0498ca77789a27745779aff21d796127c239d3668b9219caf2645828ee1" }, "downloads": -1, "filename": "pydpkg-1.3.1-py2-none-any.whl", "has_sig": false, "md5_digest": "3b653ee71af729ad15c150d20ba3031a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 10520, "upload_time": "2017-06-23T16:23:41", "url": "https://files.pythonhosted.org/packages/bc/5b/2bcdfdaf43db36703ac339b616b11b16542a68a9cdc7d7cbca094cc8b199/pydpkg-1.3.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b6450e697b79ed6f2377b2a19ba9e98d", "sha256": "63ae889845bc08f6fc79b0c252ca60fdbbe2d4173a360da95262ed491b9d38f3" }, "downloads": -1, "filename": "pydpkg-1.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b6450e697b79ed6f2377b2a19ba9e98d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10522, "upload_time": "2017-06-23T16:23:43", "url": "https://files.pythonhosted.org/packages/7b/96/f182b04f626fd64abdba6b98be5867f3fb402e72df2d48d4ce6e717efc75/pydpkg-1.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a71418b7938c1e17ce7b6de5e0579e9c", "sha256": "98586f0d8bbafb2b861a82053e0042ee1e379c9570d72de774cbd58daeb7ec97" }, "downloads": -1, "filename": "pydpkg-1.3.1.tar.gz", "has_sig": false, "md5_digest": "a71418b7938c1e17ce7b6de5e0579e9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8823, "upload_time": "2017-06-23T16:23:45", "url": "https://files.pythonhosted.org/packages/1c/eb/2f5a849b00260f0bfee5f73ab478aec2fef4f643a84b9427a7f05b6afbe6/pydpkg-1.3.1.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "69c72db32279762d5da96dfe91997039", "sha256": "7e40838bc7ba89985f5fee6d5aca03f3950fed4f4339816f1ef87ddbb542a8de" }, "downloads": -1, "filename": "pydpkg-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "69c72db32279762d5da96dfe91997039", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 12893, "upload_time": "2019-06-16T18:49:57", "url": "https://files.pythonhosted.org/packages/99/b5/8c6a31e8a64c770a68b3741d9d497c89110213b145e88a914b3dfe80e58f/pydpkg-1.4.0-py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "69c72db32279762d5da96dfe91997039", "sha256": "7e40838bc7ba89985f5fee6d5aca03f3950fed4f4339816f1ef87ddbb542a8de" }, "downloads": -1, "filename": "pydpkg-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "69c72db32279762d5da96dfe91997039", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 12893, "upload_time": "2019-06-16T18:49:57", "url": "https://files.pythonhosted.org/packages/99/b5/8c6a31e8a64c770a68b3741d9d497c89110213b145e88a914b3dfe80e58f/pydpkg-1.4.0-py3-none-any.whl" } ] }