{ "info": { "author": "Return To Corporation", "author_email": "hello@r2c.dev", "bugtrack_url": null, "classifiers": [ "License :: Other/Proprietary License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8" ], "description": "

\n \"Bento\n

\n

\n Find Python web-app bugs delightfully fast, without changing your workflow\n

\n\n

\n Installation\n \u00b7 \n Motivations\n \u00b7 \n Code Checks\n \u00b7 \n Usage\n
\n Workflows\n \u00b7 \n Integrations\n \u00b7 \n Help & Community\n

\n\n

\n \n \"PyPI\"\n \n \n \"PyPI\n \n \n \"Issues\n \n \n \"Follow\n \n

\n\nInspired by tools like the ESLint plugin for React, Bento was created for Flask and Django. With Bento you\u2019ll:\n\n- **Find bugs that matter.** Checks find security and reliability bugs in your code. They\u2019re vetted across thousands of open source projects and never nit your style.\n- **Upgrade your tooling.** You don\u2019t have to fix existing bugs to adopt Bento. It\u2019s diff-centric, finding new bugs introduced by your changes. And there\u2019s zero config.\n- **Go delightfully fast.** Run Bento automatically locally or in CI. Either way, it runs offline and never sends your code anywhere.\n\n

\n \"Demonstrating\n

\n\n## Installation\n\nBento is free and requires [Python 3.6+](https://www.python.org/downloads/) and [Docker 19.03+](https://docs.docker.com/get-docker/). It runs on macOS and Linux.\n\nIn a Git project directory:\n\n```bash\n$ pip3 install bento-cli && bento init\n```\n\nGo forth and write great code!\n\n## Motivations\n\n> See our [Bento introductory blog post](https://bento.dev/blog/2019/our-quest-to-make-world-class-security-and-bugfinding-available-to-all-developers/) to learn the full story.\n\nBento is part of a quest to make world-class security and bugfinding available to all developers, for free. We\u2019ve learned that most developers have never heard of\u2014let alone tried\u2014tools that find deep flaws in code: like Codenomicon, which found [Heartbleed](http://heartbleed.com/), or Zoncolan at Facebook, which finds more [top-severity security issues](https://cacm.acm.org/magazines/2019/8/238344-scaling-static-analyses-at-facebook/fulltext) than any human effort. These tools find severe issues and also save tons of time, identifying [hundreds of thousands of issues](https://static.googleusercontent.com/media/research.google.com/en//pubs/archive/43322.pdf) before humans can. Bento is a step towards universal access to tools like these.\n\nWe\u2019re also big proponents of opinionated tools like [Black](https://github.com/psf/black) and [Prettier](https://github.com/prettier/prettier). This has two implications: Bento ignores style-related issues and the bikeshedding that comes with them, and it ships with a curated set of checks that we believe are high signal and bug-worthy. See [Three things your linter shouldn\u2019t tell you](https://bento.dev/blog/2019/three-things-your-linter-shouldnt-tell-you/) for more about our decision making process.\n\n## Code Checks\n\nBento\u2019s check focus on security and reliability bugs in Flask and Django projects.\n\n| | | |\n| ---------------------------- | ------------------------------------ | ---------------------------------------------------- |\n| **Flask** | **Jinja** | **Django** |\n| missing JWT token | href template variable | _coming soon_ |\n| secure set cookie | missing noopener | |\n| send file open | missing noreferrer | **Docker** |\n| unescaped file extension | missing csrf protection | [Hadolint](https://github.com/hadolint/hadolint) |\n| use blueprint for modularity | missing doctype | |\n| use jsonify | meta charset | **Shell** |\n| avoid hardcoded config | meta content-type | [ShellCheck](https://github.com/koalaman/shellcheck) |\n| | unquoted attribute template variable |\n| **Requests** | |\n| no auth over http | **SQLAlchemy** | |\n| use scheme | _coming soon_ | |\n| use timeout | |\n\nSee the full list of [Bento\u2019s specialty checks](https://bento.dev/checks/).\n\n## Usage\n\nOut-of-the-box, Bento is configured for your personal use. See [Team Use](#team-use) to setup Bento for all contributors.\n\n### Upgrading\n\n```bash\n$ pip3 install --upgrade bento-cli\n```\n\n### Command Line Options\n\n```\n$ bento --help\nUsage: bento [OPTIONS] COMMAND [ARGS]...\n\nOptions:\n -h, --help Show this message and exit.\n --version Show the version and exit.\n --agree Automatically agree to terms of service.\n --email TEXT Email address to use while running this command without global\n configs e.g. in CI\n\nCommands:\n archive Suppress current findings.\n check Checks for new findings.\n disable Turn OFF a Bento feature for this project.\n enable Turn ON a Bento feature for this project.\n init Autodetects and installs tools.\n\n To get help for a specific command, run `bento COMMAND --help`\n```\n\n### Exit Codes\n\n`bento check` may exit with the following exit codes:\n\n- `0`: Bento ran successfully and found no errors\n- `2`: Bento ran successfully and found issues in your code\n- `3`: Bento or one of its underlying tools failed to run\n\n## Workflows\n\n### Individual Use\n\nBento understands the importance of getting out of the way so you can write your code. It runs at commit-time on your diffs and only affects you; it won\u2019t change anything for other project contributors or modify Git state.\n\nInitialization enables `autorun` behind the scenes. By default `autorun` blocks the commit if Bento returns findings. To make it non-blocking:\n\n```bash\n$ bento enable autorun --no-block\n```\n\nYou can always manually run Bento on staged files or directories via:\n\n```bash\n$ bento check [PATHS]\n```\n\nThis will show only new findings introduced by these files AND that are not in the archive (`.bento/archive.json`). Use `--all` to check all Git tracked files, not just those that are staged:\n\n```bash\n$ bento check --all [PATHS]\n```\n\nThis feature makes use of Git hooks. If the Bento hook incorrectly blocks your commit, you can skip it by passing the `--no-verify` flag to Git at commit-time (please use this sparingly since all hooks will be skipped):\n\n```bash\n$ git commit --no-verify\n```\n\n### Team Use\n\n#### Running Locally\n\nTo setup Bento for all project contributors, add Bento\u2019s configuration to Git (it\u2019s ignored by default):\n\n```bash\n$ cd \n# Add Bento's cache to the project's .gitignore\n$ echo \".bento/cache\" >> .gitignore\n# Commit Bento's config to your project\n$ git add --force .bento .bentoignore\n```\n\nContributors can run Bento for themselves using the project\u2019s configuration via:\n\n```bash\n$ bento init\n```\n\n#### Running in CI/CD\n\nBento has first-class support for checking pull requests with GitHub Actions.\nSuch checks will report only on the bugs introduced by the changes in the pull request.\n\nTo get started, just run `bento enable ci` in your project directory.\nThis will add a CI configuration file to your repository.\n\n#### Advanced CI/CD configuration\n\nYou can also configure Bento in CI to analyze your entire project,\ninstead of only the changes from a pull request.\nSo that you don\u2019t have to fix all existing issues before making Bento blocking,\nits `archive` feature allows historical issues to be tracked and ignored during CI.\n\nTo use the `archive` feature so Bento returns a non-zero exit code only for new issues, rather than all existing issues, first create the archive:\n\n```bash\n$ cd \n$ bento archive .\n```\n\nCommit Bento\u2019s configuration to the project:\n\n```bash\n# Add Bento's cache to the project's .gitignore\n$ echo \".bento/cache\" >> .gitignore\n# Commit Bento's config to your project\n$ git add --force .bento .bentoignore\n```\n\nYou can then add Bento to your CI scripts:\n\n```bash\n$ pip3 install bento-cli && bento --version\n$ bento --agree --email= check --all 2>&1 | cat\n```\n\nWe pipe through `cat` to disable Bento's interactive tty features (e.g. progress bars, using a pager for many findings).\n\nIf you use CircleCI, the above commands become:\n\n```yaml\nversion: 2.1\n\njobs:\n bentoCheck:\n executor: circleci/python:3.7.4-stretch-node\n steps:\n - checkout\n - run:\n name: \"Install Bento\"\n command: pip3 install bento-cli && bento --version\n - run:\n name: \"Run Bento check\"\n command: bento --agree --email= check --all 2>&1 | cat\n```\n\n`bento check` will exit with a non-zero exit code if it finds issues in your code (see [Exit Codes](#exit-codes)).\n\nIf you need help setting up Bento with another CI provider please [open an issue](https://github.com/returntocorp/bento/issues/new?template=feature_request.md). Documentation PRs welcome if you set up Bento with a CI provider that isn\u2019t documented here!\n\n## Help and Community\n\nNeed help or want to share feedback? We\u2019d love to hear from you!\n\n- Email us at [support@r2c.dev](mailto:support@r2c.dev)\n- Join #bento in our [community Slack](https://join.slack.com/t/r2c-community/shared_invite/enQtNjU0NDYzMjAwODY4LWE3NTg1MGNhYTAwMzk5ZGRhMjQ2MzVhNGJiZjI1ZWQ0NjQ2YWI4ZGY3OGViMGJjNzA4ODQ3MjEzOWExNjZlNTA)\n- [File an issue](https://github.com/returntocorp/bento/issues/new?assignees=&labels=bug&template=bug_report.md&title=) or [submit a feature request](https://github.com/returntocorp/bento/issues/new?assignees=&labels=feature-request&template=feature_request.md&title=) directly on GitHub — we welcome them all!\n\nWe\u2019re constantly shipping new features and improvements.\n\n- [Sign up for the Bento newsletter](http://eepurl.com/gDeFvL) — we promise not to spam and you can unsubscribe at any time\n- See past announcements, releases, and issues [here](https://us18.campaign-archive.com/home/?u=ee2dc8f77e27d3739cf4df9ef&id=d13f5e938e)\n\nWe\u2019re fortunate to benefit from the contributions of the open source community and great projects such as [Bandit](https://pypi.org/project/bandit/), [ESLint](https://eslint.org/), [Flake8](https://pypi.org/project/flake8/), and their plugins. \ud83d\ude4f\n\n## License and Legal\n\nPlease refer to the [terms and privacy document](https://github.com/returntocorp/bento/blob/master/PRIVACY.md).\n\n
\n
\n

\n \"r2c\n

\n

\n Copyright (c) r2c.\n

\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://bento.dev", "keywords": "", "license": "Proprietary", "maintainer": "", "maintainer_email": "", "name": "bento-cli", "package_url": "https://pypi.org/project/bento-cli/", "platform": "", "project_url": "https://pypi.org/project/bento-cli/", "project_urls": { "Blog": "https://bento.dev/blog/", "Bug Tracker": "https://github.com/returntocorp/bento/issues", "Code Checks": "https://bento.dev/checks/", "Homepage": "http://bento.dev", "Source Code": "https://github.com/returntocorp/bento" }, "release_url": "https://pypi.org/project/bento-cli/0.12.0/", "requires_dist": [ "attrs (>=18.2.0,<=19.3.0)", "click (>=7.0,<8.0)", "docker (>=3.7,<4.0)", "frozendict (>=1.2,<2.0)", "gitpython (>=2.1,<3.0)", "packaging (>=14.0)", "pre-commit (>=1.0.0,<=1.18.3)", "psutil (>=5.6.3,<5.7.0)", "pymmh3 (>=0.0.5,<0.1.0)", "PyYAML (>=5.1.2)", "semantic-version (>=2.8.0,<2.9.0)", "tqdm (>=4.36.1,<4.37.0)", "validate-email (>=1.3,<2.0)" ], "requires_python": ">=3.6,<4.0", "summary": "Free program analysis focused on bugs that matter to you.", "version": "0.12.0", "yanked": false, "yanked_reason": null }, "last_serial": 7389516, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "94ed725449e6e95da942f0dca7dc46ec", "sha256": "263c29611febe5a1c49e2e60f864d3ca49768cbf56d99e6fa8f19d2529f73046" }, "downloads": -1, "filename": "bento_cli-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "94ed725449e6e95da942f0dca7dc46ec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 34990, "upload_time": "2019-10-09T18:22:22", "upload_time_iso_8601": "2019-10-09T18:22:22.765256Z", "url": "https://files.pythonhosted.org/packages/34/e4/a3840d93a9329e944125211e0d98b1f6065b99e6eb736248b1033b8ef658/bento_cli-0.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7a1906dbce704411fe33139d5b57b44", "sha256": "66cc53c93ed7facc55e79ddc703ef9f378a0ccdcc3534b0af7ae28417e57fe40" }, "downloads": -1, "filename": "bento-cli-0.1.0.tar.gz", "has_sig": false, "md5_digest": "a7a1906dbce704411fe33139d5b57b44", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 29082, "upload_time": "2019-10-09T18:22:24", "upload_time_iso_8601": "2019-10-09T18:22:24.632483Z", "url": "https://files.pythonhosted.org/packages/98/31/109f01c9b22e09f1d4ac56646167f144ab3d3a6003519a6e4da19faf6c65/bento-cli-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0.post1": [ { "comment_text": "", "digests": { "md5": "2258c6b7f4b84778df9ce198b7c8210a", "sha256": "26784289c5ff518ce6ff2794a014e4fdf255872997aa034eb91a962e7a04762e" }, "downloads": -1, "filename": "bento_cli-0.1.0.post1-py3-none-any.whl", "has_sig": false, "md5_digest": "2258c6b7f4b84778df9ce198b7c8210a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 36478, "upload_time": "2019-10-10T23:54:02", "upload_time_iso_8601": "2019-10-10T23:54:02.742227Z", "url": "https://files.pythonhosted.org/packages/e4/c2/2eb0a61d7d455b391e5a30ec86808ae105a49b53734c3bc0222bff0d2377/bento_cli-0.1.0.post1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d824b8ede95408e1667540a2aeb6c08e", "sha256": "0ec89a2aa84c2df19d2e29695d5e1f852e1f2c23f6893e961db25361f607976e" }, "downloads": -1, "filename": "bento-cli-0.1.0.post1.tar.gz", "has_sig": false, "md5_digest": "d824b8ede95408e1667540a2aeb6c08e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 30400, "upload_time": "2019-10-10T23:54:04", "upload_time_iso_8601": "2019-10-10T23:54:04.423302Z", "url": "https://files.pythonhosted.org/packages/7f/0c/7a10ab31413b81a9895cf6fa33036494ec2f678ffd6fe90787fd6ecf289d/bento-cli-0.1.0.post1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "f32dc9c7ca176b8a237dc4566b4e3ec1", "sha256": "e09257a2b4b772e871b8d9023df0d46ac6d78f5d66ebcdb470edfa4ada2ed568" }, "downloads": -1, "filename": "bento_cli-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f32dc9c7ca176b8a237dc4566b4e3ec1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 38205, "upload_time": "2019-10-16T20:55:14", "upload_time_iso_8601": "2019-10-16T20:55:14.722442Z", "url": "https://files.pythonhosted.org/packages/d4/c5/75873eaa1b411fbcf0bc2820575be010ee7280a3584c776edef448e7158d/bento_cli-0.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3b4fedeb43482c03878aa8b70fc5109", "sha256": "02f26cc5136bf562fef1dc0b4b83674f07019dbfd33c8ad3e7a3958e2db1c3f2" }, "downloads": -1, "filename": "bento-cli-0.1.1.tar.gz", "has_sig": false, "md5_digest": "a3b4fedeb43482c03878aa8b70fc5109", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 31412, "upload_time": "2019-10-16T20:55:16", "upload_time_iso_8601": "2019-10-16T20:55:16.346282Z", "url": "https://files.pythonhosted.org/packages/a8/d4/a01ff22dc724816df8469372b67a658cbc0648afa8b6ebb595d21b09e8a1/bento-cli-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "0d691d88369a51cd1c856d6f39466e75", "sha256": "e32f94091806635edc95948bb86229dd702eb8adf64dc0732978b7ed7688ce25" }, "downloads": -1, "filename": "bento_cli-0.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0d691d88369a51cd1c856d6f39466e75", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 118303, "upload_time": "2020-02-27T01:51:01", "upload_time_iso_8601": "2020-02-27T01:51:01.829101Z", "url": "https://files.pythonhosted.org/packages/b7/7c/7e7bc4b08aa8ac60174ef58088fcfbe4cbe7c76e965fdadde5f51e2d0f6d/bento_cli-0.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b64b7cede9c4e41fe44d40e793b43c73", "sha256": "186acf5591ad82fb06d0a4400d710642256fbec33238c0c09c017245d6d79a6c" }, "downloads": -1, "filename": "bento-cli-0.10.0.tar.gz", "has_sig": false, "md5_digest": "b64b7cede9c4e41fe44d40e793b43c73", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 92237, "upload_time": "2020-02-27T01:50:56", "upload_time_iso_8601": "2020-02-27T01:50:56.759340Z", "url": "https://files.pythonhosted.org/packages/d4/e5/f468d73bc27781955bbc2a541b3c80dfd00f31c83f7ca397f22be52d8c22/bento-cli-0.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "7133793b3d8c65be261a694ab6f8f710", "sha256": "bb27c144c0d239a792353f5897072ece21cac2e85477fdd3f765a995e186b3d1" }, "downloads": -1, "filename": "bento_cli-0.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7133793b3d8c65be261a694ab6f8f710", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 118865, "upload_time": "2020-03-05T18:04:50", "upload_time_iso_8601": "2020-03-05T18:04:50.103126Z", "url": "https://files.pythonhosted.org/packages/9e/eb/e275f4a46c28964a137f958c20ed05c3fe9ebf140925688444b01a1ac4f7/bento_cli-0.10.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9181c74384486f327c8003a8581fc8d4", "sha256": "b2b4a9326ad28eda28d8642230cb8f3488c712e8cd470ea8b954ebdd02292f5d" }, "downloads": -1, "filename": "bento-cli-0.10.1.tar.gz", "has_sig": false, "md5_digest": "9181c74384486f327c8003a8581fc8d4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 92908, "upload_time": "2020-03-05T18:04:48", "upload_time_iso_8601": "2020-03-05T18:04:48.570782Z", "url": "https://files.pythonhosted.org/packages/38/5f/ce8d7a9040352bdcbf8d8b760ae65e00ba648279dd528064d4cdc1139463/bento-cli-0.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "32bc32de2d5af6c3f44db87ff0ab86d1", "sha256": "42c8ef8ec9eaa813a218ca9cbff5be7d7aa87a7914b440f6a888770cb2e4e3ca" }, "downloads": -1, "filename": "bento_cli-0.10.2-py3-none-any.whl", "has_sig": false, "md5_digest": "32bc32de2d5af6c3f44db87ff0ab86d1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 119906, "upload_time": "2020-04-06T19:32:03", "upload_time_iso_8601": "2020-04-06T19:32:03.274562Z", "url": "https://files.pythonhosted.org/packages/5a/05/1c643d6eaf9cd7987f1d5ef8431f6c68de8af5ea065b99dbe03e338d4b90/bento_cli-0.10.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ac3f659c2bebb8fd3ffea8fdc114502", "sha256": "b2f8874277ca741f2aee862a2b540d319f39f39a82e3a79a1e7dc0f304e2167d" }, "downloads": -1, "filename": "bento-cli-0.10.2.tar.gz", "has_sig": false, "md5_digest": "9ac3f659c2bebb8fd3ffea8fdc114502", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 93672, "upload_time": "2020-04-06T19:32:01", "upload_time_iso_8601": "2020-04-06T19:32:01.593014Z", "url": "https://files.pythonhosted.org/packages/e7/70/cfe7fcdb29e2da49685ec8a3957223fbdb0c25c84425251d5425c2597d3c/bento-cli-0.10.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "72a49854136636c3e554b93804d2ed4f", "sha256": "cb4392d203e1b008ac9e279d3e220c9aff4d12a0011c8aa39767b312cc4a3c34" }, "downloads": -1, "filename": "bento_cli-0.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "72a49854136636c3e554b93804d2ed4f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 117138, "upload_time": "2020-04-17T23:35:58", "upload_time_iso_8601": "2020-04-17T23:35:58.092560Z", "url": "https://files.pythonhosted.org/packages/07/df/56066f3bd69713a919c247fca399650c0b196e1a94dc9357077aa812e670/bento_cli-0.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "853681a853390fb7ec0e0f144d7ff737", "sha256": "93ee70d932ac02754518b38073118c043bbdc3ff8c720297e388c34b25fd3516" }, "downloads": -1, "filename": "bento-cli-0.11.0.tar.gz", "has_sig": false, "md5_digest": "853681a853390fb7ec0e0f144d7ff737", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 91012, "upload_time": "2020-04-17T23:35:56", "upload_time_iso_8601": "2020-04-17T23:35:56.667921Z", "url": "https://files.pythonhosted.org/packages/92/15/436824c6f1da35fa8fc39582b8a597c0eb4a8568a42e80c625a7b2dd0f6e/bento-cli-0.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "003365f170af9829f2285e9463c93881", "sha256": "1c4242accc2b8140379f89253f1fbc0ec6d3d46933104a2682f8b3e1349f6876" }, "downloads": -1, "filename": "bento_cli-0.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "003365f170af9829f2285e9463c93881", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 117317, "upload_time": "2020-04-29T16:36:33", "upload_time_iso_8601": "2020-04-29T16:36:33.650978Z", "url": "https://files.pythonhosted.org/packages/92/30/a4260de2c8cd88944ba047968a6b6fd93dce05613e04aa3d1a66478da397/bento_cli-0.11.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e94f21dc88b5db0a1f8e036b30198ba", "sha256": "42907d2b0963020cefed4cc5cd5b8b0c8e715f8f292726ea3e6be1acbe4309a9" }, "downloads": -1, "filename": "bento-cli-0.11.1.tar.gz", "has_sig": false, "md5_digest": "3e94f21dc88b5db0a1f8e036b30198ba", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 90262, "upload_time": "2020-04-29T16:36:32", "upload_time_iso_8601": "2020-04-29T16:36:32.281248Z", "url": "https://files.pythonhosted.org/packages/2a/72/a29f9634ff908f08059506554a20cfc8aa1a53a91cdaf754d8d6999e6ab7/bento-cli-0.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "78a4381a8ae89419392afc8defc0af91", "sha256": "d5fad36c1d15ca72fd6f4b9258190fce24af1b61e148705b141fae67a66a75d1" }, "downloads": -1, "filename": "bento_cli-0.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "78a4381a8ae89419392afc8defc0af91", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 119478, "upload_time": "2020-05-08T22:15:34", "upload_time_iso_8601": "2020-05-08T22:15:34.104718Z", "url": "https://files.pythonhosted.org/packages/77/48/a8475ee524269173fc88c042d4fdcb07167a033c9c58f7b38d92e570ffe6/bento_cli-0.12.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5568af9bf01cb6b55f7a11a3ebda3b12", "sha256": "3f0548a257b61fbf30ef60940472c08974b17dfa69e324d8871611317f75baa3" }, "downloads": -1, "filename": "bento-cli-0.12.0.tar.gz", "has_sig": false, "md5_digest": "5568af9bf01cb6b55f7a11a3ebda3b12", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 91948, "upload_time": "2020-05-08T22:15:32", "upload_time_iso_8601": "2020-05-08T22:15:32.890353Z", "url": "https://files.pythonhosted.org/packages/5a/fd/09a8c7f1bec079c2c0334f6bed70d999a74e9b59a2cd0c013f9fc744187c/bento-cli-0.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.0b1": [ { "comment_text": "", "digests": { "md5": "feb578564c221cbcb2a7a64c3ddeaa11", "sha256": "5ca12e35c37d5896cf50740c998be125f423e6c6c2cb3ae0b4ca1a536a0a4c6a" }, "downloads": -1, "filename": "bento_cli-0.12.0b1-py3-none-any.whl", "has_sig": false, "md5_digest": "feb578564c221cbcb2a7a64c3ddeaa11", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 119480, "upload_time": "2020-05-07T23:43:06", "upload_time_iso_8601": "2020-05-07T23:43:06.595181Z", "url": "https://files.pythonhosted.org/packages/22/83/823fab5fba40e2b697021825b56befea8097d9527ab7dc895f4b5e1ea80b/bento_cli-0.12.0b1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae5d240114e2a9925f6164413d8ffb5f", "sha256": "93342a28fbb607532b07c5c681cad87014dda444c54ae73eac185a75805c580f" }, "downloads": -1, "filename": "bento-cli-0.12.0b1.tar.gz", "has_sig": false, "md5_digest": "ae5d240114e2a9925f6164413d8ffb5f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 92746, "upload_time": "2020-05-07T23:43:05", "upload_time_iso_8601": "2020-05-07T23:43:05.066591Z", "url": "https://files.pythonhosted.org/packages/25/13/b1f0297ea0ce50eaf1ec00aac662d104b8f2df9f46d5a00e312bc3e60928/bento-cli-0.12.0b1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.0b1": [ { "comment_text": "", "digests": { "md5": "778616ab34df9e15e50979d640677b00", "sha256": "178258dcb54a50be01e7494d243f05ec273479c390c955433cd870c9220d8199" }, "downloads": -1, "filename": "bento_cli-0.13.0b1-py3-none-any.whl", "has_sig": false, "md5_digest": "778616ab34df9e15e50979d640677b00", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 119577, "upload_time": "2020-05-14T00:22:05", "upload_time_iso_8601": "2020-05-14T00:22:05.675615Z", "url": "https://files.pythonhosted.org/packages/58/b4/b86dc10f51ee3a6108199274c9d0ff7d113e25a5b34cfeb6b9c750ac04ca/bento_cli-0.13.0b1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11c8ee9fa2ea1ffe4b0592e597e7f923", "sha256": "66baeea5182cf0ded5ffdbeeaa99dfe1efd05edfb396969bd95c8eb9373185da" }, "downloads": -1, "filename": "bento-cli-0.13.0b1.tar.gz", "has_sig": false, "md5_digest": "11c8ee9fa2ea1ffe4b0592e597e7f923", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 92865, "upload_time": "2020-05-14T00:22:04", "upload_time_iso_8601": "2020-05-14T00:22:04.324650Z", "url": "https://files.pythonhosted.org/packages/8c/f6/cd30fe032c0a92306bc855bff18e4ee64e41bba2e4984712b05deee1806f/bento-cli-0.13.0b1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.0b2": [ { "comment_text": "", "digests": { "md5": "a22255acaaa84b8117812d8b939b4132", "sha256": "c1a19b9ce121f236c635a74d08674c4073114d840493cb87d29255a3b9976b3c" }, "downloads": -1, "filename": "bento_cli-0.13.0b2-py3-none-any.whl", "has_sig": false, "md5_digest": "a22255acaaa84b8117812d8b939b4132", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 119796, "upload_time": "2020-05-18T20:12:21", "upload_time_iso_8601": "2020-05-18T20:12:21.989040Z", "url": "https://files.pythonhosted.org/packages/92/21/8668767b1a404b746b32ea120fe0394937086826426db041018a4c70cfe4/bento_cli-0.13.0b2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ce097fbfdc1cc2795652905e787ce34", "sha256": "9b1c791d1901f5b7717bb4ea193983d8664ce6c850be02931a6699230dd58e8f" }, "downloads": -1, "filename": "bento-cli-0.13.0b2.tar.gz", "has_sig": false, "md5_digest": "2ce097fbfdc1cc2795652905e787ce34", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 92384, "upload_time": "2020-05-18T20:12:20", "upload_time_iso_8601": "2020-05-18T20:12:20.724820Z", "url": "https://files.pythonhosted.org/packages/cc/5b/2f93b0aea3978bbc5056b1481f5ab4b877caee166e6b98bdb011c80e395b/bento-cli-0.13.0b2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.0b3": [ { "comment_text": "", "digests": { "md5": "93bbf978166bbdf63f81a7ec1bc1ed3e", "sha256": "143a09ac23e130a5bd91a934e69ccbc62181d0982dbcece6b9a9006d83e3ecaa" }, "downloads": -1, "filename": "bento_cli-0.13.0b3-py3-none-any.whl", "has_sig": false, "md5_digest": "93bbf978166bbdf63f81a7ec1bc1ed3e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 119809, "upload_time": "2020-05-18T22:04:10", "upload_time_iso_8601": "2020-05-18T22:04:10.626662Z", "url": "https://files.pythonhosted.org/packages/11/ac/0a69a8e1752320f7eafd14c7b0ca0c7cae95046cfba7f195ff3e4f437f53/bento_cli-0.13.0b3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b401ef008bab6d9bf0bd26db49eb24d4", "sha256": "88db856223622923e7a3f0a1a6fa5b79b4d4e759b67edebf1c9113db5f952d02" }, "downloads": -1, "filename": "bento-cli-0.13.0b3.tar.gz", "has_sig": false, "md5_digest": "b401ef008bab6d9bf0bd26db49eb24d4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 92171, "upload_time": "2020-05-18T22:04:09", "upload_time_iso_8601": "2020-05-18T22:04:09.570899Z", "url": "https://files.pythonhosted.org/packages/17/a8/5154cf7ccbd313ebda2d80a4e67d85091315ff1dca7ca9520c14e691e53f/bento-cli-0.13.0b3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.0b4": [ { "comment_text": "", "digests": { "md5": "00c86ab81f1ce2f1a6f5ee30b540f8de", "sha256": "14b81e4463ca0e38241b51e2d9311211c6154b2fbcfab3a7eb5cc5fa444b3858" }, "downloads": -1, "filename": "bento_cli-0.13.0b4-py3-none-any.whl", "has_sig": false, "md5_digest": "00c86ab81f1ce2f1a6f5ee30b540f8de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 122969, "upload_time": "2020-06-03T19:36:35", "upload_time_iso_8601": "2020-06-03T19:36:35.091459Z", "url": "https://files.pythonhosted.org/packages/1d/00/29b8f1663c7f3875b74499f7ba45e4aeb59227e461602de32cb9e97f04c9/bento_cli-0.13.0b4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e03239023775303d2ab8a1673ac72c1c", "sha256": "2c0b4a1b70f04ef4b35214604abc500b0be36e34a875ea18108f7be064f682a6" }, "downloads": -1, "filename": "bento-cli-0.13.0b4.tar.gz", "has_sig": false, "md5_digest": "e03239023775303d2ab8a1673ac72c1c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 93180, "upload_time": "2020-06-03T19:36:33", "upload_time_iso_8601": "2020-06-03T19:36:33.936954Z", "url": "https://files.pythonhosted.org/packages/f1/18/da5899bd009604eafa365ab87fba40fd9bc5f5f197c106ba717d12e74a34/bento-cli-0.13.0b4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "b7660f09a424ebd457e0023715505307", "sha256": "8f3bc040b913d3dd35f0a45378ab557747cc0817d0824a639c6018c75ca5f639" }, "downloads": -1, "filename": "bento_cli-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b7660f09a424ebd457e0023715505307", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 48400, "upload_time": "2019-10-24T18:34:24", "upload_time_iso_8601": "2019-10-24T18:34:24.061917Z", "url": "https://files.pythonhosted.org/packages/ff/01/fe44d2b9b5b78130973aa80f706b29f7bdb91aacc20086653e9fc3caffec/bento_cli-0.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6d9c643523164bf9a3df4950e7be28d", "sha256": "1c2ab45fa2858f9d43e4e053dac6f3b344cc7ab90feddc0aaf926abfd5a3aec8" }, "downloads": -1, "filename": "bento-cli-0.2.0.tar.gz", "has_sig": false, "md5_digest": "f6d9c643523164bf9a3df4950e7be28d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 37397, "upload_time": "2019-10-24T18:34:25", "upload_time_iso_8601": "2019-10-24T18:34:25.480363Z", "url": "https://files.pythonhosted.org/packages/58/fc/8b05c9fbe566eb600957da45f30be05683278a5f9213b419bc920a014b7b/bento-cli-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "85ad304c22b4b8beed4b857629a77494", "sha256": "9c50b0cf74fe76e9108aa45fc10621698aad8baa909a0ca1c52711298b8af037" }, "downloads": -1, "filename": "bento_cli-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "85ad304c22b4b8beed4b857629a77494", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 48914, "upload_time": "2019-10-29T17:27:07", "upload_time_iso_8601": "2019-10-29T17:27:07.480161Z", "url": "https://files.pythonhosted.org/packages/be/eb/ac1514b615d4122b69df23ad6dfae7b9a4222e3bf3a9695352e04dd9faf8/bento_cli-0.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18611ea3e6afd25689b2ac1b5e33c0f3", "sha256": "15f6b4d9d00266084c4a230272c2a387dd57ebb9f79f0f3de214a3ea1ee6252e" }, "downloads": -1, "filename": "bento-cli-0.2.1.tar.gz", "has_sig": false, "md5_digest": "18611ea3e6afd25689b2ac1b5e33c0f3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 38044, "upload_time": "2019-10-29T17:27:09", "upload_time_iso_8601": "2019-10-29T17:27:09.488562Z", "url": "https://files.pythonhosted.org/packages/4f/65/a690629c0ee8664a85ad94a3864b38fef232a293a5d245ab959285f58f3e/bento-cli-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "7df613c47b3bea65b54724627aea0488", "sha256": "a11672f58bbdd5e3dee7632eb955ffc048e46cccfa0e5ba845b37a1cb22fd4e2" }, "downloads": -1, "filename": "bento_cli-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7df613c47b3bea65b54724627aea0488", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 61285, "upload_time": "2019-11-05T21:05:31", "upload_time_iso_8601": "2019-11-05T21:05:31.620229Z", "url": "https://files.pythonhosted.org/packages/69/fc/6672a03f0e291cdd4fa926c91c53a0dca33cdd825504338393aed5c8761c/bento_cli-0.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e377ca7e2bd60400ac5040ec4776c17", "sha256": "c2d0d5189fd9d9e0ebceaa7bfae1ad80b8034db2c40cb74f54116ccbceae02d8" }, "downloads": -1, "filename": "bento-cli-0.3.0.tar.gz", "has_sig": false, "md5_digest": "8e377ca7e2bd60400ac5040ec4776c17", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 47370, "upload_time": "2019-11-05T21:05:33", "upload_time_iso_8601": "2019-11-05T21:05:33.190745Z", "url": "https://files.pythonhosted.org/packages/14/be/a2e5ebd5165468014e9a1639e769d39c73a42ea5d0a63a661a03596731ba/bento-cli-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "aa9e84c17b7f40664e320e9fa2df4d7d", "sha256": "ea067eab5690c2ec8137c01e343ab73f8266365a5b73709fe122fbdbd592dfbe" }, "downloads": -1, "filename": "bento_cli-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "aa9e84c17b7f40664e320e9fa2df4d7d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 61422, "upload_time": "2019-11-08T22:09:03", "upload_time_iso_8601": "2019-11-08T22:09:03.320997Z", "url": "https://files.pythonhosted.org/packages/42/2d/d8db59ea56c95f85a0affe148cfdaf6b01ce249ad10b798ec50ddb1a44f7/bento_cli-0.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "adf66df0ee13bc7d882f9327058d07e8", "sha256": "76a00fc8b4add1f9cb22ff256da81b76c7ca5e6c8fa3ac925d02ef2f8f3340c1" }, "downloads": -1, "filename": "bento-cli-0.3.1.tar.gz", "has_sig": false, "md5_digest": "adf66df0ee13bc7d882f9327058d07e8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 47621, "upload_time": "2019-11-08T22:09:05", "upload_time_iso_8601": "2019-11-08T22:09:05.022496Z", "url": "https://files.pythonhosted.org/packages/5e/63/e2e85247f2aad7dc6a969d6065e87c83f2ad199f2c414156cbcbd3b77877/bento-cli-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "68024b439d5b3c29fe50e11f4a74fdd1", "sha256": "ac57a343252787ad7cc2e15a4b53cbd61e1dcbb3811ac9c8d679a14144d90b7c" }, "downloads": -1, "filename": "bento_cli-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "68024b439d5b3c29fe50e11f4a74fdd1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 68099, "upload_time": "2019-11-12T23:38:55", "upload_time_iso_8601": "2019-11-12T23:38:55.913500Z", "url": "https://files.pythonhosted.org/packages/55/ae/631cd514345558cb788e0742bfdab91583b2dacc11c1bd39ab97966b6043/bento_cli-0.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2632286422a340642e6609c423a0d8a3", "sha256": "239018bd812ba8c825c866cf409572e09eda5571d64e5cbbf13346e39fff8d5e" }, "downloads": -1, "filename": "bento-cli-0.4.0.tar.gz", "has_sig": false, "md5_digest": "2632286422a340642e6609c423a0d8a3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 52669, "upload_time": "2019-11-12T23:38:57", "upload_time_iso_8601": "2019-11-12T23:38:57.800567Z", "url": "https://files.pythonhosted.org/packages/01/d8/cebdeb07c769d9825d5fa92d461bc372570f90f14bf78270cde2ca9a7aa9/bento-cli-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "5956ccfd55ad0d1171becb5dc2eeb899", "sha256": "a2cedf6e071807cae1a2bfb3b469db1c92f7d444c4fb4f22416854ff0801cab9" }, "downloads": -1, "filename": "bento_cli-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5956ccfd55ad0d1171becb5dc2eeb899", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 68146, "upload_time": "2019-11-14T23:46:09", "upload_time_iso_8601": "2019-11-14T23:46:09.370909Z", "url": "https://files.pythonhosted.org/packages/de/95/17d51134675847ec41aefa1ca5ff0ab09f73267e3455a7100343ee95fa2e/bento_cli-0.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a09d108dd1fbe6506f7babd3e93e444", "sha256": "499deec29c87d0e1b62c375bfc722401ce090c360b69f7f19a9bf41c8d176171" }, "downloads": -1, "filename": "bento-cli-0.4.1.tar.gz", "has_sig": false, "md5_digest": "7a09d108dd1fbe6506f7babd3e93e444", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 52762, "upload_time": "2019-11-14T23:46:11", "upload_time_iso_8601": "2019-11-14T23:46:11.243102Z", "url": "https://files.pythonhosted.org/packages/9e/96/b886faf46b35ed2d9dd167b37965dc984ec7fcf9c6fd4bd6259d208e0664/bento-cli-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "9f8880833719b7ea1f94111aefb16e37", "sha256": "80230ebf5efb52da925a03a379f817f2707f840213f4736aebc5cc257e2cfe54" }, "downloads": -1, "filename": "bento_cli-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9f8880833719b7ea1f94111aefb16e37", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 78525, "upload_time": "2019-11-19T18:50:13", "upload_time_iso_8601": "2019-11-19T18:50:13.296213Z", "url": "https://files.pythonhosted.org/packages/5f/97/7111b43e9711ebe02e9adf0c8277556f117bd122e4b89997f0102301f166/bento_cli-0.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "deea195ec6698a4aaf7ff6a2dcd2d75a", "sha256": "be9d8937d5baeb73d147e2381da1bdd9c527e3b236673991b3c9a9b301e9ffe2" }, "downloads": -1, "filename": "bento-cli-0.5.0.tar.gz", "has_sig": false, "md5_digest": "deea195ec6698a4aaf7ff6a2dcd2d75a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 61096, "upload_time": "2019-11-19T18:50:15", "upload_time_iso_8601": "2019-11-19T18:50:15.280452Z", "url": "https://files.pythonhosted.org/packages/a7/be/a983b6f12d78e4103d9b07d63178fa810c2ffcf1f60e63841047e83eca44/bento-cli-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "761f9f57117820df43f3c9d358c53f0e", "sha256": "a436a29874a9c2ce60e335760198e0dd0a82f638aeb755a3e7f734f18b86cf39" }, "downloads": -1, "filename": "bento_cli-0.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "761f9f57117820df43f3c9d358c53f0e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 89839, "upload_time": "2019-11-27T01:29:51", "upload_time_iso_8601": "2019-11-27T01:29:51.876813Z", "url": "https://files.pythonhosted.org/packages/fd/b7/bc4d6bff31794d48e1c04dfb3b06bc4b4a3a0044b900abf0bc4831ba54f0/bento_cli-0.6.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2a6337282ee8033fc4620bb55fee1f4", "sha256": "b66c69b25f55da76cb5f813fc9800a0d26e30fe77e25392e12efbbfe51eb2e7f" }, "downloads": -1, "filename": "bento-cli-0.6.1.tar.gz", "has_sig": false, "md5_digest": "f2a6337282ee8033fc4620bb55fee1f4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 70102, "upload_time": "2019-11-27T01:29:55", "upload_time_iso_8601": "2019-11-27T01:29:55.877737Z", "url": "https://files.pythonhosted.org/packages/f2/36/95fd0dd9427e4f1404623f13a0c6eba92e60690dfacc58951a3d9d746eb9/bento-cli-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "931442a9fdd00907fa0304472a8e5a69", "sha256": "3d7d54b05641aa4fd0e31fa2a76e940ed61807cdf20a167524a9734b409f9cfd" }, "downloads": -1, "filename": "bento_cli-0.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "931442a9fdd00907fa0304472a8e5a69", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 90752, "upload_time": "2019-12-07T01:05:18", "upload_time_iso_8601": "2019-12-07T01:05:18.918871Z", "url": "https://files.pythonhosted.org/packages/65/e6/1590f9b914c29a39bf5c3d47782a5673ae79b9407efab21bb639aaf8af8e/bento_cli-0.6.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "771b4affc267612828c0f82ecd872d66", "sha256": "21a0d4c858affee714d5c1109fa2dc7dcae4eb35da8ad3ea977475a9956f6b0f" }, "downloads": -1, "filename": "bento-cli-0.6.2.tar.gz", "has_sig": false, "md5_digest": "771b4affc267612828c0f82ecd872d66", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 71618, "upload_time": "2019-12-07T01:05:20", "upload_time_iso_8601": "2019-12-07T01:05:20.943642Z", "url": "https://files.pythonhosted.org/packages/d2/9c/5f567d557596b36c7c46c8479442d50613be16ee815b16812ba11f466704/bento-cli-0.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "106a8e8e8ade8ca8b8a730c05e07d6d2", "sha256": "2b81bb1d9499e785b969cca75f42eb5a77b81b69268b4ed16d9d96e65ba73398" }, "downloads": -1, "filename": "bento_cli-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "106a8e8e8ade8ca8b8a730c05e07d6d2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 102884, "upload_time": "2019-12-12T21:56:55", "upload_time_iso_8601": "2019-12-12T21:56:55.022259Z", "url": "https://files.pythonhosted.org/packages/80/e8/722624fdb30d6dfe871d06e0d75d9f8e7735a41142b08bcfed5dc0e2b5b1/bento_cli-0.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ebe0296ecacd2afb2f6e81692e42760", "sha256": "4f6c6e320e364a6eefe197b7c699fe44a994dae9540cd143919c1d37ce4f9276" }, "downloads": -1, "filename": "bento-cli-0.7.0.tar.gz", "has_sig": false, "md5_digest": "3ebe0296ecacd2afb2f6e81692e42760", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 81973, "upload_time": "2019-12-12T21:56:56", "upload_time_iso_8601": "2019-12-12T21:56:56.631978Z", "url": "https://files.pythonhosted.org/packages/eb/97/510980798c35a58b2ba8d7f68c18248826d2e90099753bee1aa826fdb7ac/bento-cli-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "c6c6313434130953eeec71ce37f30650", "sha256": "126823cceb28a8853dfbed1a23f5f46632246e2edd4274ab60c1a6fa0c1d70d7" }, "downloads": -1, "filename": "bento_cli-0.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c6c6313434130953eeec71ce37f30650", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 119129, "upload_time": "2020-01-24T20:08:53", "upload_time_iso_8601": "2020-01-24T20:08:53.034160Z", "url": "https://files.pythonhosted.org/packages/76/cc/631b18147273179032816f2439d0b1f127371cce6d33c51f2d37efc7cd76/bento_cli-0.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "125ea11696c26a9144b6e94891728385", "sha256": "35b10270f5aee483d3d41d88387b0f87d13553862e15dec031b14b590d902c77" }, "downloads": -1, "filename": "bento-cli-0.8.0.tar.gz", "has_sig": false, "md5_digest": "125ea11696c26a9144b6e94891728385", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 95915, "upload_time": "2020-01-24T20:08:55", "upload_time_iso_8601": "2020-01-24T20:08:55.246527Z", "url": "https://files.pythonhosted.org/packages/f4/02/73b41de01f964c7ed1df52ef95361c76d34c0f64a4393f8e4c4b7fa4c9ba/bento-cli-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "7d76027970087e3a48f97307ba4bc6db", "sha256": "566029df62dd28ad84c580731735897b6dead1589ab763af0c28afa2a36d8e0d" }, "downloads": -1, "filename": "bento_cli-0.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7d76027970087e3a48f97307ba4bc6db", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 121452, "upload_time": "2020-01-31T21:56:49", "upload_time_iso_8601": "2020-01-31T21:56:49.871026Z", "url": "https://files.pythonhosted.org/packages/dc/16/5604d5677ddf8ec7306df49d993aadac3d459fd81abdf3856d16f0b4029a/bento_cli-0.8.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e949ef01a69ab7a5caf3ccdaaa67a30", "sha256": "3a8176e241c6098bba427e9ecc72ce4b5f4436930d04c5f56e04aaf9d2fb0f2e" }, "downloads": -1, "filename": "bento-cli-0.8.1.tar.gz", "has_sig": false, "md5_digest": "7e949ef01a69ab7a5caf3ccdaaa67a30", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 97892, "upload_time": "2020-01-31T21:56:52", "upload_time_iso_8601": "2020-01-31T21:56:52.139227Z", "url": "https://files.pythonhosted.org/packages/f6/30/5f21f6c4ab5ac004cb871998ab4123c7559b3ac69cbeb49c37bdbad976d8/bento-cli-0.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "145ffa20dc6f0e2281cf4e7f1cf7d178", "sha256": "0ed8a44f53db085cceec8445d228ca85fb8018b198768267a61a298ae2e1c406" }, "downloads": -1, "filename": "bento_cli-0.8.2-py3-none-any.whl", "has_sig": false, "md5_digest": "145ffa20dc6f0e2281cf4e7f1cf7d178", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 123020, "upload_time": "2020-02-06T22:26:58", "upload_time_iso_8601": "2020-02-06T22:26:58.897548Z", "url": "https://files.pythonhosted.org/packages/fd/1f/f853289f105703a7ce26367e5d1672365b3da6ef429eb9fdbbd72189844b/bento_cli-0.8.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21a985117fa3566d75455c3e99e2a2b1", "sha256": "d816b84536c00c7b6c8970dbe4357b5df8179de2f6bc66576f3cc1dfbab2ab14" }, "downloads": -1, "filename": "bento-cli-0.8.2.tar.gz", "has_sig": false, "md5_digest": "21a985117fa3566d75455c3e99e2a2b1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 99253, "upload_time": "2020-02-06T22:27:00", "upload_time_iso_8601": "2020-02-06T22:27:00.873381Z", "url": "https://files.pythonhosted.org/packages/c7/c0/7bafb18a6ad271880f84e7c7d343a87b246ed2b9c51b0a068ae5be5cb682/bento-cli-0.8.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "4fe916bc4e5771e2dac65440dac6fc0c", "sha256": "44ac0650a6953c8b52798484441558b16bc9f5a29efa4654d5a116581b25bbfe" }, "downloads": -1, "filename": "bento_cli-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4fe916bc4e5771e2dac65440dac6fc0c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 112326, "upload_time": "2020-02-14T04:01:11", "upload_time_iso_8601": "2020-02-14T04:01:11.689582Z", "url": "https://files.pythonhosted.org/packages/9d/3f/f4ccacfff760954bf42daad1869c6a32ac51e4b3f491646daaa40cc2c9a2/bento_cli-0.9.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5194a01bc36561bef159cc028a5ec283", "sha256": "5318751aa6125bfedcba21d223065fee60751081a02421b879639ba7a3b15187" }, "downloads": -1, "filename": "bento-cli-0.9.0.tar.gz", "has_sig": false, "md5_digest": "5194a01bc36561bef159cc028a5ec283", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 87959, "upload_time": "2020-02-14T04:01:09", "upload_time_iso_8601": "2020-02-14T04:01:09.653180Z", "url": "https://files.pythonhosted.org/packages/29/a7/359f549c24d1bfe1efdce75e2d445754d5317cd6cc664daee9b1818a3fdf/bento-cli-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "a6bbe1140ffcc0c20515f9eda02ce1b6", "sha256": "cff4769fa92ccd8f8f8dd847ceff5f7112c1f54899d4b56e741347d30dda58c2" }, "downloads": -1, "filename": "bento_cli-0.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a6bbe1140ffcc0c20515f9eda02ce1b6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 117002, "upload_time": "2020-02-14T21:20:46", "upload_time_iso_8601": "2020-02-14T21:20:46.801666Z", "url": "https://files.pythonhosted.org/packages/9b/ef/2f3fd7452a23ea387290d09ed740fbbcfea51833ed779e6aab45dab935a5/bento_cli-0.9.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7d23d686c9aa566ef675dbfa78b9703", "sha256": "e74e8687e21dc1f886f071ed66c38cc634f219a97efd87c832a056d842e68b4e" }, "downloads": -1, "filename": "bento-cli-0.9.1.tar.gz", "has_sig": false, "md5_digest": "b7d23d686c9aa566ef675dbfa78b9703", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 98150, "upload_time": "2020-02-14T21:20:44", "upload_time_iso_8601": "2020-02-14T21:20:44.089571Z", "url": "https://files.pythonhosted.org/packages/7a/16/365fc81abac94e4f4a1d18a61f41e6773d7ab9960c6b633a3a9decc4194f/bento-cli-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.2b1": [ { "comment_text": "", "digests": { "md5": "34cc739b85d5197fd530bc6cd87974bf", "sha256": "7cd8d835c32d7a8a8b25e954f17f62b0bf59876add03acc612c2905e3edc2281" }, "downloads": -1, "filename": "bento_cli-0.9.2b1-py3-none-any.whl", "has_sig": false, "md5_digest": "34cc739b85d5197fd530bc6cd87974bf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 112046, "upload_time": "2020-02-21T01:18:46", "upload_time_iso_8601": "2020-02-21T01:18:46.776755Z", "url": "https://files.pythonhosted.org/packages/20/c1/c0d71ff203137328da4f496eb137b09a52393f7a2a63534c6592293bec4d/bento_cli-0.9.2b1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d542fefab8d811a8188c3916f6816ab", "sha256": "316326f42812ae59e6e1f4fe2c3799ff939226e8f0a4d2ec95c02c4094730646" }, "downloads": -1, "filename": "bento-cli-0.9.2b1.tar.gz", "has_sig": false, "md5_digest": "3d542fefab8d811a8188c3916f6816ab", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 87870, "upload_time": "2020-02-21T01:18:44", "upload_time_iso_8601": "2020-02-21T01:18:44.933582Z", "url": "https://files.pythonhosted.org/packages/a9/87/721ae8a30ae3a60557625792314c81116081d586c9f82637c0d6a1fb6cd5/bento-cli-0.9.2b1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "78a4381a8ae89419392afc8defc0af91", "sha256": "d5fad36c1d15ca72fd6f4b9258190fce24af1b61e148705b141fae67a66a75d1" }, "downloads": -1, "filename": "bento_cli-0.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "78a4381a8ae89419392afc8defc0af91", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 119478, "upload_time": "2020-05-08T22:15:34", "upload_time_iso_8601": "2020-05-08T22:15:34.104718Z", "url": "https://files.pythonhosted.org/packages/77/48/a8475ee524269173fc88c042d4fdcb07167a033c9c58f7b38d92e570ffe6/bento_cli-0.12.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5568af9bf01cb6b55f7a11a3ebda3b12", "sha256": "3f0548a257b61fbf30ef60940472c08974b17dfa69e324d8871611317f75baa3" }, "downloads": -1, "filename": "bento-cli-0.12.0.tar.gz", "has_sig": false, "md5_digest": "5568af9bf01cb6b55f7a11a3ebda3b12", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 91948, "upload_time": "2020-05-08T22:15:32", "upload_time_iso_8601": "2020-05-08T22:15:32.890353Z", "url": "https://files.pythonhosted.org/packages/5a/fd/09a8c7f1bec079c2c0334f6bed70d999a74e9b59a2cd0c013f9fc744187c/bento-cli-0.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }