{ "info": { "author": "martin68", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "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", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Shells", "Topic :: System :: Systems Administration", "Topic :: System :: System Shells", "Topic :: Terminals", "Topic :: Utilities" ], "description": "apt-smart: Smart, automated Debian/Ubuntu mirror selection\n============================================================\n\n.. image:: https://travis-ci.org/martin68/apt-smart.svg?branch=master\n :target: https://travis-ci.org/martin68/apt-smart\n\n.. image:: https://coveralls.io/repos/martin68/apt-smart/badge.svg?branch=master\n :target: https://coveralls.io/r/martin68/apt-smart?branch=master\n\n`\u7b80\u4f53\u4e2d\u6587 `_\n\nThe `apt-smart` package automates robust apt-get_ mirror (a.k.a Repositories, Sources) selection for\nDebian_ and Ubuntu_ by enabling smart discovery of available mirrors, smart ranking of\navailable mirrors, automatic switching between mirrors and robust package list\nupdating (see features_). It's currently tested on Python 2.7, 3.4, 3.5,\n3.6, 3.7 and PyPy (although test coverage is still rather low, see status_).\n\n.. contents::\n :local:\n\nWhy?\n--------\n\nAs a successor of `apt-mirror-updater `_,\n`apt-smart` has many improvements in intelligence, speed, accuracy and robustness (see changelog_) when offering the best mirror for you.\nIt has a plan to optionally be a set-and-forget smart daemon: running in the background as a reverse proxy\nalways redirecting to the best mirror without root privilege. It also has a plan to support other distros like: Linux Mint , ROS...\n\n.. _features:\n\nFeatures\n--------\n\n**Smart discovery of available mirrors**\n Debian_ and Ubuntu_ mirrors are discovered automatically by querying the\n `Debian mirror list `_ or the `Ubuntu\n mirror list1 `_ or the `Ubuntu\n mirror list2 `_ (the applicable\n mirror list is automatically selected based on the current platform).\n It can smartly get mirrors within the country which the user is in.\n\n**Smart ranking of available mirrors**\n Discovered mirrors are ranked by bandwidth (to pick the fastest mirror) and whether they're up-to-date and\n excluded if they're being updated (see `issues with mirror updates`_). e.g. with `--list-mirrors` flag it would output like this:\n\n.. code-block:: sh\n\n -----------------------------------------------------------------------------------------------------\n | Rank | Mirror URL | Available? | Updating? | Last updated | Bandwidth |\n -----------------------------------------------------------------------------------------------------\n | 1 | http://archive.ubuntu.com/ubuntu | Yes | No | Up to date | 16.95 KB/s |\n | 2 | http://mirrors.cqu.edu.cn/ubuntu | Yes | No | 3 hours behind | 427.43 KB/s |\n | 3 | http://mirrors.nju.edu.cn/ubuntu | Yes | No | 5 hours behind | 643.27 KB/s |\n | 4 | http://mirrors.tuna.tsinghua.e...| Yes | No | 5 hours behind | 440.09 KB/s |\n | 5 | http://mirrors.cn99.com/ubuntu | Yes | No | 13 hours behind | 2.64 MB/s |\n | 6 | http://mirrors.huaweicloud.com...| Yes | No | 13 hours behind | 532.01 KB/s |\n | 7 | http://mirrors.dgut.edu.cn/ubuntu| Yes | No | 13 hours behind | 328.25 KB/s |\n | 8 | http://mirrors.aliyun.com/ubuntu | Yes | No | 23 hours behind | 1.06 MB/s |\n | 9 | http://ftp.sjtu.edu.cn/ubuntu | Yes | No | 23 hours behind | 647.2 KB/s |\n | 10 | http://mirrors.yun-idc.com/ubuntu| Yes | No | 23 hours behind | 526.6 KB/s |\n | 11 | http://mirror.lzu.edu.cn/ubuntu | Yes | No | 23 hours behind | 210.99 KB/s |\n | 12 | http://mirrors.ustc.edu.cn/ubuntu| Yes | Yes | 8 hours behind | 455.02 KB/s |\n | 13 | http://mirrors.sohu.com/ubuntu | No | No | Unknown | 90.28 bytes/s |\n -----------------------------------------------------------------------------------------------------\n\n**Automatic switching between mirrors**\n The main mirror configured in ``/etc/apt/sources.list`` can be changed with a\n single command. The new (to be configured) mirror can be selected\n automatically or configured explicitly by the user.\n\n**Robust package list updating**\n Several apt-get_ subcommands can fail if the current mirror is being updated\n (see `issues with mirror updates`_) and `apt-smart` tries to work\n around this by wrapping ``apt-get update`` to retry on failures and\n automatically switch to a different mirror when it looks like the current\n mirror is being updated (because I've seen such updates take more than 15\n minutes and it's not always acceptable to wait for so long, especially in\n automated solutions).\n\n.. _status:\n\nStatus\n------\n\nOn the one hand the `apt-smart` package was developed based on quite a\nfew years of experience in using apt-get_ on Debian_ and Ubuntu_ systems. On the\nother hand the Python package itself is relatively new: it was developed and\npublished in Sep 2019. As such:\n\n.. warning:: Until `apt-smart` has been rigorously tested I consider\n it a proof of concept (beta software) so if it corrupts your\n system you can't complain that you weren't warned! The worst that can happen\n (assuming you trust my judgement ;-) is that\n ``/etc/apt/sources.list`` is corrupted however a backup copy is\n made before any changes are applied, so I don't see how this can\n result in irreversible corruption.\n\nI'm working on an automated test suite but at the moment I'm still a bit fuzzy\non how to create representative tests for the error handling code paths (also,\nwriting a decent test suite requires a significant chunk of time :-).\n\nInstallation\n------------\n\nThe `apt-smart` package is available on PyPI_ which means installation\nshould be as simple as (paste all below commands together into terminal):\n\n.. code-block:: sh\n\n sudo apt update\n sudo apt install python-pip -y # install python-pip without asking\n pip install --user apt-smart # --user flag means install to per user site-packages directory(see below)\n echo \"export PATH=\\$(python -c 'import site; print(site.USER_BASE + \\\"/bin\\\")'):\\$PATH\" >> ~/.bashrc\n source ~/.bashrc # set per user site-packages directory to PATH\n\n\nThere's actually a multitude of ways to install Python packages (e.g. the `per\nuser site-packages directory`_, `virtual environments`_ or just installing\nsystem wide) and I have no intention of getting into that discussion here, so\nif this intimidates you then read up on your options before returning to these\ninstructions ;-).\n\nUsage\n-----\n\nThere are two ways to use the `apt-smart` package: As the command line\nprogram ``apt-smart`` and as a Python API. For details about the\nPython API please refer to the API documentation available on `Read the Docs`_.\nThe command line interface is described below.\n\n.. contents::\n :local:\n\n.. A DRY solution to avoid duplication of the `apt-smart --help' text:\n..\n.. [[[cog\n.. from humanfriendly.usage import inject_usage\n.. inject_usage('apt_smart.cli')\n.. ]]]\n\n**Usage:** `apt-smart [OPTIONS]`\n\nThe apt-smart program automates robust apt-get mirror selection for\nDebian and Ubuntu by enabling discovery of available mirrors, ranking of\navailable mirrors, automatic switching between mirrors and robust package list\nupdating.\n\n**Supported options:**\n\n.. csv-table::\n :header: Option, Description\n :widths: 30, 70\n\n\n \"``-r``, ``--remote-host=SSH_ALIAS``\",\"Operate on a remote system instead of the local system. The ``SSH_ALIAS``\n argument gives the SSH alias of the remote host. It is assumed that the\n remote account has root privileges or password-less sudo access.\"\n \"``-f``, ``--find-current-mirror``\",\"Determine the main mirror that is currently configured in\n /etc/apt/sources.list and report its URL on standard output.\"\n \"``-F``, ``--file-to-read=local_file_absolute_path``\",\"Read a local absolute path (path and filename must NOT contain whitespace) file\n containing custom mirror URLs (one URL per line) to add custom mirrors to rank.\"\n \"``-b``, ``--find-best-mirror``\",\"Discover available mirrors, rank them, select the best one and report its\n URL on standard output.\"\n \"``-l``, ``--list-mirrors``\",List available (ranked) mirrors on the terminal in a human readable format.\n \"``-L``, ``--url-char-len=int``\",\"An integer to specify the length of chars in mirrors' URL to display when\n using ``--list-mirrors``, default is 34\"\n \"``-c``, ``--change-mirror=MIRROR_URL``\",Update /etc/apt/sources.list to use the given ``MIRROR_URL``.\n \"``-a``, ``--auto-change-mirror``\",\"Discover available mirrors, rank the mirrors by connection speed and update\n status and update /etc/apt/sources.list to use the best available mirror.\"\n \"``-u``, ``--update``, ``--update-package-lists``\",\"Update the package lists using \"\"apt-get update\"\", retrying on failure and\n automatically switch to a different mirror when it looks like the current\n mirror is being updated.\"\n \"``-x``, ``--exclude=PATTERN``\",\"Add a pattern to the mirror selection blacklist. ``PATTERN`` is expected to be\n a shell pattern (containing wild cards like \"\"?\"\" and \"\"\\*\"\") that is matched\n against the full URL of each mirror.\"\n \"``-v``, ``--verbose``\",Increase logging verbosity (can be repeated).\n \"``-V``, ``--version``\",Show version number and Python version.\n \"``-R``, ``--create-chroot=local_dir_absolute_path``\",Create chroot with the best mirror in a local directory with absolute_path\n \"``-q``, ``--quiet``\",Decrease logging verbosity (can be repeated).\n \"``-h``, ``--help``\",\" Show this message and exit.\n\n Note: since apt-smart uses `urlopen` method in The Python Standard Library,\n you can set Environment Variables to make apt-smart connect via HTTP proxy, e.g. in terminal type:\n export {http,https,ftp}_proxy='http://user:password@myproxy.com:1080'\n These will not persist however (no longer active after you close the terminal),\n so you may wish to add the line to your ~/.bashrc\"\n\n.. [[[end]]]\n\n.. _issues with mirror updates:\n\nIssues with mirror updates\n--------------------------\n\nThe most frequent failure that we run into is ``apt-get update`` crapping out\nwith 'hash sum mismatch' errors (see also `Debian bug #624122`_). When this\nhappens a file called ``Archive-Update-in-Progress-*`` can sometimes be found\non the index page of the mirror that is being used (see also `Debian bug\n#110837`_). I've seen these situations last for more than 15 minutes.\n\nMy working theory about these 'hash sum mismatch' errors is that they are\ncaused by the fact that mirror updates aren't atomic, apparently causing\n``apt-get update`` to download a package list whose datafiles aren't consistent\nwith each other. If this assumption proves to be correct (and also assuming\nthat different mirrors are updated at different times :-) then the command\n``apt-smart --update-package-lists`` should work around this annoying\nfailure mode (by automatically switching to a different mirror when 'hash sum\nmismatch' errors are encountered).\n\nPublishing `apt-smart` to the world is my attempt to contribute to\nthis situation instead of complaining in bug trackers (see above) where no\nrobust and automated solution is emerging (at the time of writing). Who knows,\nmaybe some day these issues will be resolved by moving logic similar to what\nI've implemented here into ``apt-get`` itself. Of course it would also help if\nmirror updates were atomic...\n\nContact\n-------\n\nThe latest version of `apt-smart` is available on PyPI_ and GitHub_.\nThe documentation is hosted on `Read the Docs`_ and includes a changelog_. For\nbug reports please create an issue on GitHub_.\n\nLicense\n-------\n\nThis software is licensed under the `MIT license`_.\n\n\u00a9 2019 martin68\n\n\u00a9 2018 Peter Odding.\n\n\n.. External references:\n.. _apt-get: https://en.wikipedia.org/wiki/Advanced_Packaging_Tool\n.. _at work: http://www.paylogic.com/\n.. _changelog: https://apt-smart.readthedocs.io/en/latest/changelog.html\n.. _Debian bug #110837: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=110837\n.. _Debian bug #624122: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=624122\n.. _Debian: https://en.wikipedia.org/wiki/Debian\n.. _documentation: https://apt-smart.readthedocs.io\n.. _GitHub: https://github.com/martin68/apt-smart\n.. _MIT license: http://en.wikipedia.org/wiki/MIT_License\n.. _per user site-packages directory: https://www.python.org/dev/peps/pep-0370/\n.. _PyPI: https://pypi.python.org/pypi/apt-smart\n.. _Read the Docs: https://apt-smart.readthedocs.io\n.. _Ubuntu: https://en.wikipedia.org/wiki/Ubuntu_(operating_system)\n.. _virtual environments: http://docs.python-guide.org/en/latest/dev/virtualenvs/\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://apt-smart.readthedocs.io", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "apt-smart", "package_url": "https://pypi.org/project/apt-smart/", "platform": "", "project_url": "https://pypi.org/project/apt-smart/", "project_urls": { "Homepage": "https://apt-smart.readthedocs.io" }, "release_url": "https://pypi.org/project/apt-smart/7.0.7/", "requires_dist": [ "beautifulsoup4 (>=4.4.1)", "capturer (>=2.1.1)", "coloredlogs (>=5.0)", "executor (>=21.1.1)", "humanfriendly (>=4.17)", "property-manager (>=1.3)", "six (>=1.10.0)", "stopit (>=1.1.1)", "wheel (>=0.26.0)", "flufl.enum (<4.1,>=4.0.1) ; python_version == \"2.6\"", "flufl.enum (>=4.0.1) ; python_version == \"2.6\" or python_version == \"2.7\" or python_version == \"3.0\" or python_version == \"3.1\" or python_version == \"3.2\" or python_version == \"3.3\"" ], "requires_python": "", "summary": "Automated, robust apt-get mirror selection for Debian and Ubuntu", "version": "7.0.7" }, "last_serial": 5906321, "releases": { "7.0": [ { "comment_text": "", "digests": { "md5": "9b88dbd4c53b9abe858935096176035d", "sha256": "d274ca1e01029e6f8d989663e800c0da92b3fe020bc2ae888d67845de44df9e1" }, "downloads": -1, "filename": "apt_smart-7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b88dbd4c53b9abe858935096176035d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41264, "upload_time": "2019-09-16T04:33:46", "url": "https://files.pythonhosted.org/packages/24/f4/eb4a1d5024119f3013b30e0a68eee8d23e5c40f261fa4b6c32ac2d57c000/apt_smart-7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "58f642bead792e32eae1ec1dbf3b09e2", "sha256": "e46506a3a5731eccc4f007b80385050c475cd20b4b4005db510640e41ed8e1b5" }, "downloads": -1, "filename": "apt-smart-7.0.tar.gz", "has_sig": false, "md5_digest": "58f642bead792e32eae1ec1dbf3b09e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48770, "upload_time": "2019-09-16T04:33:50", "url": "https://files.pythonhosted.org/packages/ca/5a/8ed5264ed0dc6b2875dae26c74d538274cc8bb5bde4e66a6ed602db0d954/apt-smart-7.0.tar.gz" } ], "7.0.1": [ { "comment_text": "", "digests": { "md5": "197802f36429cb24c77467b9a7adbbaf", "sha256": "aa4add8d6f9e3e8b6fee22194cd0e8d80e59b4ff1fcbb752d1d49a029e19218f" }, "downloads": -1, "filename": "apt_smart-7.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "197802f36429cb24c77467b9a7adbbaf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41479, "upload_time": "2019-09-18T04:33:59", "url": "https://files.pythonhosted.org/packages/e0/c3/f2ea048fa73d6ea516bf699edf96324946f0dec99f81f23f5026ab5cb648/apt_smart-7.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0cc523ef44da99275066b79f4e7c2e82", "sha256": "ae8ff7da09a5468d06092f14741953ff157dc1f5b607250513bb292d48e33cba" }, "downloads": -1, "filename": "apt-smart-7.0.1.tar.gz", "has_sig": false, "md5_digest": "0cc523ef44da99275066b79f4e7c2e82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49201, "upload_time": "2019-09-18T04:34:03", "url": "https://files.pythonhosted.org/packages/12/4b/42ec7488ea7e03de40dbf52045914b11bbf909a4d6cb36b28a08c81b6330/apt-smart-7.0.1.tar.gz" } ], "7.0.2": [ { "comment_text": "", "digests": { "md5": "59094b93b6ab8851a36da837302b2b1c", "sha256": "48732047b2cd06880062fdf10be1885c9a5b6267381f04ff0aeae171a61db29a" }, "downloads": -1, "filename": "apt_smart-7.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "59094b93b6ab8851a36da837302b2b1c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41755, "upload_time": "2019-09-18T17:52:08", "url": "https://files.pythonhosted.org/packages/06/09/37a5a975d250998416dc55583d8efa8aca8cd953b20c8e4917a9bf0caa41/apt_smart-7.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "471694a2b931739d23691296258c5ec9", "sha256": "4e1aab550533c09f54729e295db235a81187cab6de623d07d75a7d74ab8c1c61" }, "downloads": -1, "filename": "apt-smart-7.0.2.tar.gz", "has_sig": false, "md5_digest": "471694a2b931739d23691296258c5ec9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49360, "upload_time": "2019-09-18T17:52:10", "url": "https://files.pythonhosted.org/packages/20/1b/8efed5e6ec237e920cc6058480806adf326b1bb9b74b58514fd385ebd635/apt-smart-7.0.2.tar.gz" } ], "7.0.3": [ { "comment_text": "", "digests": { "md5": "688cd17ef690978f846c76f08d5f9017", "sha256": "ef9866ba2f31c0530467d3ca715e0d26f186a24f5778f66542a0aa09043d6af3" }, "downloads": -1, "filename": "apt_smart-7.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "688cd17ef690978f846c76f08d5f9017", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41759, "upload_time": "2019-09-19T02:00:21", "url": "https://files.pythonhosted.org/packages/45/eb/94ab7056e792589e01e570f23e47034dcf92f22f3f238b02e2a4b722853b/apt_smart-7.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e766081d4af4eca9b7887891543d659e", "sha256": "9c7e56d91dc1c21d6480bad3c0c56a68619671b6599df2b5d31272a793911249" }, "downloads": -1, "filename": "apt-smart-7.0.3.tar.gz", "has_sig": false, "md5_digest": "e766081d4af4eca9b7887891543d659e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49454, "upload_time": "2019-09-19T02:00:24", "url": "https://files.pythonhosted.org/packages/a7/2a/95ecfaf6b5be6bbde7492fbad253f201f4b97d96e5235bde4df89fac6e45/apt-smart-7.0.3.tar.gz" } ], "7.0.4": [ { "comment_text": "", "digests": { "md5": "bc43759f812ce187f7c382a4c98ccfd6", "sha256": "3e74088f887fd5b0cd11d9fd82e05b9926b9ba07ba7853283c980c79d3fd787d" }, "downloads": -1, "filename": "apt_smart-7.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bc43759f812ce187f7c382a4c98ccfd6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41820, "upload_time": "2019-09-20T07:13:16", "url": "https://files.pythonhosted.org/packages/51/81/822fb327d860c14532a3e7f8b736fd2deb5179f060c11fb68343c63ffeb6/apt_smart-7.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "20213d82fe4e70fd5c1ece4af5d40bb9", "sha256": "8fc860846853d7c436947e8482547acfa1b794aa15a446da8016477fa25fefe8" }, "downloads": -1, "filename": "apt-smart-7.0.4.tar.gz", "has_sig": false, "md5_digest": "20213d82fe4e70fd5c1ece4af5d40bb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49604, "upload_time": "2019-09-20T07:13:19", "url": "https://files.pythonhosted.org/packages/62/dd/6d67e4bb91e74e4a40d0d4c5c82aa3dcb74797f5b89be33b669c195ae1c9/apt-smart-7.0.4.tar.gz" } ], "7.0.5": [ { "comment_text": "", "digests": { "md5": "db6406015ea574638e28e0047d48c0d4", "sha256": "ecc4eaccf9c5d35ede3c1354b504f1498b1481d5f8a24654b5c657efa5d8af34" }, "downloads": -1, "filename": "apt_smart-7.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "db6406015ea574638e28e0047d48c0d4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 42359, "upload_time": "2019-09-21T07:33:47", "url": "https://files.pythonhosted.org/packages/af/fc/153e8699a0a536136996dad16372e8e3ae00e82f4a3452aafcc673e62312/apt_smart-7.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67ff35d5c1f7cb72a13e37c5ee1d4ab9", "sha256": "bf7761a22f086117c35694215c96bb48d656a76bdfffac796f2d5a92ea80d6d9" }, "downloads": -1, "filename": "apt-smart-7.0.5.tar.gz", "has_sig": false, "md5_digest": "67ff35d5c1f7cb72a13e37c5ee1d4ab9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50357, "upload_time": "2019-09-21T07:33:50", "url": "https://files.pythonhosted.org/packages/96/97/4a8a9287dcf3b46dfe2d173b7d897d01615973ed2b0ff9878484d5cb6a0b/apt-smart-7.0.5.tar.gz" } ], "7.0.6": [ { "comment_text": "", "digests": { "md5": "f59918a6b4e8a9a030e9bba7f6ad9fa9", "sha256": "47a29d668c4119a032b9d94237fb643d9eebc4e9a1200b8f465cda22448a4293" }, "downloads": -1, "filename": "apt_smart-7.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f59918a6b4e8a9a030e9bba7f6ad9fa9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43404, "upload_time": "2019-09-25T01:44:36", "url": "https://files.pythonhosted.org/packages/7a/3d/c90bdccb2190c0ba629b40af7ce031b12d5455833cf3b9e215b260023622/apt_smart-7.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae96264d0a091ddae6c39906350602a0", "sha256": "b85f1084b00b48332d8b2c9c9b72dd5d37df87f6512e407e9770fc7f88e162ef" }, "downloads": -1, "filename": "apt-smart-7.0.6.tar.gz", "has_sig": false, "md5_digest": "ae96264d0a091ddae6c39906350602a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51728, "upload_time": "2019-09-25T01:44:39", "url": "https://files.pythonhosted.org/packages/d1/1c/e48d1a023d19ce19799411fee9e263c64ad0c6ee3ae7fbbadf4acf7e3adf/apt-smart-7.0.6.tar.gz" } ], "7.0.7": [ { "comment_text": "", "digests": { "md5": "cf988858a9d81d2d523d2b6bb6dea825", "sha256": "d156cbea0740a473a8782a94c9ff04b3254b7e455c9bd642ac97bf57d0f93e5b" }, "downloads": -1, "filename": "apt_smart-7.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cf988858a9d81d2d523d2b6bb6dea825", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43476, "upload_time": "2019-09-30T09:51:18", "url": "https://files.pythonhosted.org/packages/e9/b3/d631c71945636b6f72f35c63c7e646411b3a742f738d4c9a184f4881457f/apt_smart-7.0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e728bb7613043f354efd7f9633ad607a", "sha256": "7ab6dceb53ed204072df462d029791b39c789b4d7ddab8d158eec05bb6d2acb2" }, "downloads": -1, "filename": "apt-smart-7.0.7.tar.gz", "has_sig": false, "md5_digest": "e728bb7613043f354efd7f9633ad607a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51974, "upload_time": "2019-09-30T09:51:21", "url": "https://files.pythonhosted.org/packages/b9/97/0d918c7aebeb53304b71da780c884144732c10701364dc285ccd1bcffe51/apt-smart-7.0.7.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "cf988858a9d81d2d523d2b6bb6dea825", "sha256": "d156cbea0740a473a8782a94c9ff04b3254b7e455c9bd642ac97bf57d0f93e5b" }, "downloads": -1, "filename": "apt_smart-7.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cf988858a9d81d2d523d2b6bb6dea825", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 43476, "upload_time": "2019-09-30T09:51:18", "url": "https://files.pythonhosted.org/packages/e9/b3/d631c71945636b6f72f35c63c7e646411b3a742f738d4c9a184f4881457f/apt_smart-7.0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e728bb7613043f354efd7f9633ad607a", "sha256": "7ab6dceb53ed204072df462d029791b39c789b4d7ddab8d158eec05bb6d2acb2" }, "downloads": -1, "filename": "apt-smart-7.0.7.tar.gz", "has_sig": false, "md5_digest": "e728bb7613043f354efd7f9633ad607a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51974, "upload_time": "2019-09-30T09:51:21", "url": "https://files.pythonhosted.org/packages/b9/97/0d918c7aebeb53304b71da780c884144732c10701364dc285ccd1bcffe51/apt-smart-7.0.7.tar.gz" } ] }