frappe-bench


Namefrappe-bench JSON
Version 5.22.6 PyPI version JSON
download
home_pageNone
SummaryCLI to manage Multi-tenant deployments for Frappe apps
upload_time2024-05-08 04:50:11
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
	<img src="https://github.com/frappe/design/raw/master/logos/png/bench-logo.png" height="128">
	<h2>Bench</h2>
</div>

Bench is a command-line utility that helps you to install, update, and manage multiple sites for Frappe/ERPNext applications on [*nix systems](https://en.wikipedia.org/wiki/Unix-like) for development and production.

<div align="center">
	<a target="_blank" href="https://www.python.org/downloads/" title="Python version">
		<img src="https://img.shields.io/badge/python-%3E=_3.8-green.svg">
	</a>
	<a target="_blank" href="https://app.travis-ci.com/github/frappe/bench" title="CI Status">
		<img src="https://app.travis-ci.com/frappe/bench.svg?branch=develop">
	</a>
	<a target="_blank" href="https://pypi.org/project/frappe-bench" title="PyPI Version">
		<img src="https://badge.fury.io/py/frappe-bench.svg" alt="PyPI version">
	</a>
	<a target="_blank" title="Platform Compatibility">
		<img src="https://img.shields.io/badge/platform-linux%20%7C%20osx-blue">
	</a>
	<a target="_blank" href="https://app.fossa.com/projects/git%2Bgithub.com%2Ffrappe%2Fbench?ref=badge_shield" title="FOSSA Status">
		<img src="https://app.fossa.com/api/projects/git%2Bgithub.com%2Ffrappe%2Fbench.svg?type=shield">
	</a>
	<a target="_blank" href="#LICENSE" title="License: GPLv3">
		<img src="https://img.shields.io/badge/License-GPLv3-blue.svg">
	</a>
</div>

## Table of Contents

- [Table of Contents](#table-of-contents)
- [Installation](#installation)
	- [Containerized Installation](#containerized-installation)
	- [Easy Install Script](#easy-install-script)
		- [Setup](#setup)
		- [Arguments](#arguments)
		- [Troubleshooting](#troubleshooting)
	- [Manual Installation](#manual-installation)
- [Basic Usage](#basic-usage)
- [Custom Bench Commands](#custom-bench-commands)
- [Guides](#guides)
- [Resources](#resources)
- [Development](#development)
- [Releases](#releases)
- [License](#license)


## Installation

A typical bench setup provides two types of environments &mdash; Development and Production.

The setup for each of these installations can be achieved in multiple ways:

 - [Containerized Installation](#containerized-installation)
 - [Manual Installation](#manual-installation)

We recommend using Docker Installation to setup a Production Environment. For Development, you may choose either of the two methods to setup an instance.

Otherwise, if you are looking to evaluate Frappe apps without hassle of hosting, you can try them [on frappecloud.com](https://frappecloud.com/).


### Containerized Installation

A Frappe/ERPNext instance can be setup and replicated easily using [Docker](https://docker.com). The officially supported Docker installation can be used to setup either of both Development and Production environments.

To setup either of the environments, you will need to clone the official docker repository:

```sh
$ git clone https://github.com/frappe/frappe_docker.git
$ cd frappe_docker
```

A quick setup guide for both the environments can be found below. For more details, check out the [Frappe/ERPNext Docker Repository](https://github.com/frappe/frappe_docker).

### Easy Install Script

The Easy Install script should get you going with a Frappe/ERPNext setup with minimal manual intervention and effort.

This script uses Docker with the [Frappe/ERPNext Docker Repository](https://github.com/frappe/frappe_docker) and can be used for both Development setup and Production setup.

#### Setup

Download the Easy Install script and execute it:

```sh
$ wget https://raw.githubusercontent.com/frappe/bench/develop/easy-install.py
$ python3 easy-install.py --prod --email your@email.tld
```

This script will install docker on your system and will fetch the required containers, setup bench and a default ERPNext instance.

The script will generate MySQL root password and an Administrator password for the Frappe/ERPNext instance, which will then be saved under `$HOME/passwords.txt` of the user used to setup the instance.
It will also generate a new compose file under `$HOME/<project-name>-compose.yml`.

When the setup is complete, you will be able to access the system at `http://<your-server-ip>`, wherein you can use the Administrator password to login.

#### Arguments

Here are the arguments for the easy-install script

```txt
usage: easy-install.py [-h] [-p] [-d] [-s SITENAME] [-n PROJECT] [--email EMAIL]

Install Frappe with Docker

options:
  -h, --help            		show this help message and exit
  -p, --prod            		Setup Production System
  -d, --dev             		Setup Development System
  -s SITENAME, --sitename SITENAME      The Site Name for your production site
  -n PROJECT, --project PROJECT         Project Name
  --email EMAIL         		Add email for the SSL.
```

#### Troubleshooting

In case the setup fails, the log file is saved under `$HOME/easy-install.log`. You may then

- Create an Issue in this repository with the log file attached.

### Manual Installation

Some might want to manually setup a bench instance locally for development. To quickly get started on installing bench the hard way, you can follow the guide on [Installing Bench and the Frappe Framework](https://frappe.io/docs/user/en/installation).

You'll have to set up the system dependencies required for setting up a Frappe Environment. Checkout [docs/installation](https://github.com/frappe/bench/blob/develop/docs/installation.md) for more information on this. If you've already set up, install bench via pip:


```sh
$ pip install frappe-bench
```


## Basic Usage

**Note:** Apart from `bench init`, all other bench commands are expected to be run in the respective bench directory.

 * Create a new bench:

	```sh
	$ bench init [bench-name]
	```

 * Add a site under current bench:

	```sh
	$ bench new-site [site-name]
	```
	- **Optional**: If the database for the site does not reside on localhost or listens on a custom port, you can use the flags `--db-host` to set a custom host and/or `--db-port` to set a custom port.

		```sh
		$ bench new-site [site-name] --db-host [custom-db-host-ip] --db-port [custom-db-port]
		```

 * Download and add applications to bench:

	```sh
	$ bench get-app [app-name] [app-link]
	```

 * Install apps on a particular site

	```sh
	$ bench --site [site-name] install-app [app-name]
	```

 * Start bench (only for development)

	```sh
	$ bench start
	```

 * Show bench help:

	```sh
	$ bench --help
	```


For more in-depth information on commands and their usage, follow [Commands and Usage](https://github.com/frappe/bench/blob/develop/docs/commands_and_usage.md). As for a consolidated list of bench commands, check out [Bench Usage](https://github.com/frappe/bench/blob/develop/docs/bench_usage.md).


## Custom Bench Commands

If you wish to extend the capabilities of bench with your own custom Frappe Application, you may follow [Adding Custom Bench Commands](https://github.com/frappe/bench/blob/develop/docs/bench_custom_cmd.md).


## Guides

- [Configuring HTTPS](https://frappe.io/docs/user/en/bench/guides/configuring-https.html)
- [Using Let's Encrypt to setup HTTPS](https://frappe.io/docs/user/en/bench/guides/lets-encrypt-ssl-setup.html)
- [Diagnosing the Scheduler](https://frappe.io/docs/user/en/bench/guides/diagnosing-the-scheduler.html)
- [Change Hostname](https://frappe.io/docs/user/en/bench/guides/adding-custom-domains)
- [Manual Setup](https://frappe.io/docs/user/en/bench/guides/manual-setup.html)
- [Setup Production](https://frappe.io/docs/user/en/bench/guides/setup-production.html)
- [Setup Multitenancy](https://frappe.io/docs/user/en/bench/guides/setup-multitenancy.html)
- [Stopping Production](https://github.com/frappe/bench/wiki/Stopping-Production-and-starting-Development)

For an exhaustive list of guides, check out [Bench Guides](https://frappe.io/docs/user/en/bench/guides).


## Resources

- [Bench Commands Cheat Sheet](https://frappe.io/docs/user/en/bench/resources/bench-commands-cheatsheet.html)
- [Background Services](https://frappe.io/docs/user/en/bench/resources/background-services.html)
- [Bench Procfile](https://frappe.io/docs/user/en/bench/resources/bench-procfile.html)

For an exhaustive list of resources, check out [Bench Resources](https://frappe.io/docs/user/en/bench/resources).


## Development

To contribute and develop on the bench CLI tool, clone this repo and create an editable install. In editable mode, you may get the following warning everytime you run a bench command:

	WARN: bench is installed in editable mode!

	This is not the recommended mode of installation for production. Instead, install the package from PyPI with: `pip install frappe-bench`


```sh
$ git clone https://github.com/frappe/bench ~/bench-repo
$ pip3 install -e ~/bench-repo
$ bench src
/Users/frappe/bench-repo
```

To clear up the editable install and switch to a stable version of bench, uninstall via pip and delete the corresponding egg file from the python path.


```sh
# Delete bench installed in editable install
$ rm -r $(find ~ -name '*.egg-info')
$ pip3 uninstall frappe-bench

# Install latest released version of bench
$ pip3 install -U frappe-bench
```

To confirm the switch, check the output of `bench src`. It should change from something like `$HOME/bench-repo` to `/usr/local/lib/python3.6/dist-packages` and stop the editable install warnings from getting triggered at every command.


## Releases

Bench's version information can be accessed via `bench.VERSION` in the package's __init__.py file. Eversince the v5.0 release, we've started publishing releases on GitHub, and PyPI.

GitHub: https://github.com/frappe/bench/releases

PyPI: https://pypi.org/project/frappe-bench


From v5.3.0, we partially automated the release process using [@semantic-release](.github/workflows/release.yml). Under this new pipeline, we do the following steps to make a release:

1. Merge `develop` into the `staging` branch
1. Merge `staging` into the latest stable branch, which is `v5.x` at this point.

This triggers a GitHub Action job that generates a bump commit, drafts and generates a GitHub release, builds a Python package and publishes it to PyPI.

The intermediate `staging` branch exists to mediate the `bench.VERSION` conflict that would arise while merging `develop` and stable. On develop, the version has to be manually updated (for major release changes). The version tag plays a role in deciding when checks have to be made for new Bench releases.

> Note: We may want to kill the convention of separate branches for different version releases of Bench. We don't need to maintain this the way we do for Frappe & ERPNext. A single branch named `stable` would sustain.

## License

This repository has been released under the [GNU GPLv3 License](LICENSE).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "frappe-bench",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Frappe Technologies Pvt Ltd <developers@frappe.io>",
    "download_url": "https://files.pythonhosted.org/packages/09/cc/705c9ea3791155cd3ee021a3c14d869e7e8bfed5bb6fd213b1005952d976/frappe_bench-5.22.6.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n\t<img src=\"https://github.com/frappe/design/raw/master/logos/png/bench-logo.png\" height=\"128\">\n\t<h2>Bench</h2>\n</div>\n\nBench is a command-line utility that helps you to install, update, and manage multiple sites for Frappe/ERPNext applications on [*nix systems](https://en.wikipedia.org/wiki/Unix-like) for development and production.\n\n<div align=\"center\">\n\t<a target=\"_blank\" href=\"https://www.python.org/downloads/\" title=\"Python version\">\n\t\t<img src=\"https://img.shields.io/badge/python-%3E=_3.8-green.svg\">\n\t</a>\n\t<a target=\"_blank\" href=\"https://app.travis-ci.com/github/frappe/bench\" title=\"CI Status\">\n\t\t<img src=\"https://app.travis-ci.com/frappe/bench.svg?branch=develop\">\n\t</a>\n\t<a target=\"_blank\" href=\"https://pypi.org/project/frappe-bench\" title=\"PyPI Version\">\n\t\t<img src=\"https://badge.fury.io/py/frappe-bench.svg\" alt=\"PyPI version\">\n\t</a>\n\t<a target=\"_blank\" title=\"Platform Compatibility\">\n\t\t<img src=\"https://img.shields.io/badge/platform-linux%20%7C%20osx-blue\">\n\t</a>\n\t<a target=\"_blank\" href=\"https://app.fossa.com/projects/git%2Bgithub.com%2Ffrappe%2Fbench?ref=badge_shield\" title=\"FOSSA Status\">\n\t\t<img src=\"https://app.fossa.com/api/projects/git%2Bgithub.com%2Ffrappe%2Fbench.svg?type=shield\">\n\t</a>\n\t<a target=\"_blank\" href=\"#LICENSE\" title=\"License: GPLv3\">\n\t\t<img src=\"https://img.shields.io/badge/License-GPLv3-blue.svg\">\n\t</a>\n</div>\n\n## Table of Contents\n\n- [Table of Contents](#table-of-contents)\n- [Installation](#installation)\n\t- [Containerized Installation](#containerized-installation)\n\t- [Easy Install Script](#easy-install-script)\n\t\t- [Setup](#setup)\n\t\t- [Arguments](#arguments)\n\t\t- [Troubleshooting](#troubleshooting)\n\t- [Manual Installation](#manual-installation)\n- [Basic Usage](#basic-usage)\n- [Custom Bench Commands](#custom-bench-commands)\n- [Guides](#guides)\n- [Resources](#resources)\n- [Development](#development)\n- [Releases](#releases)\n- [License](#license)\n\n\n## Installation\n\nA typical bench setup provides two types of environments &mdash; Development and Production.\n\nThe setup for each of these installations can be achieved in multiple ways:\n\n - [Containerized Installation](#containerized-installation)\n - [Manual Installation](#manual-installation)\n\nWe recommend using Docker Installation to setup a Production Environment. For Development, you may choose either of the two methods to setup an instance.\n\nOtherwise, if you are looking to evaluate Frappe apps without hassle of hosting, you can try them [on frappecloud.com](https://frappecloud.com/).\n\n\n### Containerized Installation\n\nA Frappe/ERPNext instance can be setup and replicated easily using [Docker](https://docker.com). The officially supported Docker installation can be used to setup either of both Development and Production environments.\n\nTo setup either of the environments, you will need to clone the official docker repository:\n\n```sh\n$ git clone https://github.com/frappe/frappe_docker.git\n$ cd frappe_docker\n```\n\nA quick setup guide for both the environments can be found below. For more details, check out the [Frappe/ERPNext Docker Repository](https://github.com/frappe/frappe_docker).\n\n### Easy Install Script\n\nThe Easy Install script should get you going with a Frappe/ERPNext setup with minimal manual intervention and effort.\n\nThis script uses Docker with the [Frappe/ERPNext Docker Repository](https://github.com/frappe/frappe_docker) and can be used for both Development setup and Production setup.\n\n#### Setup\n\nDownload the Easy Install script and execute it:\n\n```sh\n$ wget https://raw.githubusercontent.com/frappe/bench/develop/easy-install.py\n$ python3 easy-install.py --prod --email your@email.tld\n```\n\nThis script will install docker on your system and will fetch the required containers, setup bench and a default ERPNext instance.\n\nThe script will generate MySQL root password and an Administrator password for the Frappe/ERPNext instance, which will then be saved under `$HOME/passwords.txt` of the user used to setup the instance.\nIt will also generate a new compose file under `$HOME/<project-name>-compose.yml`.\n\nWhen the setup is complete, you will be able to access the system at `http://<your-server-ip>`, wherein you can use the Administrator password to login.\n\n#### Arguments\n\nHere are the arguments for the easy-install script\n\n```txt\nusage: easy-install.py [-h] [-p] [-d] [-s SITENAME] [-n PROJECT] [--email EMAIL]\n\nInstall Frappe with Docker\n\noptions:\n  -h, --help            \t\tshow this help message and exit\n  -p, --prod            \t\tSetup Production System\n  -d, --dev             \t\tSetup Development System\n  -s SITENAME, --sitename SITENAME      The Site Name for your production site\n  -n PROJECT, --project PROJECT         Project Name\n  --email EMAIL         \t\tAdd email for the SSL.\n```\n\n#### Troubleshooting\n\nIn case the setup fails, the log file is saved under `$HOME/easy-install.log`. You may then\n\n- Create an Issue in this repository with the log file attached.\n\n### Manual Installation\n\nSome might want to manually setup a bench instance locally for development. To quickly get started on installing bench the hard way, you can follow the guide on [Installing Bench and the Frappe Framework](https://frappe.io/docs/user/en/installation).\n\nYou'll have to set up the system dependencies required for setting up a Frappe Environment. Checkout [docs/installation](https://github.com/frappe/bench/blob/develop/docs/installation.md) for more information on this. If you've already set up, install bench via pip:\n\n\n```sh\n$ pip install frappe-bench\n```\n\n\n## Basic Usage\n\n**Note:** Apart from `bench init`, all other bench commands are expected to be run in the respective bench directory.\n\n * Create a new bench:\n\n\t```sh\n\t$ bench init [bench-name]\n\t```\n\n * Add a site under current bench:\n\n\t```sh\n\t$ bench new-site [site-name]\n\t```\n\t- **Optional**: If the database for the site does not reside on localhost or listens on a custom port, you can use the flags `--db-host` to set a custom host and/or `--db-port` to set a custom port.\n\n\t\t```sh\n\t\t$ bench new-site [site-name] --db-host [custom-db-host-ip] --db-port [custom-db-port]\n\t\t```\n\n * Download and add applications to bench:\n\n\t```sh\n\t$ bench get-app [app-name] [app-link]\n\t```\n\n * Install apps on a particular site\n\n\t```sh\n\t$ bench --site [site-name] install-app [app-name]\n\t```\n\n * Start bench (only for development)\n\n\t```sh\n\t$ bench start\n\t```\n\n * Show bench help:\n\n\t```sh\n\t$ bench --help\n\t```\n\n\nFor more in-depth information on commands and their usage, follow [Commands and Usage](https://github.com/frappe/bench/blob/develop/docs/commands_and_usage.md). As for a consolidated list of bench commands, check out [Bench Usage](https://github.com/frappe/bench/blob/develop/docs/bench_usage.md).\n\n\n## Custom Bench Commands\n\nIf you wish to extend the capabilities of bench with your own custom Frappe Application, you may follow [Adding Custom Bench Commands](https://github.com/frappe/bench/blob/develop/docs/bench_custom_cmd.md).\n\n\n## Guides\n\n- [Configuring HTTPS](https://frappe.io/docs/user/en/bench/guides/configuring-https.html)\n- [Using Let's Encrypt to setup HTTPS](https://frappe.io/docs/user/en/bench/guides/lets-encrypt-ssl-setup.html)\n- [Diagnosing the Scheduler](https://frappe.io/docs/user/en/bench/guides/diagnosing-the-scheduler.html)\n- [Change Hostname](https://frappe.io/docs/user/en/bench/guides/adding-custom-domains)\n- [Manual Setup](https://frappe.io/docs/user/en/bench/guides/manual-setup.html)\n- [Setup Production](https://frappe.io/docs/user/en/bench/guides/setup-production.html)\n- [Setup Multitenancy](https://frappe.io/docs/user/en/bench/guides/setup-multitenancy.html)\n- [Stopping Production](https://github.com/frappe/bench/wiki/Stopping-Production-and-starting-Development)\n\nFor an exhaustive list of guides, check out [Bench Guides](https://frappe.io/docs/user/en/bench/guides).\n\n\n## Resources\n\n- [Bench Commands Cheat Sheet](https://frappe.io/docs/user/en/bench/resources/bench-commands-cheatsheet.html)\n- [Background Services](https://frappe.io/docs/user/en/bench/resources/background-services.html)\n- [Bench Procfile](https://frappe.io/docs/user/en/bench/resources/bench-procfile.html)\n\nFor an exhaustive list of resources, check out [Bench Resources](https://frappe.io/docs/user/en/bench/resources).\n\n\n## Development\n\nTo contribute and develop on the bench CLI tool, clone this repo and create an editable install. In editable mode, you may get the following warning everytime you run a bench command:\n\n\tWARN: bench is installed in editable mode!\n\n\tThis is not the recommended mode of installation for production. Instead, install the package from PyPI with: `pip install frappe-bench`\n\n\n```sh\n$ git clone https://github.com/frappe/bench ~/bench-repo\n$ pip3 install -e ~/bench-repo\n$ bench src\n/Users/frappe/bench-repo\n```\n\nTo clear up the editable install and switch to a stable version of bench, uninstall via pip and delete the corresponding egg file from the python path.\n\n\n```sh\n# Delete bench installed in editable install\n$ rm -r $(find ~ -name '*.egg-info')\n$ pip3 uninstall frappe-bench\n\n# Install latest released version of bench\n$ pip3 install -U frappe-bench\n```\n\nTo confirm the switch, check the output of `bench src`. It should change from something like `$HOME/bench-repo` to `/usr/local/lib/python3.6/dist-packages` and stop the editable install warnings from getting triggered at every command.\n\n\n## Releases\n\nBench's version information can be accessed via `bench.VERSION` in the package's __init__.py file. Eversince the v5.0 release, we've started publishing releases on GitHub, and PyPI.\n\nGitHub: https://github.com/frappe/bench/releases\n\nPyPI: https://pypi.org/project/frappe-bench\n\n\nFrom v5.3.0, we partially automated the release process using [@semantic-release](.github/workflows/release.yml). Under this new pipeline, we do the following steps to make a release:\n\n1. Merge `develop` into the `staging` branch\n1. Merge `staging` into the latest stable branch, which is `v5.x` at this point.\n\nThis triggers a GitHub Action job that generates a bump commit, drafts and generates a GitHub release, builds a Python package and publishes it to PyPI.\n\nThe intermediate `staging` branch exists to mediate the `bench.VERSION` conflict that would arise while merging `develop` and stable. On develop, the version has to be manually updated (for major release changes). The version tag plays a role in deciding when checks have to be made for new Bench releases.\n\n> Note: We may want to kill the convention of separate branches for different version releases of Bench. We don't need to maintain this the way we do for Frappe & ERPNext. A single branch named `stable` would sustain.\n\n## License\n\nThis repository has been released under the [GNU GPLv3 License](LICENSE).\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "CLI to manage Multi-tenant deployments for Frappe apps",
    "version": "5.22.6",
    "project_urls": {
        "Changelog": "https://github.com/frappe/bench/releases",
        "Documentation": "https://frappeframework.com/docs/user/en/bench",
        "Homepage": "https://frappe.io/bench",
        "Source": "https://github.com/frappe/bench"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59fc5acc5649b9e282b46e46cde60a36c6ad40f0e692831bc484effa88e7546c",
                "md5": "5cc2a300c88a73ed54f55e51c494c6ef",
                "sha256": "e6d6064b8cf572720dad25f59077879ccaba8a1f2dfc23dcf9d96685bb2f21fa"
            },
            "downloads": -1,
            "filename": "frappe_bench-5.22.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5cc2a300c88a73ed54f55e51c494c6ef",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 150982,
            "upload_time": "2024-05-08T04:50:09",
            "upload_time_iso_8601": "2024-05-08T04:50:09.014449Z",
            "url": "https://files.pythonhosted.org/packages/59/fc/5acc5649b9e282b46e46cde60a36c6ad40f0e692831bc484effa88e7546c/frappe_bench-5.22.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09cc705c9ea3791155cd3ee021a3c14d869e7e8bfed5bb6fd213b1005952d976",
                "md5": "c793a780a308d02da8ef12439c8e228a",
                "sha256": "a3dd5111281199075d616f62125eb636ab0d67b932c18ac014de1b5ba546734b"
            },
            "downloads": -1,
            "filename": "frappe_bench-5.22.6.tar.gz",
            "has_sig": false,
            "md5_digest": "c793a780a308d02da8ef12439c8e228a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 101049,
            "upload_time": "2024-05-08T04:50:11",
            "upload_time_iso_8601": "2024-05-08T04:50:11.374652Z",
            "url": "https://files.pythonhosted.org/packages/09/cc/705c9ea3791155cd3ee021a3c14d869e7e8bfed5bb6fd213b1005952d976/frappe_bench-5.22.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-08 04:50:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "frappe",
    "github_project": "bench",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "frappe-bench"
}
        
Elapsed time: 0.24502s