{ "info": { "author": "Avik Partners, LLC", "author_email": "support@grokstream.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 2", "Topic :: Utilities" ], "description": "Grok Command Line Interface\n===========================\n\nThis repository contains the Grok Command line interface (CLI). `grokcli` allows you to easily interact with a Grok server through the command line including creating instances, etc.\n\nIn addition you can use `grokcli` to integrate with third party applications. Included in `grokcli` is an integration with Datadog (see [Grok Integration With Datadog](docs/Grok-Integration-with-DataDog.pdf) for full details). See more details by running `python -m grokcli.datadog --help`.\n\nInstallation\n------------\n\nRequires: Python (2.6 or greater)\n\n- pip (recommended)\n\n `pip install grokcli`\n\n- easy_install\n\n `easy_install grokcli`\n\n- setup.py\n\n `python setup.py install`\n\nUsage\n-----\n\nGrok CLI tools provides a single, high-level `grok` command, from which\na number of sub-commands can be invoked:\n\n grok [command] [options]\n\nEach command takes `GROK_SERVER_URL` and `GROK_API_KEY` as the first two arguments after the command name. However, if you set those two environment variables, you can omit those arguments from the commands.\n\n- `grok credentials`\n\n Use the `grok credentials` sub-command to add your AWS credentials to a\n running Grok server configuration:\n\n grok credentials GROK_SERVER_URL [options]\n\n The `GROK_SERVER_URL` positional argument is required and must be a url to a\n running Grok server. For example: https://ec2-AA-BB-CC-DD.us-west-2.compute.amazonaws.com\n\n You can specify your credentials in one of three ways:\n\n - Specify `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` CLI options.\n\n ```\n grok credentials GROK_SERVER_URL --AWS_ACCESS_KEY_ID=... --AWS_SECRET_ACCESS_KEY=...\n ```\n\n - Read AWS credentials from a specific file using the `-d`, or `--data` CLI\n options.\n\n ```\n grok credentials GROK_SERVER_URL -d PATH_TO_FILE\n grok credentials GROK_SERVER_URL --data=PATH_TO_FILE\n ```\n\n You can read from stdin using `-`:\n\n ```\n grok credentials GROK_SERVER_URL -d - < PATH_TO_FILE\n grok credentials GROK_SERVER_URL --data=- < PATH_TO_FILE\n ```\n\n The credentials file should be formatted according to this template:\n\n ```\n AWS_ACCESS_KEY_ID=Your AWS access key ID here\n AWS_SECRET_ACCESS_KEY=Your AWS secret access key here\n ```\n\n - Use existing boto configuration.\n\n ```\n grok credentials GROK_SERVER_URL --use-boto\n ```\n\n- `grok export`\n\n Export Grok model definitions to a file in JSON or YAML format.\n\n grok export [GROK_SERVER_URL GROK_API_KEY] [options]\n\n The `GROK_SERVER_URL` positional argument is required and must be a url to a\n running Grok server. For example: https://ec2-AA-BB-CC-DD.us-west-2.compute.amazonaws.com\n\n The `GROK_API_KEY` positional argument is also required, and can be retrieved\n from the web interface of a running Grok server.\n\n By default, `grok export` prints output to stdout, which can be directed to a\n file:\n\n grok export [GROK_SERVER_URL GROK_API_KEY] > file.json\n\n However, you can optionally specify a file using the `-o` or `--output` CLI\n option:\n\n grok export [GROK_SERVER_URL GROK_API_KEY] -o file.json\n grok export [GROK_SERVER_URL GROK_API_KEY] --output=file.json\n\n Use the `-y` or `--yaml` CLI flag to save output in YAML format\n\n grok export [GROK_SERVER_URL GROK_API_KEY] -y\n grok export [GROK_SERVER_URL GROK_API_KEY] --yaml\n\n- `grok import`\n\n Import Grok model definitions into a Grok server from a local file.\n\n grok import [GROK_SERVER_URL GROK_API_KEY] [FILE] [options]\n\n The `GROK_SERVER_URL` positional argument is required and must be a url to a\n running Grok server. For example: https://ec2-AA-BB-CC-DD.us-west-2.compute.amazonaws.com\n\n The `GROK_API_KEY` positional argument is also required, and can be retrieved\n from the web interface of a running Grok server. The API Key is synonymous with the mobile\n password.\n\n The `FILE` positional argument is optional, however if it is not specified,\n `grok import` will assume `STDIN` if `-d` or `--data` is not specified. The\n following are equivalent:\n\n grok import [GROK_SERVER_URL GROK_API_KEY] file.json\n grok import [GROK_SERVER_URL GROK_API_KEY] < file.json\n grok import [GROK_SERVER_URL GROK_API_KEY] -d file.json\n grok import [GROK_SERVER_URL GROK_API_KEY] --data=file.json\n\n `grok import` supports files in YAML format, if pyyaml is installed and\n available on the system.\n\n- `grok (DELETE|GET|POST)`\n\n Included in the Grok CLI tool is a lower-level direct API which translates\n CLI options to direct HTTP calls into the Grok web service. For example, to\n get all available cloudwatch metrics:\n\n grok GET GROK_SERVER_URL/_metrics/cloudwatch GROK_API_KEY\n\n For `grok POST` and `grok DELETE`, where request data may be required, such\n data can be specified either via the `-d`, or `--data` CLI option, or\n supplied via STDIN:\n\n grok POST GROK_SERVER_URL/_models GROK_API_KEY < model-definition.json\n grok POST GROK_SERVER_URL/_models GROK_API_KEY -d model-definition.json\n grok POST GROK_SERVER_URL/_models GROK_API_KEY --data model-definition.json\n\n- `grok metrics`\n\n Manage monitored metrics.\n\n grok metrics (list|unmonitor) [GROK_SERVER_URL GROK_API_KEY] [options]\n\n To get a list of monitored metrics:\n\n grok metrics [GROK_SERVER_URL GROK_API_KEY]\n\n Limiting to monitored metrics for a specific AWS instance:\n\n grok metrics list [GROK_SERVER_URL GROK_API_KEY] --instance=INSTANCE_ID --region=REGION --namespace=NAMESPACE\n\n To unmonitor a metric:\n\n grok metrics unmonitor https://localhost CmHnD --id=METRIC_ID\n\n- `grok instances`\n\n Manage monitored instances.\n\n grok instances (list|unmonitor) [GROK_SERVER_URL GROK_API_KEY] [options]\n\n To get a list of all monitored instances:\n\n grok instances list [GROK_SERVER_URL GROK_API_KEY]\n\n To unmonitor an instance:\n\n grok instances unmonitor [GROK_SERVER_URL GROK_API_KEY] --id=INSTANCE_ID\n\n- `grok cloudwatch`\n\n Manage CloudWatch metrics.\n\n grok cloudwatch (metrics|instances) (list|monitor|unmonitor) [GROK_SERVER_URL GROK_API_KEY] [options]\n\n To list available cloudwatch metrics:\n\n grok cloudwatch metrics list [GROK_SERVER_URL GROK_API_KEY]\n\n To filter list of available cloudwatch metrics by instance id:\n\n grok cloudwatch metrics list [GROK_SERVER_URL GROK_API_KEY] --instance=INSTANCE_ID\n\n To monitor a metric (example):\n\n grok cloudwatch metrics monitor [GROK_SERVER_URL GROK_API_KEY] \\\n --metric=CPUUtilization \\\n --namespace=AWS/EC2 \\\n --region=us-west-2 \\\n --dimensions InstanceId i-abc123\n\n To monitor an instance (example):\n\n grok cloudwatch instances monitor [GROK_SERVER_URL GROK_API_KEY] \\\n --namespace=AWS/EC2 \\\n --region=us-west-2 \\\n --instance=i-abc123\n\n To unmonitor a metric (example):\n\n grok cloudwatch metrics unmonitor [GROK_SERVER_URL GROK_API_KEY] \\\n --metric=CPUUtilization \\\n --namespace=AWS/EC2 \\\n --region=us-west-2 \\\n --dimensions InstanceId i-abc123\n\n To unmonitor an instance (example):\n\n grok cloudwatch instances unmonitor [GROK_SERVER_URL GROK_API_KEY] \\\n --namespace=AWS/EC2 \\\n --region=us-west-2 \\\n --instance=i-abc123\n\n- `grok custom`\n\n Manage custom metrics.\n\n To list available custom metrics:\n\n grok custom metrics list [GROK_SERVER_URL GROK_API_KEY]\n\n To monitor a custom metric:\n\n grok custom metrics monitor [GROK_SERVER_URL GROK_API_KEY] --id=METRIC_ID\n\n To unmonitor a custom metric:\n\n grok custom metrics unmonitor [GROK_SERVER_URL GROK_API_KEY] --name=METRIC_NAME\n\n- `grok autostacks`\n\n Manage autostacks.\n\n To create an autostack:\n\n grok autostacks stacks create [GROK_SERVER_URL GROK_API_KEY] --name=NAME --region=REGION --filters='{\"tag:FILTER_NAME\": [\"FILTER_VALUE\"]}'\n\n You can use any AWS tag for FILTER_NAME. The FILTER_VALUE is an AWS-specific\n wildcard, not a full-fledged regular expression. * matches any number of characters\n and ? matches any single character. The filter name and value are both\n case-sensitive.\n\n For example, \"jenkins-*\" and \"jenkins-??????\" both match \"jenkins-master\".\n\n You can use any AWS tag for the first component of a filter, though for\n optimal performance we recommend that the first tag/value pair specified be\n the one that eliminates the most instances. Because AWS only supports OR\n operations at this time, we have to implement the AND (intersection) operation\n locally. Our implementation sends the first tag/value to AWS, gets all the\n matching instances, and then filters them against the remaining tag/value\n filters locally.\n\n This does not create any metrics for the new autostack. You must create metrics\n for the new autostack with grok autostacks metrics add (see below)\n\n To preview an autostack:\n\n grok autostacks stacks create [GROK_SERVER_URL GROK_API_KEY] --preview --region=REGION --filters='{\"tag:FILTER_NAME\": [\"FILTER_VALUE\"]}'\n\n To list AutoStacks:\n\n grok autostacks stacks list [GROK_SERVER_URL GROK_API_KEY]\n\n To delete an AutoStack:\n\n grok autostacks stacks delete [GROK_SERVER_URL GROK_API_KEY] --name=STACK_NAME --region=REGION\n\n or:\n\n grok autostacks stacks delete [GROK_SERVER_URL GROK_API_KEY] --id=STACK_ID\n\n To add metric type(s) monitored by an AutoStack:\n\n grok autostacks metrics add [GROK_SERVER_URL GROK_API_KEY] --name=STACK_NAME --region=REGION --metric_namespace=METRIC_NAMESPACE --metric_name=METRIC_NAME\n\n or:\n\n grok autostacks metrics add [GROK_SERVER_URL GROK_API_KEY] --id=STACK_ID --metric_namespace=METRIC_NAMESPACE --metric_name=METRIC_NAME\n\n To list metric type(s) monitored by an AutoStack:\n\n grok autostacks metrics list [GROK_SERVER_URL GROK_API_KEY] --name=STACK_NAME --region=REGION\n\n or:\n\n grok autostacks metrics list [GROK_SERVER_URL GROK_API_KEY] --id=STACK_ID\n\n To remove metric type(s) monitored by an AutoStack:\n\n grok autostacks metrics remove [GROK_SERVER_URL GROK_API_KEY] --name=STACK_NAME --region=REGION --metric_id=METRIC_ID\n\n or:\n\n grok autostacks metrics remove [GROK_SERVER_URL GROK_API_KEY] --id=STACK_ID --metric_id=METRIC_ID\n\n To list EC2 Instances associated with an AutoStack(s):\n\n grok autostacks instances list [GROK_SERVER_URL GROK_API_KEY] --name=STACK_NAME --region=REGION\n\n or:\n\n grok autostacks instances list [GROK_SERVER_URL GROK_API_KEY] --id=STACK_ID\n\nNote to developers\n------------------\n\nTo add a command, create a python module in\n[grokcli/commands/](grokcli/commands) with a `handle()` function which accepts\ntwo arguments: `options`, and `args`. Register the command by importing the\nmodule in [grokcli/commands/\\_\\_init\\_\\_.py](grokcli/commands/__init__.py) and\nadding it to `__all__`.\n\n", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/grokstream/grok-cli", "keywords": "grok,grokstream,anomaly detection,monitoring", "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "grokcli", "package_url": "https://pypi.org/project/grokcli/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/grokcli/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/grokstream/grok-cli" }, "release_url": "https://pypi.org/project/grokcli/2.7.1/", "requires_dist": null, "requires_python": null, "summary": "Grok Command Line Interface", "version": "2.7.1" }, "last_serial": 2439131, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "611f9c75031b827ed34c74a67ec758a5", "sha256": "b71e1c5ceca6cf4e4b91b49db36f66afbded0f58aaacd7f4a48f111d33c8be32" }, "downloads": -1, "filename": "grokcli-1.0-py2.7.egg", "has_sig": false, "md5_digest": "611f9c75031b827ed34c74a67ec758a5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 49109, "upload_time": "2014-03-25T03:24:28", "url": "https://files.pythonhosted.org/packages/4b/6d/9016f54b69881c753d82b2079385647ef76eb0582920bdba0cd3b9c38d09/grokcli-1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "7678e35d2edb85863a527e4eb1f9ef37", "sha256": "15f5dfe44ba35f429758af1fb54b605e07e50f59aa4d8393a006f9234c4c980a" }, "downloads": -1, "filename": "grokcli-1.0-py27-none-any.whl", "has_sig": false, "md5_digest": "7678e35d2edb85863a527e4eb1f9ef37", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 25437, "upload_time": "2014-03-25T03:24:36", "url": "https://files.pythonhosted.org/packages/60/98/0f6fcec175315e92900093aa6b8f2d0ccc128972ae8628d5c2ad4be4a6f1/grokcli-1.0-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1084193cc5e04e32451a52e4d9a1a073", "sha256": "9d7697a8a7eb07e50c7a648d60cdcba0ba0105782fdbb31eab0487204f5b208d" }, "downloads": -1, "filename": "grokcli-1.0.tar.gz", "has_sig": false, "md5_digest": "1084193cc5e04e32451a52e4d9a1a073", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15020, "upload_time": "2014-03-25T03:24:12", "url": "https://files.pythonhosted.org/packages/3e/85/32f761ea0233cdabe332db2d4d58889125647e694999e649d6247e0c37b9/grokcli-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "dfe4b38430f1852255929445ecde2da9", "sha256": "edc244cfc6f341056c6190f8ad9b6853c6b7901e34f0b9809e7f85af4e53440d" }, "downloads": -1, "filename": "grokcli-1.1-py2.7.egg", "has_sig": false, "md5_digest": "dfe4b38430f1852255929445ecde2da9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 26057, "upload_time": "2014-04-22T18:34:40", "url": "https://files.pythonhosted.org/packages/73/a6/4183faf27d7047ee98af7fbd02ae8b4074a3d8af00e6f3b2fdce3aae6aaa/grokcli-1.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "93479d3d3f23e8ae71556dc83f728bea", "sha256": "b9c56b7e8b499c2eaeff512b2f7a5bf759660d21551624b040e478086c8393d2" }, "downloads": -1, "filename": "grokcli-1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "93479d3d3f23e8ae71556dc83f728bea", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 27756, "upload_time": "2014-04-22T18:34:35", "url": "https://files.pythonhosted.org/packages/8f/66/e5e52cb82dbdde8a506669bdb7f83087124ea03725237e65bdf7662abb25/grokcli-1.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "718d1af42370249e7d3d5ece07dc3af7", "sha256": "ab11cecc1fe5cce0341df2634c44eb3fa9fe39a45d1ee781b47cf0a7693def4a" }, "downloads": -1, "filename": "grokcli-1.1.tar.gz", "has_sig": false, "md5_digest": "718d1af42370249e7d3d5ece07dc3af7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17283, "upload_time": "2014-04-22T18:34:31", "url": "https://files.pythonhosted.org/packages/1d/90/83c7e3c621bd20ec627715a22b99f0d6a96771193166206336706c2f3964/grokcli-1.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "3fa028864ced80e8030c9215414a75b4", "sha256": "3788686c953a7366c1162e59a0e84d297a38b6384e7e67b975deeeda2ea4d2d1" }, "downloads": -1, "filename": "grokcli-1.1.1-py2.7.egg", "has_sig": false, "md5_digest": "3fa028864ced80e8030c9215414a75b4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 26059, "upload_time": "2014-04-25T18:25:04", "url": "https://files.pythonhosted.org/packages/2e/ad/784558f3b19791509e8941adc0e4fef6630abf80e1bdffd60d069fcb34a7/grokcli-1.1.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "88f3d86b15a30cbe2c9fba9990363a41", "sha256": "bb443d76a390c1799117b0af2cd6018b359c2a957fa569ccd2e9dded261bec33" }, "downloads": -1, "filename": "grokcli-1.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "88f3d86b15a30cbe2c9fba9990363a41", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 27791, "upload_time": "2014-04-25T18:25:02", "url": "https://files.pythonhosted.org/packages/09/cf/91777bda20295f1e83e9f5565b760408999a7efea428e76113e74419ce5d/grokcli-1.1.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b5f49976025d8736373d3ccdfd676b09", "sha256": "a537a8f05d7454459691dec080680d97e4020409fc11cdd815f5d2dd3b2dd4fe" }, "downloads": -1, "filename": "grokcli-1.1.1.tar.gz", "has_sig": false, "md5_digest": "b5f49976025d8736373d3ccdfd676b09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17456, "upload_time": "2014-04-25T18:24:59", "url": "https://files.pythonhosted.org/packages/73/2c/f82b15be5614e919699481bb44f743e92ad13bf62c4ac65f2ef2b3518d8e/grokcli-1.1.1.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "88a9cfc4d2ccad4c17535c896a7e7848", "sha256": "e73067987679ecec185b6491e8fae7eb7e05391b2a94b34b550e46798da885cb" }, "downloads": -1, "filename": "grokcli-2.0.0.tar.gz", "has_sig": false, "md5_digest": "88a9cfc4d2ccad4c17535c896a7e7848", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29508, "upload_time": "2015-11-26T04:20:49", "url": "https://files.pythonhosted.org/packages/6c/c2/9e84ac3630b0c733f1d592f4f06e04f2f2347df8e103c9d100084385e6da/grokcli-2.0.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "5019f26feff8d57787d557119f6930af", "sha256": "f060b6e7dace9253c5e20f17dfbc1d65055cdcafa5308f77e09c991db63025f6" }, "downloads": -1, "filename": "grokcli-2.1.0.zip", "has_sig": false, "md5_digest": "5019f26feff8d57787d557119f6930af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50276, "upload_time": "2016-01-25T05:48:20", "url": "https://files.pythonhosted.org/packages/1f/4b/ee8b217ed11eecb072e9cccddadd6769a086225ce8d4b1ca5ba833e9c6d0/grokcli-2.1.0.zip" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "82559de7adc723ec3dfd8439018b4976", "sha256": "9a370ed30075b16597e2f66081e9e29fefb160268241907bf5670d0ccec2f0f7" }, "downloads": -1, "filename": "grokcli-2.2.0.tar.gz", "has_sig": false, "md5_digest": "82559de7adc723ec3dfd8439018b4976", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30656, "upload_time": "2016-02-08T06:18:14", "url": "https://files.pythonhosted.org/packages/13/95/78ed5b36393b374af3da75c9bae058e2e02ad79806307c16c2e3c1791348/grokcli-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "8ab62d846df22f535a51c414f3808948", "sha256": "c2017cd1d5bb7504a98b705be02c8d924f44eaad1be42974e3736eb90968e6a0" }, "downloads": -1, "filename": "grokcli-2.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "8ab62d846df22f535a51c414f3808948", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29686, "upload_time": "2016-02-22T06:56:58", "url": "https://files.pythonhosted.org/packages/13/e1/e29190592fdab4de57d4e8c2667625393baff52bf5bd2e1efcb4d366619d/grokcli-2.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a0b96e7c091c90fea66cd2e9c88fd34", "sha256": "63a041411b415ea87879654009d5fb553de4ae168afa66b5cf48769eb319069c" }, "downloads": -1, "filename": "grokcli-2.2.1.tar.gz", "has_sig": false, "md5_digest": "4a0b96e7c091c90fea66cd2e9c88fd34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30781, "upload_time": "2016-02-22T06:50:54", "url": "https://files.pythonhosted.org/packages/b5/93/2fd42b31002954f146e05da9730a8250cd46d48e92aecadd82e7f24337ea/grokcli-2.2.1.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "fb6f10b78bf966ed91e6e9e7d42afb5a", "sha256": "8e540c23036420d3ffadfdcedfff00ec8b107215a6eff855d758fbc1803d1d02" }, "downloads": -1, "filename": "grokcli-2.5.0-py2-none-any.whl", "has_sig": false, "md5_digest": "fb6f10b78bf966ed91e6e9e7d42afb5a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29681, "upload_time": "2016-06-01T10:08:25", "url": "https://files.pythonhosted.org/packages/4b/25/aa705051e0332a5cd89e73051b69f33db0341ab1594800d221e8ff0f029d/grokcli-2.5.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ac77f5cb8c12b2a5536b1e82700388d", "sha256": "950e252993214f8a10f71fc40fc4624ac971c1b7215dadbf137f2871a9e463a1" }, "downloads": -1, "filename": "grokcli-2.5.0.tar.gz", "has_sig": false, "md5_digest": "4ac77f5cb8c12b2a5536b1e82700388d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30803, "upload_time": "2016-06-01T10:03:30", "url": "https://files.pythonhosted.org/packages/09/c1/3c915563cdf3579b1c48d6b6c4f5e5c772c3df744a22d4d9d127bf58b8f6/grokcli-2.5.0.tar.gz" } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "a1fda82e2c9ca887ce91c0659a178982", "sha256": "396fb2fa21a34f661e903f6e63526c5a7942878a2ee256ee1bfa40d459a23ecc" }, "downloads": -1, "filename": "grokcli-2.5.1-py2-none-any.whl", "has_sig": false, "md5_digest": "a1fda82e2c9ca887ce91c0659a178982", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29687, "upload_time": "2016-06-20T04:52:26", "url": "https://files.pythonhosted.org/packages/4b/64/517e313fa67b9bcb25c8d6692dd196caddc3ec8e90abd0c367fb8b58ce5d/grokcli-2.5.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d7c9b0bfbb633005a268c2bc27b7abd", "sha256": "296e8b9563bea9129a1ba476dc65d7d1a0f7e7e40def8204f83d7a14c3d9d0c6" }, "downloads": -1, "filename": "grokcli-2.5.1.tar.gz", "has_sig": false, "md5_digest": "1d7c9b0bfbb633005a268c2bc27b7abd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30796, "upload_time": "2016-06-20T04:52:08", "url": "https://files.pythonhosted.org/packages/e2/d7/87c6144dd626e4300c0743056889a15e50606c67685a5cc869ab4fd9624f/grokcli-2.5.1.tar.gz" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "4d13506ff65b948ec01312b89f05f175", "sha256": "4422156dab64bbb3cf5ee31b726f72a62f943b97c41fbf69a5692d889282716b" }, "downloads": -1, "filename": "grokcli-2.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "4d13506ff65b948ec01312b89f05f175", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29683, "upload_time": "2016-08-22T06:19:54", "url": "https://files.pythonhosted.org/packages/ee/90/9a7ab92c6dca58af1d48250b01e4d142c11793aff5f6b15cfd680dbf51ab/grokcli-2.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "79289db11dfc7fd29ee68fdaa6ccbd85", "sha256": "26ba80a27796012a27d3571e3468959ca691f12a6cf4ff9d3c0b247a8213fed4" }, "downloads": -1, "filename": "grokcli-2.6.0.tar.gz", "has_sig": false, "md5_digest": "79289db11dfc7fd29ee68fdaa6ccbd85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30756, "upload_time": "2016-08-22T06:18:43", "url": "https://files.pythonhosted.org/packages/c3/e1/c98a042543092a359db62c58a78e611888545f987de62a8de13b6ab93d48/grokcli-2.6.0.tar.gz" } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "000d0a7ba6570aeb2c6eb0f38f0c7afb", "sha256": "73c560359ff9c99845c3710fecde0cd6bec9965ddfb621072318ccead0c9cc53" }, "downloads": -1, "filename": "grokcli-2.7.1-py2-none-any.whl", "has_sig": false, "md5_digest": "000d0a7ba6570aeb2c6eb0f38f0c7afb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29695, "upload_time": "2016-11-03T04:23:08", "url": "https://files.pythonhosted.org/packages/d6/15/e6965a58631ec9820afdba0a0c78892558b9bb0c56fe37d115cbf8f6abe0/grokcli-2.7.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0ac7fca708c342406be0a52ca439d20", "sha256": "284debf5486aa845f1f6f05302d752976e2de32284019278f8a3fac53219e423" }, "downloads": -1, "filename": "grokcli-2.7.1.tar.gz", "has_sig": false, "md5_digest": "f0ac7fca708c342406be0a52ca439d20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30799, "upload_time": "2016-11-03T04:22:56", "url": "https://files.pythonhosted.org/packages/92/5d/c15f7092e1b37a89dd660b2dae31cff4829723f2661120552c567c2f544b/grokcli-2.7.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "000d0a7ba6570aeb2c6eb0f38f0c7afb", "sha256": "73c560359ff9c99845c3710fecde0cd6bec9965ddfb621072318ccead0c9cc53" }, "downloads": -1, "filename": "grokcli-2.7.1-py2-none-any.whl", "has_sig": false, "md5_digest": "000d0a7ba6570aeb2c6eb0f38f0c7afb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29695, "upload_time": "2016-11-03T04:23:08", "url": "https://files.pythonhosted.org/packages/d6/15/e6965a58631ec9820afdba0a0c78892558b9bb0c56fe37d115cbf8f6abe0/grokcli-2.7.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0ac7fca708c342406be0a52ca439d20", "sha256": "284debf5486aa845f1f6f05302d752976e2de32284019278f8a3fac53219e423" }, "downloads": -1, "filename": "grokcli-2.7.1.tar.gz", "has_sig": false, "md5_digest": "f0ac7fca708c342406be0a52ca439d20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30799, "upload_time": "2016-11-03T04:22:56", "url": "https://files.pythonhosted.org/packages/92/5d/c15f7092e1b37a89dd660b2dae31cff4829723f2661120552c567c2f544b/grokcli-2.7.1.tar.gz" } ] }