{ "info": { "author": "Linode", "author_email": "developers@linode.com", "bugtrack_url": null, "classifiers": [], "description": "linode-cli\n==========\n\nThe Linode Command Line Interface\n\n.. image:: https://raw.githubusercontent.com/linode/linode-cli/master/demo.gif\n\nInstallation\n------------\n\nFrom pypi::\n\n pip3 install linode-cli\n\nFrom source::\n\n git clone git@github.com:linode/linode-cli.git\n cd linode-cli\n make install\n\nThis will need to be repeated on each pull. For a build to succeed, see\n`Building from Source`_ below.\n\n.. _Building from Source: #building-from-source\n\nUpgrading\n---------\n\nTo upgrade to the latest version of the Linode CLI::\n\n pip3 install linode-cli --upgrade\n\nCommunity Distributions\n-----------------------\n\nThe Linode CLI is also available through the following unofficial channels thanks\nto our awesome community! Please note that these distributions are not included\nin our release testing.\n\nHomebrew\n^^^^^^^^\n\nInstallation::\n\n brew install linode-cli\n\nUpgrading::\n\n brew upgrade linode-cli\n\nUsage\n-----\n\nThe Linode CLI is invoked with the `linode-cli`. The CLI accepts two primary\narguments, *command* and *action*::\n\n linode-cli \n\n*command* is the part of the CLI you are interacting with, for example \"linodes\".\nYou can see a list of all available commands by using `--help`::\n\n linode-cli --help\n\n*action* is the action you want to perform on a given command, for example \"list\".\nYou can see a list of all available actions for a command with the `--help` for\nthat command::\n\n linode-cli linodes --help\n\nSome actions don't require any parameters, but many do. To see details on how\nto invoke a specific action, use `--help` for that action::\n\n linode-cli linodes create --help\n\nThe first time you invoke the CLI, you will be asked to configure (see\n\"Configuration\" below for details), and optionally select some default values\nfor \"region,\" \"image,\" and \"type.\" If you configure these defaults, you may\nomit them as parameters to actions and the default value will be used.\n\nCommon Operations\n^^^^^^^^^^^^^^^^^\n\nList Linodes::\n\n linode-cli linodes list\n\nList Linodes in a Region::\n\n linode-cli linodes list --region us-east\n\nMake a Linode::\n\n linode-cli linodes create --type g5-standard-2 --region us-east --image linode/debian9 --label cli-1 --root_pass\n\nMake a Linode using Default Settings::\n\n linode-cli linodes create --label cli-2 --root_pass\n\nReboot a Linode::\n\n linode-cli linodes reboot 12345\n\nView available Linode types::\n\n linode-cli linodes types\n\nView your Volumes::\n\n linode-cli volumes list\n\nView your Domains::\n\n linode-cli domains list\n\nView records for a single Domain::\n\n linode-cli domains records-list 12345\n\nView your user::\n\n linode-cli profile view\n\nConfiguration\n\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nThe first time the CLI runs, it will prompt you to configure it. The CLI defaults\nto using web-based configuration, which is fast and convenient for users who\nhave access to a browser.\n\nTo manually configure the CLI or reconfigure it if your token expires, you can\nrun the ``configure`` command::\n\n linode-cli configure\n\nIf you prefer to provide a token directly through the terminal, possibly because\nyou don't have access to a browser where you're configuring the CLI, pass the\n``--token`` flag to the configure command as shown::\n\n linode-cli configure --token\n\nWhen configuring multiple users using web-based configuration, you may need to\nlog out of cloud.linode.com before configuring a second user.\n\nSuppressing Defaults\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nIf you configured default values for ``image``, ``region``, and Linode ``type``, they\nwill be sent for all requests that accept them if you do not specify a different\nvalue. If you want to send a request *without* these arguments, you must invoke\nthe CLI with the ``--no-defaults`` option. For example, to create a Linode with\nno ``image`` after a default Image has been configured, you would do this::\n\n linode-cli linodes create --region us-east --type g5-standard-2 --no-defaults\n\nSuppressing Warnings\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nIn some situations, like when the CLI is out of date, it will generate a warning\nin addition to its normal output. If these warnings can interfere with your\nscripts or you otherwise want them disabled, simply add the ``--suppress-warnings``\nflag to prevent them from being emitted.\n\nShell Completion\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nTo generate a completion file for a given shell type, use the ``completion`` command;\nfor example to generate completions for bash run::\n\n linode-cli completion bash\n\nThe output of this command is suitable to be included in the relevant completion\nfiles to enable command completion on your shell.\n\nEnvironment Variables\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nIf you prefer, you may store your token in an environment variable named\n``LINODE_CLI_TOKEN`` instead of using the configuration file. Doing so allows you\nto bypass the initial configuration, and subsequent calls to ``linode-cli configure``\nwill allow you to set defaults without having to set a token. Be aware that if\nthe environment variable should be unset, the Linode CLI will stop working until\nit is set again or the CLI is reconfigured with a token.\n\nYou may also use environment variables to store your Object Storage Keys for\nthe ``obj`` plugin that ships with the CLI. To do so, simply set\n``LINODE_CLI_OBJ_ACCESS_KEY`` and ``LINODE_CLI_OBJ_SECRET_KEY`` to the\nappropriate values. This allows using Linode Object Storage through the CLI\nwithout having a configuration file, which is desirable in some situations.\n\nMultiple Users\n^^^^^^^^^^^^^^\n\nIf you use the Linode CLI to manage multiple Linode accounts, you may configure\nadditional users using the ``linode-cli configure`` command. The CLI will automatically\ndetect that a new user is being configured based on the token given.\n\nDisplaying Configured Users\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nTo see what users are configured, simply run the following::\n\n linode-cli show-users\n\nThe user who is currently active will be indicated by an asterisk.\n\nChanging the Active User\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nYou may change the active user for all requests as follows::\n\n linode-cli set-user USERNAME\n\nSubsequent CLI commands will be executed as that user by default.\n\nShould you wish to execute a single request as a different user, you can supply\nthe ``--as-user`` argument to specify the username you wish to act as for that\ncommand. This *will not* change the active user.\n\nRemoving Configured Users\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nTo remove a user from you previously configured, run::\n\n linode-cli remove-user USERNAME\n\nOnce a user is removed, they will need to be reconfigured if you wish to use the\nCLI for them again.\n\nCustomizing Output\n------------------\n\nChanging Output Fields\n^^^^^^^^^^^^^^^^^^^^^^\n\nBy default, the CLI displays on some pre-selected fields for a given type of\nresponse. If you want to see everything, just ask::\n\n linode-cli linodes list --all\n\nUsing `--all` will cause the CLI to display all returned columns of output.\nNote that this will probably be hard to read on normal-sized screens for most\nactions.\n\nIf you want even finer control over your output, you can request specific columns\nbe displayed::\n\n linode-cli linodes list --format 'id,region,status,disk,memory,vcpus,transfer'\n\nThis will show some identifying information about your Linode as well as the\nresources it has access to. Some of these fields would be hidden by default -\nthat's ok. If you ask for a field, it'll be displayed.\n\nOutput Formatting\n^^^^^^^^^^^^^^^^^\n\nWhile the CLI by default outputs human-readable tables of data, you can use the\nCLI to generate output that is easier to process.\n\nMachine Readable Output\n\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\n\nTo get more machine-readable output, simply request it::\n\n linode-cli linodes list --text\n\nIf a tab is a bad delimiter, you can configure that as well::\n\n linode-cli linodes list --text --delimiter ';'\n\nYou may also disable header rows (in any output format)::\n\n linode-cli linodes list --no-headers --text\n\nJSON Output\n\"\"\"\"\"\"\"\"\"\"\"\n\nTo get JSON output from the CLI, simple request it::\n\n linode-cli linodes list --json --all\n\nWhile the `--all` is optional, you probably want to see all output fields in\nyour JSON output. If you want your JSON pretty-printed, we can do that too::\n\n linode-cli linodes list --json --pretty --all\n\nPlugins\n-------\n\nThe Linode CLI allows its features to be expanded with plugins. Some official\nplugins come bundled with the CLI and are documented above. Additionally, anyone\ncan write and distribute plugins for the CLI - these are called Third Party Plugins.\n\nTo register a Third Party Plugin, use the following command::\n\n linode-cli register-plugin PLUGIN_MODULE_NAME\n\nPlugins should give the exact command required to register them.\n\nOnce registered, the command to invoke the Third Party Plugin will be printed, and\nit will appear in the plugin list when invoking ``linode-cli --help``.\n\nTo remove a previously registered plugin, use the following command::\n\n linode-cli remove-plugin PLUGIN_NAME\n\nThis command accepts the name used to invoke the plugin in the CLI as it appears\nin ``linode-cli --help``, which may not be the same as the module name used to\nregister it.\n\nDeveloping Plugins\n^^^^^^^^^^^^^^^^^^\n\nFor information on how To write your own Third Party Plugin, see the `Plugins documentation`_.\n\n.. _Plugins documentation: https://github.com/linode/linode-cli/blob/master/linodecli/plugins/README.md\n\nBuilding from Source\n--------------------\n\nIn order to successfully build the CLI, your system will require the following:\n\n * The ``make`` command\n * ``python`` and ``python3`` (both versions are required to build a package)\n * ``pip`` and ``pip3`` (to install ``requirements.txt`` for both python versions)\n\nBefore attempting a build, install python dependencies like this::\n\n make requirements\n\nOnce everything is set up, you can initiate a build like so::\n\n make build\n\nIf desired, you may pass in ``SPEC=/path/to/openapi-spec`` when running ``build``\nor ``install``. This can be a URL or a path to a local spec, and that spec will\nbe used when generating the CLI. A yaml or json file is accepted.\n\nTo install the package as part of the build process, use this command::\n\n make install PYTHON=3\n\nWhen using ``install``, the ``PYTHON`` argument is optional - if provided, it\nwill install the CLI for that version of python. Valid values are ``2`` and\n``3``, and it will default to ``3``.\n\nTesting\n-------\n\n**WARNING!** Running the CLI tests will remove all linodes and data associated\nwith the account. It is only recommended to run these tests if you are an advanced\nuser.\n\nInstallation\n^^^^^^^^^^^^\n\nThe CLI uses the Bash Automated Testing System (BATS) for testing. To install run the following:\n\n**OSX users**::\n\n brew install bats-core\n\n**Installing Bats from source**\n\nCheck out a copy of the Bats repository. Then, either add the Bats bin directory to your\n$PATH, or run the provided install.sh command with the location to the prefix in which you\nwant to install Bats. For example, to install Bats into /usr/local::\n\n git clone https://github.com/bats-core/bats-core.git\n cd bats-core\n ./install.sh /usr/local\n\nRunning the Tests\n^^^^^^^^^^^^^^^^^\n\nRunning the tests is simple. The only requirements are that you have a .linode-cli in your user folder containing your test user token::\n\n ./test/test-runner.sh\n\n**Running Tests via Docker**\n\nThe openapi spec must first be saved to the base of the linode-cli project:\n\n curl -o ./openapi.yaml https://www.linode.com/docs/api/openapi.yaml\n\nRun the following command to build the tests container:\n\n docker build -f Dockerfile-bats -t linode-cli-tests .\n\nRun the following command to run the test\n\n docker run -e TOKEN_1=$INSERT_YOUR_TOKEN_HERE -e TOKEN_2=$INSERT_YOUR_TOKEN_HERE --rm linode-cli-tests\n\nContributing\n------------\n\nThis CLI is generated based on the OpenAPI specification for Linode's API. As\nsuch, many changes are made directly to the spec.\n\nSpecification Extensions\n^^^^^^^^^^^^^^^^^^^^^^^^\n\nIn order to be more useful, the following `Specification Extensions`_ have been\nadded to Linode's OpenAPI spec:\n\n+-----------------------------+-------------+-------------------------------------------------------------------------------------------+\n|Attribute | Location | Purpose |\n+-----------------------------+-------------+-------------------------------------------------------------------------------------------+\n|x-linode-cli-action | method | The action name for operations under this path. If not present, operationId is used. |\n+-----------------------------+-------------+-------------------------------------------------------------------------------------------+\n|x-linode-cli-color \u00a0 | property | If present, defines key-value pairs of property value: color. Colors must be one of |\n| \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | \u00a0 \u00a0 \u00a0 \u00a0 | \"red\", \"green\", \"yellow\", \"white\", and \"black\". Must include a default. |\n+-----------------------------+-------------+-------------------------------------------------------------------------------------------+\n|x-linode-cli-command | path | The command name for operations under this path. If not present, \"default\" is used. |\n+-----------------------------+-------------+-------------------------------------------------------------------------------------------+\n|x-linode-cli-display | property | If truthy, displays this as a column in output. If a number, determines the ordering |\n| \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | | (left to right). |\n+-----------------------------+-------------+-------------------------------------------------------------------------------------------+\n|x-linode-cli-format | property | Overrides the \"format\" given in this property for the CLI only. Valid values are `file` |\n| | | and `json`. |\n+-----------------------------+-------------+-------------------------------------------------------------------------------------------+\n|x-linode-cli-skip | path | If present and truthy, this method will not be available in the CLI. |\n+-----------------------------+-------------+-------------------------------------------------------------------------------------------+\n+x-linode-cli-allowed-defaults| requestBody | Tells the CLI what configured defaults apply to this request. Value values are \"region\", |\n+ | | \"image\", and \"type\". |\n+-----------------------------+-------------+-------------------------------------------------------------------------------------------+\n\n.. _Specification Extensions: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.1.md#specificationExtensions\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://www.linode.com/docs/api/", "keywords": "", "license": "BSD 3-Clause License", "maintainer": "", "maintainer_email": "", "name": "linode-cli", "package_url": "https://pypi.org/project/linode-cli/", "platform": null, "project_url": "https://pypi.org/project/linode-cli/", "project_urls": { "Homepage": "https://www.linode.com/docs/api/" }, "release_url": "https://pypi.org/project/linode-cli/5.19.0/", "requires_dist": [ "PyYAML", "requests", "terminaltables", "future ; python_version <= \"3.0.0\"", "enum34 ; python_version<'3.4'" ], "requires_python": ">=2.7", "summary": "CLI for the Linode API", "version": "5.19.0", "yanked": false, "yanked_reason": null }, "last_serial": 13715537, "releases": { "1.0.0b0": [ { "comment_text": "", "digests": { "md5": "68cfb6272d50300e46a6fa30068ece9e", "sha256": "8323fd6c6b93c9330d8033702430fffe9fdae94f12b6af94de73b6818ebcb6c6" }, "downloads": -1, "filename": "linode-cli-1.0.0b0.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "68cfb6272d50300e46a6fa30068ece9e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 23954, "upload_time": "2017-06-06T13:49:55", "upload_time_iso_8601": "2017-06-06T13:49:55.355722Z", "url": "https://files.pythonhosted.org/packages/31/91/a5279bbbaa0f3179a11d337077e5f71aca6ca8b9f92dd1c0bc0fe60d6bb3/linode-cli-1.0.0b0.macosx-10.11-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d80481635b23cba28bcc6c78b3c24624", "sha256": "017c678fde9856a512af7a03994ca8e0c68972aa986451e053a3b6f9f019bafd" }, "downloads": -1, "filename": "linode_cli-1.0.0b0-py3-none-any.whl", "has_sig": false, "md5_digest": "d80481635b23cba28bcc6c78b3c24624", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 13714, "upload_time": "2017-06-06T13:45:23", "upload_time_iso_8601": "2017-06-06T13:45:23.964583Z", "url": "https://files.pythonhosted.org/packages/d7/63/3df8bf7b4171d2b47b5e374aed91ea25ba77a418a4372772267ca57f6fe0/linode_cli-1.0.0b0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.1b0": [ { "comment_text": "", "digests": { "md5": "a4f75cb20d3b68576e0cda1ab00923e3", "sha256": "95516bf586e485b3e388e360e7cd42df7d110f8e09eecda9b1bd7fd48e182a8f" }, "downloads": -1, "filename": "linode_cli-1.0.1b0-py3-none-any.whl", "has_sig": false, "md5_digest": "a4f75cb20d3b68576e0cda1ab00923e3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 15050, "upload_time": "2017-06-06T17:14:50", "upload_time_iso_8601": "2017-06-06T17:14:50.327434Z", "url": "https://files.pythonhosted.org/packages/90/a1/fc453e4c15bf29a403e4d7f308977928c535dfb9b9f74b4723eb0050a27d/linode_cli-1.0.1b0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.2b0": [ { "comment_text": "", "digests": { "md5": "1fd199618e3a0425f4e3fde308c1df5d", "sha256": "f560dc08a7803e9b6ccee8d581522501389c090e41c07c7ac1adcee261eba7f3" }, "downloads": -1, "filename": "linode_cli-1.0.2b0-py3-none-any.whl", "has_sig": false, "md5_digest": "1fd199618e3a0425f4e3fde308c1df5d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 16177, "upload_time": "2017-06-06T23:58:34", "upload_time_iso_8601": "2017-06-06T23:58:34.170350Z", "url": "https://files.pythonhosted.org/packages/49/e9/0779bb80211feb8c3c3b6ca9b13b58127bfa004fcb3b4ca5d0fcf3092192/linode_cli-1.0.2b0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.3b0": [ { "comment_text": "", "digests": { "md5": "c8f542c874c7ad081053fce92aaad447", "sha256": "3e3a30b3d6f2d289b57f085dba14697170ccc5c71a7f144e5fd8b9a8601061d4" }, "downloads": -1, "filename": "linode_cli-1.0.3b0-py3-none-any.whl", "has_sig": false, "md5_digest": "c8f542c874c7ad081053fce92aaad447", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 16396, "upload_time": "2017-06-08T11:01:56", "upload_time_iso_8601": "2017-06-08T11:01:56.094077Z", "url": "https://files.pythonhosted.org/packages/35/b7/24e0e90b740ef684fdfbb7414896c27f1dee1d5aa14f7ad1f8545ccb1ef4/linode_cli-1.0.3b0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.3b1": [ { "comment_text": "", "digests": { "md5": "5f2015b2600c33d5febbec1526105066", "sha256": "25715b7baf569c12d0e3e120f0363ee5680bfbfd5c4bf2fba468e5553b3d3c4e" }, "downloads": -1, "filename": "linode_cli-1.0.3b1-py3-none-any.whl", "has_sig": false, "md5_digest": "5f2015b2600c33d5febbec1526105066", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 17860, "upload_time": "2017-06-09T11:10:20", "upload_time_iso_8601": "2017-06-09T11:10:20.393744Z", "url": "https://files.pythonhosted.org/packages/67/05/12ba22f4b2ed90874f460021f7ea4f5b893de2f1d9db089aa78671a13c1d/linode_cli-1.0.3b1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.3b2": [ { "comment_text": "", "digests": { "md5": "b3ba6e86bf3afc6bbf4296b74b676d39", "sha256": "8e0bc00bacd4fca520c8ed16b86e8edb8f04426850e22b81220e18a20cce7e8a" }, "downloads": -1, "filename": "linode_cli-1.0.3b2-py3-none-any.whl", "has_sig": false, "md5_digest": "b3ba6e86bf3afc6bbf4296b74b676d39", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 18282, "upload_time": "2017-06-10T11:47:23", "upload_time_iso_8601": "2017-06-10T11:47:23.697971Z", "url": "https://files.pythonhosted.org/packages/6b/78/6c88749d45c37278f5cfc2baaf18e13f0ca81ee164670ccc502d2ad281a6/linode_cli-1.0.3b2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.3b3": [ { "comment_text": "", "digests": { "md5": "3ae86e84b865ce45b208fa95f622e999", "sha256": "214239114af9925acebe83a1f5b3f7cc948b93e50ec7a3af16706e7bd9cedfce" }, "downloads": -1, "filename": "linode_cli-1.0.3b3-py3-none-any.whl", "has_sig": false, "md5_digest": "3ae86e84b865ce45b208fa95f622e999", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 19800, "upload_time": "2017-06-11T11:17:12", "upload_time_iso_8601": "2017-06-11T11:17:12.444246Z", "url": "https://files.pythonhosted.org/packages/8f/f1/2cf67a6f5b6bf49a052cfee207b0d37051cfc5a1a64348e8e9926e127742/linode_cli-1.0.3b3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.3b4": [ { "comment_text": "", "digests": { "md5": "d5b39a6c5b82edcc7b32d28e54cb227e", "sha256": "0fbc9d7a6009f59caacf3c0dbb55c778c0e66dd6fe359a57a6433c709e6ddf7c" }, "downloads": -1, "filename": "linode_cli-1.0.3b4-py3-none-any.whl", "has_sig": false, "md5_digest": "d5b39a6c5b82edcc7b32d28e54cb227e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 21331, "upload_time": "2017-06-12T11:24:23", "upload_time_iso_8601": "2017-06-12T11:24:23.840107Z", "url": "https://files.pythonhosted.org/packages/f4/25/8a32fdd6c20ea668b8d8dbd5f0212caca05db52d3d326b9fdc28bb4f03bb/linode_cli-1.0.3b4-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.4b0": [ { "comment_text": "", "digests": { "md5": "f34f863285acb49720d08e007300b6cd", "sha256": "cfe94bf7a7448d164f40b2982ad1af3b8f55f2f7a2643b8e3d8ff894ac51caef" }, "downloads": -1, "filename": "linode_cli-1.0.4b0-py3-none-any.whl", "has_sig": false, "md5_digest": "f34f863285acb49720d08e007300b6cd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 22687, "upload_time": "2017-07-10T18:47:51", "upload_time_iso_8601": "2017-07-10T18:47:51.497645Z", "url": "https://files.pythonhosted.org/packages/dc/68/ca80790e430cae4c26f30b964c3ea295d4c40a2bd2091a3e6088227275c4/linode_cli-1.0.4b0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.4b1": [ { "comment_text": "", "digests": { "md5": "954e11adb60234eea0b81aab0152df04", "sha256": "e9609dda42195cf1d6d4392817358835b7954c91dc8b3ad3b009ec6362c64e81" }, "downloads": -1, "filename": "linode_cli-1.0.4b1-py3-none-any.whl", "has_sig": false, "md5_digest": "954e11adb60234eea0b81aab0152df04", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 22688, "upload_time": "2017-07-10T18:51:19", "upload_time_iso_8601": "2017-07-10T18:51:19.787741Z", "url": "https://files.pythonhosted.org/packages/ba/ab/4781ba81bfe2b5e729933f105fd718c8d2079c4c867675c99bcd07ec4aad/linode_cli-1.0.4b1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.5b0": [ { "comment_text": "", "digests": { "md5": "80ca451f8a298f3a4a4222a9968150e9", "sha256": "4a67b8624da450aede01de3c963db87472a7d15b0179af7ddbfa57b05ed4be9a" }, "downloads": -1, "filename": "linode_cli-1.0.5b0-py3-none-any.whl", "has_sig": false, "md5_digest": "80ca451f8a298f3a4a4222a9968150e9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 23623, "upload_time": "2017-08-07T01:26:04", "upload_time_iso_8601": "2017-08-07T01:26:04.279295Z", "url": "https://files.pythonhosted.org/packages/e8/30/c12b549708d28743c9ba48bfc9ca6b12a100b38ebc690c7644e413a620b8/linode_cli-1.0.5b0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.6b0": [ { "comment_text": "", "digests": { "md5": "e081608f0d2b6f6fb2f23fc0eaeff096", "sha256": "89622e2472aa78abcf3b0da103865acb42dc98b8f1df659a6a58c04cbb5cd200" }, "downloads": -1, "filename": "linode_cli-1.0.6b0-py3-none-any.whl", "has_sig": false, "md5_digest": "e081608f0d2b6f6fb2f23fc0eaeff096", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 23584, "upload_time": "2017-09-24T22:38:36", "upload_time_iso_8601": "2017-09-24T22:38:36.984359Z", "url": "https://files.pythonhosted.org/packages/26/fc/7a48c8d338e55cb485ec85a6e34190c4695a45ee8cfe1f9cfef8cbe8ec29/linode_cli-1.0.6b0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.7b0": [ { "comment_text": "", "digests": { "md5": "137dbc40a9c48fef05f1d1ee1dc392de", "sha256": "47762898555fe2a97959fc0307f75386e7d2a2483ccdfbc9d75ee2dc2c32a8a6" }, "downloads": -1, "filename": "linode_cli-1.0.7b0-py3-none-any.whl", "has_sig": false, "md5_digest": "137dbc40a9c48fef05f1d1ee1dc392de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 23567, "upload_time": "2017-10-07T00:35:26", "upload_time_iso_8601": "2017-10-07T00:35:26.027180Z", "url": "https://files.pythonhosted.org/packages/aa/02/77a24d5e02e820c47d09ea2c649cebae1a9fdd412412f6150e7066461127/linode_cli-1.0.7b0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.8b0": [ { "comment_text": "", "digests": { "md5": "16b707094cdaf295815a76a3bfe0be09", "sha256": "086744c03f75b2cf651f1d7d5c91a1a85c6ff27b1d4ec00ebb8946693cb9e24c" }, "downloads": -1, "filename": "linode_cli-1.0.8b0-py3-none-any.whl", "has_sig": false, "md5_digest": "16b707094cdaf295815a76a3bfe0be09", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 23694, "upload_time": "2018-01-26T18:21:38", "upload_time_iso_8601": "2018-01-26T18:21:38.225832Z", "url": "https://files.pythonhosted.org/packages/b2/49/052ab1c4ef7c1d5e850e8a88825331d2783224abda6bc62034f127f8b737/linode_cli-1.0.8b0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.0.9b0": [ { "comment_text": "", "digests": { "md5": "436154ff855cbd6676f0c2aa01b6861f", "sha256": "d825da1fbe6b92fe6ca1a4c9c9af39f51b6b0d9a830bba5ce7b568dca428e018" }, "downloads": -1, "filename": "linode_cli-1.0.9b0-py3-none-any.whl", "has_sig": false, "md5_digest": "436154ff855cbd6676f0c2aa01b6861f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 23691, "upload_time": "2018-03-06T19:59:36", "upload_time_iso_8601": "2018-03-06T19:59:36.331427Z", "url": "https://files.pythonhosted.org/packages/50/4d/50b37d8d7f283e15e9963b7da6aa4c684ff9aa03acc753d6d15df3b76063/linode_cli-1.0.9b0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "467e5ea684fbffd8db8aa40749b5ae77", "sha256": "927f09f06bc5df9e748fc3471a69b3d8eff85cb1a886805b9854b627aead3591" }, "downloads": -1, "filename": "linode_cli-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "467e5ea684fbffd8db8aa40749b5ae77", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 96096, "upload_time": "2018-05-11T17:48:11", "upload_time_iso_8601": "2018-05-11T17:48:11.625554Z", "url": "https://files.pythonhosted.org/packages/18/3f/4820d8353159394601a55f08d49073e9ba88b194c9ef15afaa5f38e1cce3/linode_cli-2.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "a040b44315b40e13bb8d6b8b2d36c145", "sha256": "6d1ae168956cdd18e7cd2c373bc8072a0e4260652aa9629017518cc6340319f3" }, "downloads": -1, "filename": "linode_cli-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a040b44315b40e13bb8d6b8b2d36c145", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 96544, "upload_time": "2018-06-13T12:50:12", "upload_time_iso_8601": "2018-06-13T12:50:12.004637Z", "url": "https://files.pythonhosted.org/packages/31/50/b9d7a044aa353e6e8fa31b9dcdeebdc1ea04b93f1ef12559722c6487b270/linode_cli-2.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.10": [ { "comment_text": "", "digests": { "md5": "53d093e7f10079149d35c4e1eeda1fee", "sha256": "01ad7e8877a92ca30b8aa4fd049fed052f2a1f68f4072a84f9127ff75530359a" }, "downloads": -1, "filename": "linode_cli-2.0.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53d093e7f10079149d35c4e1eeda1fee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 105965, "upload_time": "2018-10-24T19:08:04", "upload_time_iso_8601": "2018-10-24T19:08:04.423052Z", "url": "https://files.pythonhosted.org/packages/98/1d/27b3dda4f0a2237ea6d134b844db3ad58219ca163976b6b8898c12161ac3/linode_cli-2.0.10-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.11": [ { "comment_text": "", "digests": { "md5": "72c4ee15f73a56cd895db8bc97e376c8", "sha256": "d9d1457a01335f92c3c700c301b2140f941c0c4dfaab66703cf28865f92b7064" }, "downloads": -1, "filename": "linode_cli-2.0.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "72c4ee15f73a56cd895db8bc97e376c8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 106144, "upload_time": "2018-11-05T19:05:34", "upload_time_iso_8601": "2018-11-05T19:05:34.187257Z", "url": "https://files.pythonhosted.org/packages/17/7d/9040ef72f311571eff294e4b3051cb25fb3532ebbacba67fd67497c58272/linode_cli-2.0.11-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.12": [ { "comment_text": "", "digests": { "md5": "e3fe8af36f79a36505f01187f7a3d051", "sha256": "5d8e87bc0b2d88005945114d19c6b5545e9b605b3e4c7a4f09c3e31590d13a19" }, "downloads": -1, "filename": "linode_cli-2.0.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e3fe8af36f79a36505f01187f7a3d051", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 109733, "upload_time": "2018-11-20T12:34:40", "upload_time_iso_8601": "2018-11-20T12:34:40.668295Z", "url": "https://files.pythonhosted.org/packages/9d/0c/89318ca0bab0102d55b07b0b06bfa05ac8a7ad7abff95ee317e1d4b10ef2/linode_cli-2.0.12-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.13": [ { "comment_text": "", "digests": { "md5": "d6cc945e5e45543cd3e8fcfba639fb4a", "sha256": "ced1f985ee2940f95d37aae97bcdfac8619e5dd7897305e4dfbba3828943b094" }, "downloads": -1, "filename": "linode_cli-2.0.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d6cc945e5e45543cd3e8fcfba639fb4a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 107864, "upload_time": "2018-12-04T12:42:05", "upload_time_iso_8601": "2018-12-04T12:42:05.010575Z", "url": "https://files.pythonhosted.org/packages/2a/22/3dd725e1ffec26bd6a57911352b9db66e2fed519bd7fdb1e0195f9c5f9b6/linode_cli-2.0.13-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.14": [ { "comment_text": "", "digests": { "md5": "719eca3ed2dec3339c11ae5de33489b9", "sha256": "6afb8e1a3e166a5d72841c7a4579cb5af3040204da8894ac3a89dd95cb4bd10c" }, "downloads": -1, "filename": "linode_cli-2.0.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "719eca3ed2dec3339c11ae5de33489b9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 113401, "upload_time": "2018-12-08T02:15:58", "upload_time_iso_8601": "2018-12-08T02:15:58.786733Z", "url": "https://files.pythonhosted.org/packages/c4/8e/e9f861e2e932a3f348d465d813de07786f7a9b05e561e799b43ffa701ed9/linode_cli-2.0.14-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.15": [ { "comment_text": "", "digests": { "md5": "bcc661dd099ff8d39c20e34eecce68bc", "sha256": "d860cb27dbdf1da336c8e30986e0d0396ed51ea9464050f4f862526539734326" }, "downloads": -1, "filename": "linode_cli-2.0.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bcc661dd099ff8d39c20e34eecce68bc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 113429, "upload_time": "2018-12-08T15:45:40", "upload_time_iso_8601": "2018-12-08T15:45:40.771894Z", "url": "https://files.pythonhosted.org/packages/d1/e6/f95ef11487da326cf188ee7969df6411d920db1f6a340a47e070040d87bd/linode_cli-2.0.15-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.16": [ { "comment_text": "", "digests": { "md5": "869966f61bba733b59800c0ae82b5707", "sha256": "08209e9c8dee80542f37cb3824096150e18c5ed54b4e6f5b0da39cb1bc9cfc08" }, "downloads": -1, "filename": "linode_cli-2.0.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "869966f61bba733b59800c0ae82b5707", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 113542, "upload_time": "2018-12-10T01:16:42", "upload_time_iso_8601": "2018-12-10T01:16:42.132748Z", "url": "https://files.pythonhosted.org/packages/88/d9/4b0f12a7f10521738abbae061c5483b673479b3999f879ee8bdd362fd5c8/linode_cli-2.0.16-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.17": [ { "comment_text": "", "digests": { "md5": "f92b49f2924957ef885c3b06f64145f4", "sha256": "c4467120ec98bc2dad0ed0af7650575d5f7c8f6b6a4ab821027f3b51d5beb503" }, "downloads": -1, "filename": "linode_cli-2.0.17-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f92b49f2924957ef885c3b06f64145f4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 114103, "upload_time": "2018-12-10T12:30:56", "upload_time_iso_8601": "2018-12-10T12:30:56.484966Z", "url": "https://files.pythonhosted.org/packages/86/1d/25ea91f135d52d4ef09975f857668faeb23aab532952fef12ed249f3e994/linode_cli-2.0.17-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.18": [ { "comment_text": "", "digests": { "md5": "617235fa52839109dec6de90fff55781", "sha256": "4f3cfe8d48b80839d2e7e7dae9f1e429cc677d8cf30c5014eba68d3e6c4099a1" }, "downloads": -1, "filename": "linode_cli-2.0.18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "617235fa52839109dec6de90fff55781", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 114237, "upload_time": "2018-12-18T14:15:53", "upload_time_iso_8601": "2018-12-18T14:15:53.140908Z", "url": "https://files.pythonhosted.org/packages/78/79/7ac3f24086f91e89f0f687dab4cd21182180a32f86b9c0550195297c945f/linode_cli-2.0.18-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.19": [ { "comment_text": "", "digests": { "md5": "cd60057f65fc2d2e076e8f7706d91260", "sha256": "5798dc83f324407007c1dfca06bb0fdf1ef7d0f1be7179eb2343eb45ccb98e44" }, "downloads": -1, "filename": "linode_cli-2.0.19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd60057f65fc2d2e076e8f7706d91260", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 114954, "upload_time": "2019-01-22T17:02:05", "upload_time_iso_8601": "2019-01-22T17:02:05.348345Z", "url": "https://files.pythonhosted.org/packages/8f/8a/f32759cf7d4609b075ddadc1326f666c518c215772bbb0717ffb967aa16b/linode_cli-2.0.19-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "53460c87959d58994c930be2b20f2311", "sha256": "36449e9ab32b34d125f5d7917f4b87a800ab1187f2079658011d757132fc40ba" }, "downloads": -1, "filename": "linode_cli-2.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53460c87959d58994c930be2b20f2311", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 97714, "upload_time": "2018-06-22T18:30:36", "upload_time_iso_8601": "2018-06-22T18:30:36.559841Z", "url": "https://files.pythonhosted.org/packages/cb/f4/228a6ae960a9b16746df1b6ab1438f55ece5f828f095055b90e434b5164c/linode_cli-2.0.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.20": [ { "comment_text": "", "digests": { "md5": "21927a40d58b3ccd508e1d2ee53dbff3", "sha256": "c320cb310d2120c44e58897c65bfcbd9cfdba4d9f32414e4d760b59319c353da" }, "downloads": -1, "filename": "linode_cli-2.0.20-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "21927a40d58b3ccd508e1d2ee53dbff3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 115925, "upload_time": "2019-02-13T12:23:31", "upload_time_iso_8601": "2019-02-13T12:23:31.491299Z", "url": "https://files.pythonhosted.org/packages/b5/fc/0131490676385fbe29ca1db7bd474a52438abd56ead1a016c00ddd27fc6d/linode_cli-2.0.20-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.21": [ { "comment_text": "", "digests": { "md5": "acb920bc70efddba0e72f66942294755", "sha256": "2dd178beabcab781e318bcadeae397b6dc2610f1e412ad0dcc14f35b81147209" }, "downloads": -1, "filename": "linode_cli-2.0.21-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "acb920bc70efddba0e72f66942294755", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 115221, "upload_time": "2019-02-27T21:10:49", "upload_time_iso_8601": "2019-02-27T21:10:49.871917Z", "url": "https://files.pythonhosted.org/packages/e7/0d/0f96e3fc4a403d1c84d5b86e81f08cd09630f145a3ae177f0af0a2d3e209/linode_cli-2.0.21-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "678ae5929002ded5083236dde6706e83", "sha256": "c6dba7acb1d88ec4f72edc3c692e64964ce378e48ff6a6eef1ac320913d2b97e" }, "downloads": -1, "filename": "linode_cli-2.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "678ae5929002ded5083236dde6706e83", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 98239, "upload_time": "2018-06-24T00:44:24", "upload_time_iso_8601": "2018-06-24T00:44:24.459119Z", "url": "https://files.pythonhosted.org/packages/32/9c/96447a5c3dc841109323c0859a73b5f327580eb22250d5357531443e2ec3/linode_cli-2.0.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "91964030cd4a72eec095fc0698370919", "sha256": "7ff24960a0512caf694d70235fd8546b33b38f752958c6fc6383ead75b921a19" }, "downloads": -1, "filename": "linode_cli-2.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "91964030cd4a72eec095fc0698370919", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 98195, "upload_time": "2018-06-25T12:58:48", "upload_time_iso_8601": "2018-06-25T12:58:48.314691Z", "url": "https://files.pythonhosted.org/packages/58/95/7c960160c34d557c3a2c2686065d783bb7e409c647e8d24dd045709188da/linode_cli-2.0.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "167a3e50e11cff758ce725c0ad2cd781", "sha256": "08d383f42f51a2750f0261342114ab2cdeae7273b8501d6033b6dd6fe2707f48" }, "downloads": -1, "filename": "linode_cli-2.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "167a3e50e11cff758ce725c0ad2cd781", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 98247, "upload_time": "2018-06-28T13:34:27", "upload_time_iso_8601": "2018-06-28T13:34:27.053428Z", "url": "https://files.pythonhosted.org/packages/d6/ac/4004718a75f160826faca06d2135b2787f5f4ebf77cc51b1844cc7b62f72/linode_cli-2.0.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "0ffaefe2d2883658e0d8de53ed722c2c", "sha256": "16442b9425b4abe60ead19e88f259932a1a731faea3d7781f9a2414740138f91" }, "downloads": -1, "filename": "linode_cli-2.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0ffaefe2d2883658e0d8de53ed722c2c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 101796, "upload_time": "2018-07-13T18:24:28", "upload_time_iso_8601": "2018-07-13T18:24:28.517464Z", "url": "https://files.pythonhosted.org/packages/c9/0f/04e071018995e5b5671b78770b854dfee49de66aa6f8f09937fdca8e53c7/linode_cli-2.0.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "9beb700dda86631ae8492e54477ae56d", "sha256": "deae214e2ed9b6e3822739ae937da88eb9de4de6fe5d5d0ba5a4ab6f881180cd" }, "downloads": -1, "filename": "linode_cli-2.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9beb700dda86631ae8492e54477ae56d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 103681, "upload_time": "2018-09-11T17:17:47", "upload_time_iso_8601": "2018-09-11T17:17:47.824672Z", "url": "https://files.pythonhosted.org/packages/29/20/06e91c2730c3a07e58a499b952ddebd249435479b98ac3e4ba5bcacf3e7e/linode_cli-2.0.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "c156514f6d625372b390ba93057d53b1", "sha256": "b4a274d8241d7ea05311665cb0354b4602c7c0180e8691ced697c0cb30a6872e" }, "downloads": -1, "filename": "linode_cli-2.0.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c156514f6d625372b390ba93057d53b1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 104976, "upload_time": "2018-09-27T11:31:04", "upload_time_iso_8601": "2018-09-27T11:31:04.988574Z", "url": "https://files.pythonhosted.org/packages/f2/49/43474396052c73722befc387eead668cb20553daa8ad6624a134d472c88d/linode_cli-2.0.8-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.9": [ { "comment_text": "", "digests": { "md5": "8e4f31238703061640a3d949d849abb6", "sha256": "2fbdb0cbf42be8b80747cdc6cd719ca37ca0100786e1ae5e25706bb19a87fd1f" }, "downloads": -1, "filename": "linode_cli-2.0.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8e4f31238703061640a3d949d849abb6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 105623, "upload_time": "2018-10-12T17:35:32", "upload_time_iso_8601": "2018-10-12T17:35:32.132693Z", "url": "https://files.pythonhosted.org/packages/af/4d/a9dbec2463f76ee447e7794c955e7e65860076dc633f8d3fed9494d191fe/linode_cli-2.0.9-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "88690f8e1384120cdbef227bcb818966", "sha256": "92ea4c743c53d9b4901a1179855a31b0737892e064ded811914fc685e75bb77e" }, "downloads": -1, "filename": "linode_cli-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "88690f8e1384120cdbef227bcb818966", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 118557, "upload_time": "2019-03-12T18:40:22", "upload_time_iso_8601": "2019-03-12T18:40:22.732038Z", "url": "https://files.pythonhosted.org/packages/e7/d9/6c057b7bb33ee48ac394949f1f2aec382feb0a6f2ffe7640de472adb50ae/linode_cli-2.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "3f9146a0bdc72acb481a4e3729cfb548", "sha256": "8a86a42dee707759a03bf058f986cc9e51ac6f2dd0023da55b258d466d00bf6d" }, "downloads": -1, "filename": "linode_cli-2.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f9146a0bdc72acb481a4e3729cfb548", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 119375, "upload_time": "2019-03-13T12:44:06", "upload_time_iso_8601": "2019-03-13T12:44:06.942280Z", "url": "https://files.pythonhosted.org/packages/44/37/a59391ef51c791a4d7f75b7a2690e9d7b782087dfc9b4dbd08e915760fae/linode_cli-2.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "bbf9e4c8148fee8c74be4c4c6f422245", "sha256": "f852b6bfd56f3867a8ad037aa5c02d951aeba59cbb3998eb6838e22908a1bb05" }, "downloads": -1, "filename": "linode_cli-2.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bbf9e4c8148fee8c74be4c4c6f422245", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 119421, "upload_time": "2019-03-13T19:53:39", "upload_time_iso_8601": "2019-03-13T19:53:39.420673Z", "url": "https://files.pythonhosted.org/packages/37/f9/700494b6bf7e326eb16bf97eb63e6087c61dc425efbd6f1554190b4f4647/linode_cli-2.1.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "cd974cae8a9dcd342c559c5440f48529", "sha256": "590588a8181a9f6a0c11eb7b2d4cd17beb313847b46a9460cddb968d94b816d8" }, "downloads": -1, "filename": "linode_cli-2.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd974cae8a9dcd342c559c5440f48529", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 119419, "upload_time": "2019-03-26T18:42:17", "upload_time_iso_8601": "2019-03-26T18:42:17.989213Z", "url": "https://files.pythonhosted.org/packages/6c/8c/859e0e21049b5fff90a09a74656b3646a20ba174876de7efdd54c8655f66/linode_cli-2.1.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "b85c270123721c6404e94eec5fc14b41", "sha256": "8a033605c48e0d9ea3dd374a045533ef9cb36423cb19b5c524f185e7b253b81c" }, "downloads": -1, "filename": "linode_cli-2.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b85c270123721c6404e94eec5fc14b41", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 120452, "upload_time": "2019-03-26T18:46:31", "upload_time_iso_8601": "2019-03-26T18:46:31.678779Z", "url": "https://files.pythonhosted.org/packages/55/67/d37ce85eee4bd640fbafdddc3593e0f33d410e07f01cabbb35b6dbc59dd0/linode_cli-2.1.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.10.0": [ { "comment_text": "", "digests": { "md5": "546fc1c0d89156d6c2062a1323246f79", "sha256": "0f480117346cd87625fbd06c2aea3efa9879d1e72c94d1e5406c591fae2b11fc" }, "downloads": -1, "filename": "linode_cli-2.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "546fc1c0d89156d6c2062a1323246f79", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 135596, "upload_time": "2019-10-07T20:58:32", "upload_time_iso_8601": "2019-10-07T20:58:32.591598Z", "url": "https://files.pythonhosted.org/packages/8c/2a/0286654e48b8b334b0faf22ffccac9cd1b3a3c5dd38c47e5d14f88dc4e22/linode_cli-2.10.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.10.1": [ { "comment_text": "", "digests": { "md5": "7572f9eecaae43ec6910efdb7f5a142d", "sha256": "6a8163eec180d0e21929a84b0114810149263e9109152d9d98b4c1af1cb6027f" }, "downloads": -1, "filename": "linode_cli-2.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7572f9eecaae43ec6910efdb7f5a142d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 135596, "upload_time": "2019-10-15T14:22:42", "upload_time_iso_8601": "2019-10-15T14:22:42.179534Z", "url": "https://files.pythonhosted.org/packages/79/3c/d28b5f02562988e22fc4cee054e4cd4ddd4490730e9aab90bd121ecf8b56/linode_cli-2.10.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.10.2": [ { "comment_text": "", "digests": { "md5": "533b6173b1ebe3479b13ba06166c9955", "sha256": "4b239ad1822c517b1adbe78bfc33b927a364633848bc8ad8558c9484974a8727" }, "downloads": -1, "filename": "linode_cli-2.10.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "533b6173b1ebe3479b13ba06166c9955", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 142196, "upload_time": "2019-10-24T13:40:24", "upload_time_iso_8601": "2019-10-24T13:40:24.353305Z", "url": "https://files.pythonhosted.org/packages/72/e5/6011aa0be4fc49723a0f82bb1b00c5a23d2b138b4bcb0afb73797698471c/linode_cli-2.10.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.10.3": [ { "comment_text": "", "digests": { "md5": "6b466ea7f3b8951f86dc90f7875daaf4", "sha256": "db72e2cd3ed500c2160baa4da7119ccf2e69c648b62179b74446846f9136e992" }, "downloads": -1, "filename": "linode_cli-2.10.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6b466ea7f3b8951f86dc90f7875daaf4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 146136, "upload_time": "2019-11-18T20:12:27", "upload_time_iso_8601": "2019-11-18T20:12:27.361157Z", "url": "https://files.pythonhosted.org/packages/fb/bf/d6b5952e128600d509d2e500e84237b08e66cdf7e9095e46880e26346177/linode_cli-2.10.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.11.0": [ { "comment_text": "", "digests": { "md5": "a0c13fad63dc07ee6c8da9f23ccdf144", "sha256": "bd87b11df7d1d70b7152b1f1e726b0fcf4787534bcc4aef46ef46f34996d65de" }, "downloads": -1, "filename": "linode_cli-2.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a0c13fad63dc07ee6c8da9f23ccdf144", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 149595, "upload_time": "2019-12-04T15:57:10", "upload_time_iso_8601": "2019-12-04T15:57:10.498686Z", "url": "https://files.pythonhosted.org/packages/ad/f7/81fbbc0e8a5c09eefa47e883f64096ae945f79f1cfabb2bb0bf21dad4519/linode_cli-2.11.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.12.0": [ { "comment_text": "", "digests": { "md5": "8f623a4c617c96a2f62baf0d7e1366ab", "sha256": "d5a91327c7ce41ac63fe4436d6a2469f50ddada217d45724f1de16dc8e1e8191" }, "downloads": -1, "filename": "linode_cli-2.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8f623a4c617c96a2f62baf0d7e1366ab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 149895, "upload_time": "2019-12-17T20:12:11", "upload_time_iso_8601": "2019-12-17T20:12:11.473833Z", "url": "https://files.pythonhosted.org/packages/6f/e3/1d2681be13aec37880e2ae200a3caaf6c82ae6de6b138973989197310097/linode_cli-2.12.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.13.0": [ { "comment_text": "", "digests": { "md5": "2bf866909d0ce16d1836d4d7ae60805a", "sha256": "80df09b7dc0ec573de7bf69cfcaee3ed7e66a46f3d4449a7beb5312c7f94dd15" }, "downloads": -1, "filename": "linode_cli-2.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2bf866909d0ce16d1836d4d7ae60805a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 150359, "upload_time": "2020-02-05T16:22:36", "upload_time_iso_8601": "2020-02-05T16:22:36.728077Z", "url": "https://files.pythonhosted.org/packages/47/58/fe90ba9823e5204d1c23d599b71a2eda40bc1872814d92550072521d6f78/linode_cli-2.13.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.13.1": [ { "comment_text": "", "digests": { "md5": "d4b19b8a5096653481817c2c4d0af62c", "sha256": "f1dd0c31ad6724eefda14a15b7313298d648b7715cc1e90d191730a7369d5e6d" }, "downloads": -1, "filename": "linode_cli-2.13.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d4b19b8a5096653481817c2c4d0af62c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 150412, "upload_time": "2020-02-17T14:12:19", "upload_time_iso_8601": "2020-02-17T14:12:19.806074Z", "url": "https://files.pythonhosted.org/packages/10/9e/9596b2492f8ce743e887d4e2dfecc58946693a6e3c61c183d82becfa4131/linode_cli-2.13.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.14.1": [ { "comment_text": "", "digests": { "md5": "4d5e5032d3012c0be5bd20f3a6f2ac92", "sha256": "79acc89dfe78b234495b7fc067212d7391a5305aa7ba017330186581d96644f2" }, "downloads": -1, "filename": "linode_cli-2.14.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d5e5032d3012c0be5bd20f3a6f2ac92", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 153300, "upload_time": "2020-04-13T15:01:23", "upload_time_iso_8601": "2020-04-13T15:01:23.779541Z", "url": "https://files.pythonhosted.org/packages/e8/a6/b2b9324c8c2b5c9730cd04348104df5ba89f32268a49b7845705b2ecb0bb/linode_cli-2.14.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.15.0": [ { "comment_text": "", "digests": { "md5": "ee407750da961cc8b1c13a7848ab7773", "sha256": "f92dc81612f234fdc9ca09ca61047e1b78c94781d4d86d3f5bda2fa0cd8e4b2a" }, "downloads": -1, "filename": "linode_cli-2.15.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ee407750da961cc8b1c13a7848ab7773", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 146891, "upload_time": "2020-05-15T14:58:31", "upload_time_iso_8601": "2020-05-15T14:58:31.143592Z", "url": "https://files.pythonhosted.org/packages/62/32/d7b94574b5d389d8c4f1f263d925dddaf2957fb1df0810e7497d1beea260/linode_cli-2.15.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.16.0": [ { "comment_text": "", "digests": { "md5": "24c84ba60b47b541c5528c8d67fb7bdc", "sha256": "03e17a0f5b5415fdcf59b21a3041beb2e49392870f559230671fb4fe7c97f185" }, "downloads": -1, "filename": "linode_cli-2.16.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24c84ba60b47b541c5528c8d67fb7bdc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 148183, "upload_time": "2020-07-29T13:58:29", "upload_time_iso_8601": "2020-07-29T13:58:29.854782Z", "url": "https://files.pythonhosted.org/packages/c5/a2/b78bebe1f2fe64569f145cef7d466717803b79d5cb84bc692e1522877212/linode_cli-2.16.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "f85752ca05f9328e137f6a9c7b87a8cb", "sha256": "dd576874dfb67ec04ba63901c74df2a928ec56477d31354f0a3c52484142b0b5" }, "downloads": -1, "filename": "linode_cli-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f85752ca05f9328e137f6a9c7b87a8cb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 122012, "upload_time": "2019-04-05T18:19:14", "upload_time_iso_8601": "2019-04-05T18:19:14.710732Z", "url": "https://files.pythonhosted.org/packages/27/4e/064607bd30ce2797886abdfff25c4c9c01a1a55e793cc4c24d41444b1ddf/linode_cli-2.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "8ea8b31f8e3b5e1a0325cd05f2280e3d", "sha256": "62642196559c6315388c23d88e043beb1caf505ac7c6e52b9afa02f1a1fedea0" }, "downloads": -1, "filename": "linode_cli-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8ea8b31f8e3b5e1a0325cd05f2280e3d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 124530, "upload_time": "2019-05-02T12:49:28", "upload_time_iso_8601": "2019-05-02T12:49:28.492861Z", "url": "https://files.pythonhosted.org/packages/04/e5/464e691bb70063e74dda039004932460a211415d11f6b51f0601d908e841/linode_cli-2.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "df24beb1c0b15f201d7f6c42e5829a43", "sha256": "639e4e8c35cc6b3ef770150a8cab187ac2b3d07f11a2a73d474a82009bcf4293" }, "downloads": -1, "filename": "linode_cli-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "df24beb1c0b15f201d7f6c42e5829a43", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 123422, "upload_time": "2019-06-06T18:19:41", "upload_time_iso_8601": "2019-06-06T18:19:41.090792Z", "url": "https://files.pythonhosted.org/packages/94/16/7e11d032db199a306e9b2bb803ccdc944345933e3b74915f24d645530b0c/linode_cli-2.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "eb9dd13beedb23dc9df8ca41818ef8bc", "sha256": "5f26f19114bc6d1cd91c85f57e20719e06b965e37a020c0e138c61f75f1c7e0a" }, "downloads": -1, "filename": "linode_cli-2.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eb9dd13beedb23dc9df8ca41818ef8bc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 129084, "upload_time": "2019-06-21T19:32:46", "upload_time_iso_8601": "2019-06-21T19:32:46.778933Z", "url": "https://files.pythonhosted.org/packages/de/11/448a56aeba841adde567cb58d76d9f6a9bc2dedda0ba98b84f25f01186ec/linode_cli-2.5.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "8714de49d3cd3e4fcb1fea5cd56e3dd9", "sha256": "df3d9ec5517090d6f91b189c463804288bd8df35f4af9022532767098846b681" }, "downloads": -1, "filename": "linode_cli-2.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8714de49d3cd3e4fcb1fea5cd56e3dd9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 133199, "upload_time": "2019-06-25T16:47:00", "upload_time_iso_8601": "2019-06-25T16:47:00.663529Z", "url": "https://files.pythonhosted.org/packages/cc/01/52aac432126a0ff9b436cd2619b1a8cd373923c465cf4c62947e973e0af9/linode_cli-2.6.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "8583d8ce949ba0f231995479a44e3cc5", "sha256": "1eacea53848db271ad001e622fccdbf6d66a7b43b383444e327aa2ad00c839d6" }, "downloads": -1, "filename": "linode_cli-2.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8583d8ce949ba0f231995479a44e3cc5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 130559, "upload_time": "2019-08-13T16:53:49", "upload_time_iso_8601": "2019-08-13T16:53:49.852794Z", "url": "https://files.pythonhosted.org/packages/40/e7/e8fbc438d2a9d33dbb05a9cfccc66654a44930a92dab55441ee79ad6d76f/linode_cli-2.7.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "8e2e6e4286fa989c9502ed6982f6fd56", "sha256": "99138cd9e04999b512f83877e2f082468f52a407bb3fc7388858711516b3a8b5" }, "downloads": -1, "filename": "linode_cli-2.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8e2e6e4286fa989c9502ed6982f6fd56", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 133759, "upload_time": "2019-08-22T18:01:39", "upload_time_iso_8601": "2019-08-22T18:01:39.829483Z", "url": "https://files.pythonhosted.org/packages/9c/9e/d7e4d4dc5ec45a7aa79593a0ecca67082ae95be9e1dd170d64589096463e/linode_cli-2.7.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "4e00ced6ad21aab393684b140183544e", "sha256": "3b4357a424eabfe1a0d88aab9f54589d18ec5e471fe4f5781430cefc67c78b44" }, "downloads": -1, "filename": "linode_cli-2.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4e00ced6ad21aab393684b140183544e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 131006, "upload_time": "2019-09-10T12:54:39", "upload_time_iso_8601": "2019-09-10T12:54:39.999853Z", "url": "https://files.pythonhosted.org/packages/0e/28/ba8a52ba734771d492b85eaa3df52c126459809a63256389977b91d14629/linode_cli-2.8.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.8.1": [ { "comment_text": "", "digests": { "md5": "8f6b9c219abdb6cac7d19003193f499e", "sha256": "8ddb4a9e6fe2796e7829b704fc7bdb1286b74a6b3cf1ea71d07a5ac4221b3c1c" }, "downloads": -1, "filename": "linode_cli-2.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8f6b9c219abdb6cac7d19003193f499e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 137859, "upload_time": "2019-09-11T12:50:28", "upload_time_iso_8601": "2019-09-11T12:50:28.441404Z", "url": "https://files.pythonhosted.org/packages/aa/70/f685c1778b209aea3767be39f4051fe1c7a56a3d6375370282560f07d3b0/linode_cli-2.8.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.9.0": [ { "comment_text": "", "digests": { "md5": "eb5086e7ca4c693bfb370b4aa4469e03", "sha256": "c75ded2c10f196cf8afb1c5a0b7816ffe5179d4cedd1794a616a8df282de94f4" }, "downloads": -1, "filename": "linode_cli-2.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eb5086e7ca4c693bfb370b4aa4469e03", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 134649, "upload_time": "2019-09-24T13:48:21", "upload_time_iso_8601": "2019-09-24T13:48:21.462391Z", "url": "https://files.pythonhosted.org/packages/5b/ab/738f2ba792d5da383f87debb20f141fa8f6dd3be63ce416cf965ff1e22b5/linode_cli-2.9.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "3fb4dda5851c3394f149a7c660752fe2", "sha256": "51f4581c27bc0d590fe09c63679c499a75810c24da7e70df6660ebd722ff865a" }, "downloads": -1, "filename": "linode_cli-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3fb4dda5851c3394f149a7c660752fe2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 148749, "upload_time": "2020-08-04T20:23:26", "upload_time_iso_8601": "2020-08-04T20:23:26.490552Z", "url": "https://files.pythonhosted.org/packages/21/22/80dd43021a2eef317878dbe00987a178c3629596d29b30d4a85b79707486/linode_cli-3.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "3df374ff252671cdc8292e9ccafedf1a", "sha256": "ac9df8372cd92eac76a0eabe850063dd41f1f828fb6f91d774d3d2b759a70775" }, "downloads": -1, "filename": "linode_cli-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3df374ff252671cdc8292e9ccafedf1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 149132, "upload_time": "2020-08-13T14:56:02", "upload_time_iso_8601": "2020-08-13T14:56:02.192471Z", "url": "https://files.pythonhosted.org/packages/bc/d4/fdb2774a847e81c07ad11fb501bd9777fbd689c259861edc11d0b4e002ab/linode_cli-3.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "b01319dd4a8051c6d67025740b1de680", "sha256": "d175485c5ed9270d9613856b801e60655714de1051d09944e2d7144a90b91ba2" }, "downloads": -1, "filename": "linode_cli-3.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b01319dd4a8051c6d67025740b1de680", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 150815, "upload_time": "2020-09-09T17:43:12", "upload_time_iso_8601": "2020-09-09T17:43:12.138965Z", "url": "https://files.pythonhosted.org/packages/02/70/080c3d87a93314aa007bc2b752345ac6fbc36e31cfc59d937796c3a9c394/linode_cli-3.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "8ca9dd61d13eead47ef5cf74abc24d45", "sha256": "9761d9123c26e4e7c392076f87d5176c8fe5c0333e42b3aa82a39e2562ffe6b4" }, "downloads": -1, "filename": "linode_cli-3.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8ca9dd61d13eead47ef5cf74abc24d45", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 157546, "upload_time": "2020-09-22T12:23:40", "upload_time_iso_8601": "2020-09-22T12:23:40.156326Z", "url": "https://files.pythonhosted.org/packages/eb/8c/7e9bbcd4f4810c579ad0fc130ea6577341614d353476f9c22e7da3fd9843/linode_cli-3.1.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.1.3": [ { "comment_text": "", "digests": { "md5": "d09b99f2efa315efda66bf32949af172", "sha256": "be3645c303f07af3b5e7e1f1c85e34e241a0a3214b0be993965422bf21791f3c" }, "downloads": -1, "filename": "linode_cli-3.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d09b99f2efa315efda66bf32949af172", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 156567, "upload_time": "2020-10-01T19:04:24", "upload_time_iso_8601": "2020-10-01T19:04:24.994789Z", "url": "https://files.pythonhosted.org/packages/9a/0a/284d106739bc602855c92a2990b0f12029323620464c1fa4f391dcead870/linode_cli-3.1.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "f3c4d9d33bc4766b7c3a40ac727eee83", "sha256": "b199146c054d67699756113a95f4e0d02ae003633818053046f00ec7dafee8b8" }, "downloads": -1, "filename": "linode_cli-3.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3c4d9d33bc4766b7c3a40ac727eee83", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 156774, "upload_time": "2020-11-13T15:53:18", "upload_time_iso_8601": "2020-11-13T15:53:18.167020Z", "url": "https://files.pythonhosted.org/packages/60/6c/16f7b71ca981ba22d7338445284db45952f611ff70a5258b39476794732a/linode_cli-3.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "cf37deeb8e3fa151eff80dd6b937f4c7", "sha256": "b96c4982b02389957a040d122c2a645724bd29824de37615cbbf7f59539b552f" }, "downloads": -1, "filename": "linode_cli-3.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cf37deeb8e3fa151eff80dd6b937f4c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 160103, "upload_time": "2021-02-17T18:14:21", "upload_time_iso_8601": "2021-02-17T18:14:21.505212Z", "url": "https://files.pythonhosted.org/packages/29/54/27d07cf985adbba8506a81753933e4e47d561e53d0db5b92727ef2b78361/linode_cli-3.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.3.1": [ { "comment_text": "", "digests": { "md5": "2e6f8cbcbf4f64d2d3f8ac34bff3abce", "sha256": "c756fb31da81fcfb0fd8630f6a2dd80914a4a3420c5ce81d26022f6cfbf44c7d" }, "downloads": -1, "filename": "linode_cli-3.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2e6f8cbcbf4f64d2d3f8ac34bff3abce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 160355, "upload_time": "2021-02-22T17:10:54", "upload_time_iso_8601": "2021-02-22T17:10:54.144990Z", "url": "https://files.pythonhosted.org/packages/cb/24/3b188243736a0b780e3441ba1cf9c556c7192c8686db4c9aef6072e83240/linode_cli-3.3.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "d9e92de775a234565898620699bbd4c2", "sha256": "82a924f8350138b6669f2a3c5da888eedd3de8cd2f7f00e73ba36dc72de7c0c1" }, "downloads": -1, "filename": "linode_cli-4.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d9e92de775a234565898620699bbd4c2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 163965, "upload_time": "2021-03-03T13:19:32", "upload_time_iso_8601": "2021-03-03T13:19:32.286160Z", "url": "https://files.pythonhosted.org/packages/c2/3b/a870e20aa9bdba0753814ad0e207ad2038a7cc03e9ba8e1339dd50ee2e1c/linode_cli-4.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "4d18ffb9b7073c996c3fcb8438c84edf", "sha256": "d0563afa46328364dd942e5d11605df67f034dfa23ce91b7686e7bec3cf70a6e" }, "downloads": -1, "filename": "linode_cli-5.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d18ffb9b7073c996c3fcb8438c84edf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 163965, "upload_time": "2021-03-09T19:56:38", "upload_time_iso_8601": "2021-03-09T19:56:38.422829Z", "url": "https://files.pythonhosted.org/packages/b2/52/2776d331b213fa670518fa44542fd3606f83d3b64d3081a7a3a714bcdc73/linode_cli-5.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.0.1": [ { "comment_text": "", "digests": { "md5": "5737fc8c75dca302dd889773a3f1df89", "sha256": "a0e87b61bc063ce089a5f7e6b952ac4e8b746bfadd4b22edd365a736e587abcc" }, "downloads": -1, "filename": "linode_cli-5.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5737fc8c75dca302dd889773a3f1df89", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 167524, "upload_time": "2021-03-11T12:49:38", "upload_time_iso_8601": "2021-03-11T12:49:38.260832Z", "url": "https://files.pythonhosted.org/packages/64/c3/2fd7d71a7f8247f0bf3e58e275314ab07e06cd4e71649384addb9b39cdcb/linode_cli-5.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.1.0": [ { "comment_text": "", "digests": { "md5": "88159ba67057ee918ba0ad3285bade01", "sha256": "806663668927c3fb199960df2f1eb9f8b312f7c0dfc2493eee6e763d3dae7273" }, "downloads": -1, "filename": "linode_cli-5.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "88159ba67057ee918ba0ad3285bade01", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 171565, "upload_time": "2021-04-28T18:46:32", "upload_time_iso_8601": "2021-04-28T18:46:32.820127Z", "url": "https://files.pythonhosted.org/packages/e4/e1/6992743adaf3dd55588bae530529d0deca474207260dc53199f9f9120c8e/linode_cli-5.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.10.0": [ { "comment_text": "", "digests": { "md5": "23289bccf05d3956903b806736e032cf", "sha256": "3ba5678e0bf71850bfd0d53b434d695f0c49c465e2ee7ba850619594efb29cf7" }, "downloads": -1, "filename": "linode_cli-5.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "23289bccf05d3956903b806736e032cf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 176069, "upload_time": "2021-09-28T13:16:15", "upload_time_iso_8601": "2021-09-28T13:16:15.188342Z", "url": "https://files.pythonhosted.org/packages/e5/aa/d6f3fd79dbe23d5e6ed06d83016990f32cb971ad31686f4fed69815eb2a1/linode_cli-5.10.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.10.1": [ { "comment_text": "", "digests": { "md5": "b2c0e93f0b01301f09f698fcd08d15bc", "sha256": "ad7afcf046557cdd7bdc1baaf54058cd8abf6ae5a1a6b280a59019a1dd556cb0" }, "downloads": -1, "filename": "linode_cli-5.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2c0e93f0b01301f09f698fcd08d15bc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 175963, "upload_time": "2021-10-05T17:07:44", "upload_time_iso_8601": "2021-10-05T17:07:44.900133Z", "url": "https://files.pythonhosted.org/packages/96/f2/6340eafed38bc8956e5f5ef2159887f9c0b4b0ea87b35bd9ad63cbbb37c6/linode_cli-5.10.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.11.1": [ { "comment_text": "", "digests": { "md5": "0eee06ecd4cb82df7f98f528c1c0216c", "sha256": "9269de56b690cf47162b253aec0a7c86e20e02444252674f987c5622034e24f5" }, "downloads": -1, "filename": "linode_cli-5.11.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0eee06ecd4cb82df7f98f528c1c0216c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 175915, "upload_time": "2021-10-19T12:00:35", "upload_time_iso_8601": "2021-10-19T12:00:35.872888Z", "url": "https://files.pythonhosted.org/packages/a8/6d/69e00c30ebe792d94a257e8768f893f90142b0b54e5468fdd0d51936f44b/linode_cli-5.11.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.13.1": [ { "comment_text": "", "digests": { "md5": "95671d93bd0b21208557d0f807143369", "sha256": "0558d430bdd206bcb2c06f7578876e3915c396cb6d0f6284c180a22eaa700d07" }, "downloads": -1, "filename": "linode_cli-5.13.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "95671d93bd0b21208557d0f807143369", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 176864, "upload_time": "2021-11-17T16:20:00", "upload_time_iso_8601": "2021-11-17T16:20:00.368885Z", "url": "https://files.pythonhosted.org/packages/5a/91/4452a8bc63f1049abd269df5ef508c02f66f3e84398359869b1f0d72a0b0/linode_cli-5.13.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.13.2": [ { "comment_text": "", "digests": { "md5": "e3e9d18855f78a5b12c78cac1b25ef7d", "sha256": "316ec67f9b2ccb95a973104b3997babc8d6627a051e882480e63dcf747c2375a" }, "downloads": -1, "filename": "linode_cli-5.13.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e3e9d18855f78a5b12c78cac1b25ef7d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 180125, "upload_time": "2021-12-01T14:03:33", "upload_time_iso_8601": "2021-12-01T14:03:33.026122Z", "url": "https://files.pythonhosted.org/packages/b7/c4/553cba86cca6023e7ece5275c5e07ae28be7e792dc8a1e2d11a7b5f5eba8/linode_cli-5.13.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.15.0": [ { "comment_text": "", "digests": { "md5": "2c507afa155eb0d684025c1be7fde781", "sha256": "7ae8067d14f8aa737e3d249fa8d855a8d390e5f3d257ed28e4404c297ca078ba" }, "downloads": -1, "filename": "linode_cli-5.15.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2c507afa155eb0d684025c1be7fde781", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 180971, "upload_time": "2022-01-25T13:45:36", "upload_time_iso_8601": "2022-01-25T13:45:36.812633Z", "url": "https://files.pythonhosted.org/packages/5c/4a/2eaef115660a7f90aec9c5cc8321ed754c98347ca8ef02095f48794ca288/linode_cli-5.15.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.16.0": [ { "comment_text": "", "digests": { "md5": "c523ac82dfe792b60c7b87d785666e56", "sha256": "0b8962f71e1f14d75308119271491c915c1acebc5195851b8008e0d259b8e0fb" }, "downloads": -1, "filename": "linode_cli-5.16.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c523ac82dfe792b60c7b87d785666e56", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 181039, "upload_time": "2022-02-01T14:22:29", "upload_time_iso_8601": "2022-02-01T14:22:29.671321Z", "url": "https://files.pythonhosted.org/packages/6a/5e/ac65e2e0fad343a799a40784b6e8a479f6ab90ef7f161b6cff169fd0d0b9/linode_cli-5.16.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.17.1": [ { "comment_text": "", "digests": { "md5": "e781cac6b67e273b98bbd95fa15d8563", "sha256": "9cc5c13632abf76371d42a7d0251816a8b79f369d2c76381eeee9dba545cc669" }, "downloads": -1, "filename": "linode_cli-5.17.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e781cac6b67e273b98bbd95fa15d8563", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 181568, "upload_time": "2022-02-09T14:53:22", "upload_time_iso_8601": "2022-02-09T14:53:22.410002Z", "url": "https://files.pythonhosted.org/packages/2f/98/f0a6d7b41a84ef0763c41ba7a3d1a5e2d5334ba27f9ae3d57eaef9d5bffc/linode_cli-5.17.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.17.2": [ { "comment_text": "", "digests": { "md5": "a05483c58e9cf0247c1f4844d4efdb90", "sha256": "42ac2d112c1ab35aa0c5a37fdbe4d782b7100602b1a0410e11732457c9910403" }, "downloads": -1, "filename": "linode_cli-5.17.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a05483c58e9cf0247c1f4844d4efdb90", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 188595, "upload_time": "2022-03-09T17:12:46", "upload_time_iso_8601": "2022-03-09T17:12:46.496849Z", "url": "https://files.pythonhosted.org/packages/97/59/27b573597f7145ade5bce0075c36a6d2e172b361a8b77fa237246561e295/linode_cli-5.17.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.19.0": [ { "comment_text": "", "digests": { "md5": "18209facf519132eb59e96e614b24a30", "sha256": "a0fa489c3c6a02d289d5f6bcdcf7b8929e56f2726cf095ee5b6701c0a54a32d2" }, "downloads": -1, "filename": "linode_cli-5.19.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "18209facf519132eb59e96e614b24a30", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 191341, "upload_time": "2022-05-04T23:29:30", "upload_time_iso_8601": "2022-05-04T23:29:30.126208Z", "url": "https://files.pythonhosted.org/packages/4d/99/99c2259de09ebbf32391274cbd5fb2eee276940ecfcda4d1d54d3785555c/linode_cli-5.19.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.2.0": [ { "comment_text": "", "digests": { "md5": "6548430e82d9b2a1fc83b01ecb77096b", "sha256": "35bb32b6753cc7c8c33b21e7b3fc4022d82cb32a83eb1af336299c62d022d7c9" }, "downloads": -1, "filename": "linode_cli-5.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6548430e82d9b2a1fc83b01ecb77096b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 171457, "upload_time": "2021-05-03T19:55:11", "upload_time_iso_8601": "2021-05-03T19:55:11.275143Z", "url": "https://files.pythonhosted.org/packages/b0/d3/4c1a53b7146a9be2edf7c2f537efdd6dae9c9fbff452645118435900eea8/linode_cli-5.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.3.0": [ { "comment_text": "", "digests": { "md5": "3190bbe2e296e12bad40f0c604ceed03", "sha256": "fd562bdddf8bc356d7fee18aac5649b55192e85134f72a107aff06cec6cb0349" }, "downloads": -1, "filename": "linode_cli-5.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3190bbe2e296e12bad40f0c604ceed03", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 171684, "upload_time": "2021-05-12T20:17:35", "upload_time_iso_8601": "2021-05-12T20:17:35.274858Z", "url": "https://files.pythonhosted.org/packages/f1/e6/ff45a8919d9a4f26430be6e2db010a7275f5f3c9846a56a0bd537dd520fe/linode_cli-5.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.4.0": [ { "comment_text": "", "digests": { "md5": "16c5afd47bd157322d16e14426bb8034", "sha256": "dcf9d20116d8b20da52dd9e1b7a138b49ebf46967857c4bf6ab61c5f1beed1fd" }, "downloads": -1, "filename": "linode_cli-5.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "16c5afd47bd157322d16e14426bb8034", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 172175, "upload_time": "2021-05-18T12:52:02", "upload_time_iso_8601": "2021-05-18T12:52:02.928150Z", "url": "https://files.pythonhosted.org/packages/bd/bb/1ca900f325320fb037521139be69d0dab8336a1873e8c6c7810f566f1792/linode_cli-5.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.4.1": [ { "comment_text": "", "digests": { "md5": "8f47cd2a336b9d50a4040f32c92341b2", "sha256": "5fa5c73a006e8f37d990773257585bb47775cc3c64ede3d4b81e8717a140232f" }, "downloads": -1, "filename": "linode_cli-5.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8f47cd2a336b9d50a4040f32c92341b2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 172170, "upload_time": "2021-05-26T14:48:22", "upload_time_iso_8601": "2021-05-26T14:48:22.990745Z", "url": "https://files.pythonhosted.org/packages/4e/4b/3d9157ada87467275b1281a8d2a87a15593c910f705ebad8dbe3a472e20b/linode_cli-5.4.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.4.2": [ { "comment_text": "", "digests": { "md5": "6a09ef35b09d891d3b499bce67271119", "sha256": "790727b6ae6e658dacbd626680fd56ddd997594c052a68f0f3d743fffd662714" }, "downloads": -1, "filename": "linode_cli-5.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a09ef35b09d891d3b499bce67271119", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 172582, "upload_time": "2021-06-03T12:41:17", "upload_time_iso_8601": "2021-06-03T12:41:17.261229Z", "url": "https://files.pythonhosted.org/packages/df/fc/356aa7bc1a034c9b94fbfdcfbea1d3f8deb56417f448683f9c8000d885dc/linode_cli-5.4.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.4.3": [ { "comment_text": "", "digests": { "md5": "c9ad84d4e85ec4fab988c4130c1081e4", "sha256": "bd1376c32f231954a4b13669cdad59a03e68436d906e5a6ae42f54d946cf8366" }, "downloads": -1, "filename": "linode_cli-5.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c9ad84d4e85ec4fab988c4130c1081e4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 172581, "upload_time": "2021-06-15T18:12:53", "upload_time_iso_8601": "2021-06-15T18:12:53.976724Z", "url": "https://files.pythonhosted.org/packages/59/f5/25887a4ca2fd8d374b03804d5d39fa85d12680ccb48575a0fd1d47e105f1/linode_cli-5.4.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.5.0": [ { "comment_text": "", "digests": { "md5": "11c7adec78e921ea8771d4f68de4cf8d", "sha256": "6fe504d53017e06d08de91fa41a5dbecde0ea308489bf699603a87bbf9781067" }, "downloads": -1, "filename": "linode_cli-5.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "11c7adec78e921ea8771d4f68de4cf8d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 173493, "upload_time": "2021-06-29T17:01:36", "upload_time_iso_8601": "2021-06-29T17:01:36.923033Z", "url": "https://files.pythonhosted.org/packages/3c/9a/0f330ffeb91fd4c1e3914c2a1cd6341f402ce2f659c1dd8bb978dc3f4549/linode_cli-5.5.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.5.1": [ { "comment_text": "", "digests": { "md5": "040a55f733ff3e474672b5fcd3af48d1", "sha256": "bbb87691c70e51bc44aa3b09d96c8a93bd149aee0452db464ff65ebca556f5c7" }, "downloads": -1, "filename": "linode_cli-5.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "040a55f733ff3e474672b5fcd3af48d1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 171774, "upload_time": "2021-07-13T15:41:43", "upload_time_iso_8601": "2021-07-13T15:41:43.445668Z", "url": "https://files.pythonhosted.org/packages/f7/54/fd11b6e1785c552c45e5aef262eea562ce88dc65ce1ca4b9903878f4b5e2/linode_cli-5.5.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.5.2": [ { "comment_text": "", "digests": { "md5": "9d850d27ad1b2c5872077eda68e59a5f", "sha256": "988c0963158ca77ee849d1f50f93bbd0f1a7ff5327e57edf2f005487d3e7878a" }, "downloads": -1, "filename": "linode_cli-5.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9d850d27ad1b2c5872077eda68e59a5f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 171871, "upload_time": "2021-07-14T17:01:03", "upload_time_iso_8601": "2021-07-14T17:01:03.066089Z", "url": "https://files.pythonhosted.org/packages/94/ca/a5bc65cf707ef9db5fb1aa3fe0ac2ff6a3a01396a02c5e74c4701f4dce4d/linode_cli-5.5.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.5.3": [ { "comment_text": "", "digests": { "md5": "b2e4cd4414341c064357ba17998300df", "sha256": "b5885ff98db38f4a9fd3a897de6740ab470add383c8434b805364c6242a61c2d" }, "downloads": -1, "filename": "linode_cli-5.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2e4cd4414341c064357ba17998300df", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 172567, "upload_time": "2021-07-29T20:53:37", "upload_time_iso_8601": "2021-07-29T20:53:37.617686Z", "url": "https://files.pythonhosted.org/packages/8e/20/59fd97716429bc13c8553dbcd9c69acd099ebb6f22a60cb15639eced5ccc/linode_cli-5.5.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.8.1": [ { "comment_text": "", "digests": { "md5": "a9625b7dec028ad139483a50903b3aad", "sha256": "b84f90c680308b343673a190729ae16a5b92b3ff082b113b57b3244973530c79" }, "downloads": -1, "filename": "linode_cli-5.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a9625b7dec028ad139483a50903b3aad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 175431, "upload_time": "2021-08-25T12:20:11", "upload_time_iso_8601": "2021-08-25T12:20:11.773160Z", "url": "https://files.pythonhosted.org/packages/e4/ef/3ce10bf62e4f0a8764ea1868e1487efee3c49864fdffcc9687f6ddc31d6f/linode_cli-5.8.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.8.2": [ { "comment_text": "", "digests": { "md5": "38ac77120f780b95eb8faa7eabd245f9", "sha256": "599a5d7ef26403b8502d5aa65a4e08e2032fb339e0fcca6d41ef5bd7cb0b931f" }, "downloads": -1, "filename": "linode_cli-5.8.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "38ac77120f780b95eb8faa7eabd245f9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 175436, "upload_time": "2021-09-02T15:47:38", "upload_time_iso_8601": "2021-09-02T15:47:38.566983Z", "url": "https://files.pythonhosted.org/packages/aa/06/047082bf718e9126b991742f9dc566955e90577384e3402d0e9aba424534/linode_cli-5.8.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.9.0": [ { "comment_text": "", "digests": { "md5": "912ab34fda6414201f5e5bf8af5b10b4", "sha256": "ca1eb96adfdd26950e119d6e5304c054b2bfa793e6a79acc2fc1f33326dc9164" }, "downloads": -1, "filename": "linode_cli-5.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "912ab34fda6414201f5e5bf8af5b10b4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 176216, "upload_time": "2021-09-08T17:17:49", "upload_time_iso_8601": "2021-09-08T17:17:49.014790Z", "url": "https://files.pythonhosted.org/packages/44/f8/2ca8314eee932df8081f2b97fa6ca36798b2eb3f222b93cbb47bf9749c12/linode_cli-5.9.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.9.1": [ { "comment_text": "", "digests": { "md5": "f14c540e27dbaea4b8b1542ac7aa40eb", "sha256": "a5603ef3a40036c9f1b7cc570cb143e55066327099df87ff1ff28a57a5c0f552" }, "downloads": -1, "filename": "linode_cli-5.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f14c540e27dbaea4b8b1542ac7aa40eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 175543, "upload_time": "2021-09-20T20:53:19", "upload_time_iso_8601": "2021-09-20T20:53:19.617378Z", "url": "https://files.pythonhosted.org/packages/40/b5/a0bf4e113c8105221b5eedc38c8c3ab189866517023014ef5c2e08072105/linode_cli-5.9.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "18209facf519132eb59e96e614b24a30", "sha256": "a0fa489c3c6a02d289d5f6bcdcf7b8929e56f2726cf095ee5b6701c0a54a32d2" }, "downloads": -1, "filename": "linode_cli-5.19.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "18209facf519132eb59e96e614b24a30", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 191341, "upload_time": "2022-05-04T23:29:30", "upload_time_iso_8601": "2022-05-04T23:29:30.126208Z", "url": "https://files.pythonhosted.org/packages/4d/99/99c2259de09ebbf32391274cbd5fb2eee276940ecfcda4d1d54d3785555c/linode_cli-5.19.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }