install-jdk


Nameinstall-jdk JSON
Version 1.0.4 PyPI version JSON
download
home_pagehttps://github.com/jyksnw/install-jdk
Summaryinstall-jdk allows you to easily install latest Java OpenJDK version. Supports OpenJDK builds from Adoptium (previously AdoptOpenJDK), Corretto, and Zulu. Simplify your Java development with the latest OpenJDK builds.
upload_time2023-04-05 13:13:51
maintainer
docs_urlNone
authorJason Snow
requires_python>=3.6,<4.0
licenseMIT
keywords java openjdk adoptopenjdk adoptium corretto zulu jdk jre
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
              # install-jdk

![Python Version](https://img.shields.io/pypi/pyversions/install-jdk) ![MI](https://img.shields.io/github/license/jyksnw/install-jdk) [![Release](https://github.com/jyksnw/install-jdk/actions/workflows/release.yml/badge.svg?branch=master)](https://github.com/jyksnw/install-jdk/actions/workflows/release.yml) [![CodeQL](https://github.com/jyksnw/install-jdk/actions/workflows/github-code-scanning/codeql/badge.svg?branch=master)](https://github.com/jyksnw/install-jdk/actions/workflows/github-code-scanning/codeql) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/309b149bb42643bbb08e01e6d0c553f9)](https://www.codacy.com/gh/jyksnw/install-jdk/dashboard?utm_source=github.com&utm_medium=referral&utm_content=jyksnw/install-jdk&utm_campaign=Badge_Grade) ![Commit History](https://img.shields.io/github/commit-activity/m/jyksnw/install-jdk) [![PyPI Downloads Badge](https://img.shields.io/pypi/dm/install-jdk.svg)](https://pypi.org/project/install-jdk/) [![PyPI Version Badge](https://img.shields.io/pypi/v/install-jdk.svg)](https://pypi.org/project/install-jdk/)

The `install-jdk` library is a Python package that simplifies the process of installing OpenJDK on Windows, macOS, Linux and other supported operating systems, saving time and effort. `install-jdk` is a useful tool for users, developers, and system administrators who need to set up Java development environment or runtime in an automated and repeatedable fashion.

`install-jdk` has no third-party dependencies and depends solely on the standard libraries found in Python3. This means that you can easily install and use the library without having to install any additional dependencies.

`install-jdk` aims to provide as many options as possible to install an OpenJDK Java version across a wide array of operating systems and architectures. Please see each vendors OpenJDK documentation to see what operating systems and architectures they support.

## Supported OpenJDK Build Vendors

| OpenJDK Build      | Status      | Vendor Tags                              | Vendor Documentation                                              | `install-jdk` Documentation                                                                    | Source Code                                                                                           |
| ------------------ | ----------- | ---------------------------------------- | ----------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
| Adoptium (default) | Implemented | Adoptium, Temurin, AdoptOpenJDK, eclipse | [Adoptium](https://adoptium.net/docs/)                            | [Adoptium Build Client docs](https://github.com/jyksnw/install-jdk/wiki/Adoptium-Build-Client) | [Adoptium Build Client src](https://github.com/jyksnw/install-jdk/blob/master/jdk/client/adoptium.py) |
| Corretto           | Implemented | Corretto, Amazon, AWS                    | [Corretto](https://docs.aws.amazon.com/corretto/index.html)       | [Corretto Build Client docs](https://github.com/jyksnw/install-jdk/wiki/Corretto-Build-Client) | [Corretto Build Client src](https://github.com/jyksnw/install-jdk/blob/master/jdk/client/corretto.py) |
| Microsoft          | Planning    | Microsoft                                | ...coming soon                                                    |                                                                                                |                                                                                                       |
| Azul               | Implemented | Azul, Zulu                               | [Azul Zulu](https://www.azul.com/downloads-new/?package=jdk#zulu) | ...coming soon                                                                                 | [Zulu Build Client src](https://github.com/jyksnw/install-jdk/blob/master/jdk/client/zulu.py)         |

install-jdk will do its best to detect the operating system and architecture that it is running on. Currently is able to detect:

- Operating Systems

  - Windows
  - Linux
  - MacOS
  - AIX

- Architecture
  - arm
  - aarch64
  - ppc64
  - x64
  - x86

## Installation

To install the install-jdk library, simply run the following command:

```bash
pip install install-jdk
```

## Usage

To use the `install-jdk` library, import it into your Python code:

```python
import jdk
```

The library provides an `install` function, which takes the following parameters:

- `version` - The major version of the Java OpenJDK build to install (e.g. 8, 11, 17, etc.).
- `operating_system` - The target operating system. If not specified, will use the user's detected operating system if possible.
- `arch` - The target architecure. If not specified, will use the user's detected architecture if possible.
- `impl` - The Java implementation to use. Currently only supports `HOTSPOT` and dependent on the OpenJDK Build Vendor.
- `jre` - A boolean value indicating that the Java Runtime Environment should be installed. Defaults to false, which will install the Java Development Kit.
- `path` - The location to install the downloaded OpenJDK build. If not specified, will install into `$HOME/.jdk/<VERSION>` for the Java Development Kit and `$HOME/.jre/<VERSION>` for the Java Runtime Environment.
- `vendor` - The vendor to download the OpenJDK build from. If not specified, defaults to [Adoptium](https://adoptium.com). This is a named argument so must be provided like `vendor='Corretto'`. Please see the list of [Supported OpenJDK Build Vendors](#supported-openjdk-build-vendors)

Here are some example code snippet:

```python
jdk.install('11')
# Platform dependent install of Java JDK 11 into $HOME/.jdk/<VERSION>

jdk.install('11', jre=True)
# Platform dependent install of Java JRE 11 into $HOME/.jre/<VERSION>

jdk.install('17', vendor='Corretto')
# Installs a Corretto build of Java 17 JDK. Defualt vendor is Adoptium

jdk.install('17', vendor='Corretto', path='/usr/local/jdk')
# Installs a Corretto build of Java 17 JDK into /usr/local/jdk
```

The library also has a `get_download_url` function that returns the URL for the given version, it takes the following parameters:

- `version` - The major version of the Java OpenJDK build to install (e.g. 8, 11, 17, etc.).
- `operating_system` - The target operating system. If not specified, will use the user's detected operating system if possible.
- `arch` - The target architecure. If not specified, will use the user's detected architecture if possible.
- `impl` - The Java implementation to use. Currently only supports `HOTSPOT` and dependent on the OpenJDK Build Vendor.
- `jre` - A boolean value indicating that the Java Runtime Environment should be installed. Defaults to false, which will install the Java Development Kit.
- `vendor` - The vendor to download the OpenJDK build from. If not specified, defaults to [Adoptium](https://adoptium.com). This is a named argument so must be provided like `vendor='Corretto'`. Please see the list of [Supported OpenJDK Build Vendors](#supported-openjdk-build-vendors)

Here are some example code snippets:

```python
from jdk.enums import OperatingSystem, Architecture

download_url = jdk.get_download_url('17', jre=True)
print(download_url)
# Obtains the platform dependent JRE download url

download_url = jdk.get_download_url('17', operating_system=OperatingSystem.LINUX, arch=Architecure.AARCH64, vendor='Corretto')
print(download_url)
# Obtains OpenJDK 17 from Corretto for Linux running on aarch64
```

The library has a `download` function that will download the requested version and returns back the path to where it was downloaded. This function does not currently support overriding the default download path which is the operating systems specific TMP directory. It takes the following parameters.

- `download_url` - The URL to the file to be downloaded. Defaults to None.
  - - `version` - Required when `download_version` is None and must be provided as a named parameter. The major version of the Java OpenJDK build to install (e.g. 8, 11, 17, etc.).
- `operating_system` - Must be provided as a named parameter. The target operating system. If not specified, will use the user's detected operating system if possible.
- `arch` - Must be provided as a named parameter. The target architecure. If not specified, will use the user's detected architecture if possible.
- `impl` - Must be provided as a named parameter. The Java implementation to use. Currently only supports `HOTSPOT` and dependent on the OpenJDK Build Vendor.
- `jre` - Must be provided as a named parameter. A boolean value indicating that the Java Runtime Environment should be installed. Defaults to false, which will install the Java Development Kit.
- `vendor` - The vendor to download the OpenJDK build from. If not specified, defaults to [Adoptium](https://adoptium.com). This is a named argument so must be provided like `vendor='Corretto'`. Please see the list of [Supported OpenJDK Build Vendors](#supported-openjdk-build-vendors)

Here are some example code snippets:

```python
from jdk.enums import OperatingSystem, Architecture

download_file = jdk.download('https://api.adoptium.net/v3/binary/latest/17/ga/windows/x64/jdk/hotspot/normal/eclipse')
print(download_file)
# Downloads the requested file and returns back the TMP locations it was stored in.

download_file = jdk.download(version='17', operating_system=OperatingSystem.LINUX, arch=Architecure.AARCH64, vendor='Corretto')
print(download_file)
# Downloads the a Linux aarch64 build of Java 17 from Corretto and returns back the TMP location it was stored in.
```

The library also provided two helper properties that can be used to see what it detected as the user's operating system and architecture.

```python
print(jdk.OS)
print(jdk.ARCH)
```

## Credits

The install-jdk library uses OpenJDK builds, and is created and maintained by [jyksnw](https://github.com/jyksnw).

_This was originally a port of the GitHub Action [`installjdk`](https://github.com/AdoptOpenJDK/install-jdk) but has morphed into something much more._

### Vendor Credits

- [Adoptium](https://adoptium.net/)
- [Corretto](https://aws.amazon.com/corretto/)
  - [Corretto Downloads](https://github.com/corretto/corretto-downloads)
- [Zulu](https://www.azul.com/downloads/?package=jdk)

## License

The `install-jdk` library is open-source and is distributed under the MIT license. See the [LICENSE](LICENSE.md) file for more information.

## Contribution

See [CONTRIBUTING](CONTRIBUTING.MD)

## Security contact information

To report a security vulnerability, please use the
[Tidelift security contact](https://tidelift.com/security).
Tidelift will coordinate the fix and disclosure.


## Sponsor This Project

[![GitHub Sponser](https://img.shields.io/static/v1?label=&message=GitHub%20Sponsor&color=db61a2&style=for-the-badge&logo=github)](https://github.com/sponsors/jyksnw)

[![Tidelift](https://img.shields.io/static/v1?label=&message=Tidelift&color=f6914d&style=for-the-badge&logo=tidelift)](https://tidelift.com/funding/github/pypi/install-jdk)

<a href="https://www.buymeacoffee.com/jyksnw" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-blue.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jyksnw/install-jdk",
    "name": "install-jdk",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6,<4.0",
    "maintainer_email": "",
    "keywords": "Java,OpenJDK,AdoptOpenJDK,Adoptium,Corretto,Zulu,JDK,JRE",
    "author": "Jason Snow",
    "author_email": "jason.snow@outlook.com",
    "download_url": "https://files.pythonhosted.org/packages/34/d2/b1f7dfcba325cdc8af3d7920d08323814e1ba8013cee35d662137291e79a/install_jdk-1.0.4.tar.gz",
    "platform": null,
    "description": "  # install-jdk\n\n![Python Version](https://img.shields.io/pypi/pyversions/install-jdk) ![MI](https://img.shields.io/github/license/jyksnw/install-jdk) [![Release](https://github.com/jyksnw/install-jdk/actions/workflows/release.yml/badge.svg?branch=master)](https://github.com/jyksnw/install-jdk/actions/workflows/release.yml) [![CodeQL](https://github.com/jyksnw/install-jdk/actions/workflows/github-code-scanning/codeql/badge.svg?branch=master)](https://github.com/jyksnw/install-jdk/actions/workflows/github-code-scanning/codeql) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/309b149bb42643bbb08e01e6d0c553f9)](https://www.codacy.com/gh/jyksnw/install-jdk/dashboard?utm_source=github.com&utm_medium=referral&utm_content=jyksnw/install-jdk&utm_campaign=Badge_Grade) ![Commit History](https://img.shields.io/github/commit-activity/m/jyksnw/install-jdk) [![PyPI Downloads Badge](https://img.shields.io/pypi/dm/install-jdk.svg)](https://pypi.org/project/install-jdk/) [![PyPI Version Badge](https://img.shields.io/pypi/v/install-jdk.svg)](https://pypi.org/project/install-jdk/)\n\nThe `install-jdk` library is a Python package that simplifies the process of installing OpenJDK on Windows, macOS, Linux and other supported operating systems, saving time and effort. `install-jdk` is a useful tool for users, developers, and system administrators who need to set up Java development environment or runtime in an automated and repeatedable fashion.\n\n`install-jdk` has no third-party dependencies and depends solely on the standard libraries found in Python3. This means that you can easily install and use the library without having to install any additional dependencies.\n\n`install-jdk` aims to provide as many options as possible to install an OpenJDK Java version across a wide array of operating systems and architectures. Please see each vendors OpenJDK documentation to see what operating systems and architectures they support.\n\n## Supported OpenJDK Build Vendors\n\n| OpenJDK Build      | Status      | Vendor Tags                              | Vendor Documentation                                              | `install-jdk` Documentation                                                                    | Source Code                                                                                           |\n| ------------------ | ----------- | ---------------------------------------- | ----------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |\n| Adoptium (default) | Implemented | Adoptium, Temurin, AdoptOpenJDK, eclipse | [Adoptium](https://adoptium.net/docs/)                            | [Adoptium Build Client docs](https://github.com/jyksnw/install-jdk/wiki/Adoptium-Build-Client) | [Adoptium Build Client src](https://github.com/jyksnw/install-jdk/blob/master/jdk/client/adoptium.py) |\n| Corretto           | Implemented | Corretto, Amazon, AWS                    | [Corretto](https://docs.aws.amazon.com/corretto/index.html)       | [Corretto Build Client docs](https://github.com/jyksnw/install-jdk/wiki/Corretto-Build-Client) | [Corretto Build Client src](https://github.com/jyksnw/install-jdk/blob/master/jdk/client/corretto.py) |\n| Microsoft          | Planning    | Microsoft                                | ...coming soon                                                    |                                                                                                |                                                                                                       |\n| Azul               | Implemented | Azul, Zulu                               | [Azul Zulu](https://www.azul.com/downloads-new/?package=jdk#zulu) | ...coming soon                                                                                 | [Zulu Build Client src](https://github.com/jyksnw/install-jdk/blob/master/jdk/client/zulu.py)         |\n\ninstall-jdk will do its best to detect the operating system and architecture that it is running on. Currently is able to detect:\n\n- Operating Systems\n\n  - Windows\n  - Linux\n  - MacOS\n  - AIX\n\n- Architecture\n  - arm\n  - aarch64\n  - ppc64\n  - x64\n  - x86\n\n## Installation\n\nTo install the install-jdk library, simply run the following command:\n\n```bash\npip install install-jdk\n```\n\n## Usage\n\nTo use the `install-jdk` library, import it into your Python code:\n\n```python\nimport jdk\n```\n\nThe library provides an `install` function, which takes the following parameters:\n\n- `version` - The major version of the Java OpenJDK build to install (e.g. 8, 11, 17, etc.).\n- `operating_system` - The target operating system. If not specified, will use the user's detected operating system if possible.\n- `arch` - The target architecure. If not specified, will use the user's detected architecture if possible.\n- `impl` - The Java implementation to use. Currently only supports `HOTSPOT` and dependent on the OpenJDK Build Vendor.\n- `jre` - A boolean value indicating that the Java Runtime Environment should be installed. Defaults to false, which will install the Java Development Kit.\n- `path` - The location to install the downloaded OpenJDK build. If not specified, will install into `$HOME/.jdk/<VERSION>` for the Java Development Kit and `$HOME/.jre/<VERSION>` for the Java Runtime Environment.\n- `vendor` - The vendor to download the OpenJDK build from. If not specified, defaults to [Adoptium](https://adoptium.com). This is a named argument so must be provided like `vendor='Corretto'`. Please see the list of [Supported OpenJDK Build Vendors](#supported-openjdk-build-vendors)\n\nHere are some example code snippet:\n\n```python\njdk.install('11')\n# Platform dependent install of Java JDK 11 into $HOME/.jdk/<VERSION>\n\njdk.install('11', jre=True)\n# Platform dependent install of Java JRE 11 into $HOME/.jre/<VERSION>\n\njdk.install('17', vendor='Corretto')\n# Installs a Corretto build of Java 17 JDK. Defualt vendor is Adoptium\n\njdk.install('17', vendor='Corretto', path='/usr/local/jdk')\n# Installs a Corretto build of Java 17 JDK into /usr/local/jdk\n```\n\nThe library also has a `get_download_url` function that returns the URL for the given version, it takes the following parameters:\n\n- `version` - The major version of the Java OpenJDK build to install (e.g. 8, 11, 17, etc.).\n- `operating_system` - The target operating system. If not specified, will use the user's detected operating system if possible.\n- `arch` - The target architecure. If not specified, will use the user's detected architecture if possible.\n- `impl` - The Java implementation to use. Currently only supports `HOTSPOT` and dependent on the OpenJDK Build Vendor.\n- `jre` - A boolean value indicating that the Java Runtime Environment should be installed. Defaults to false, which will install the Java Development Kit.\n- `vendor` - The vendor to download the OpenJDK build from. If not specified, defaults to [Adoptium](https://adoptium.com). This is a named argument so must be provided like `vendor='Corretto'`. Please see the list of [Supported OpenJDK Build Vendors](#supported-openjdk-build-vendors)\n\nHere are some example code snippets:\n\n```python\nfrom jdk.enums import OperatingSystem, Architecture\n\ndownload_url = jdk.get_download_url('17', jre=True)\nprint(download_url)\n# Obtains the platform dependent JRE download url\n\ndownload_url = jdk.get_download_url('17', operating_system=OperatingSystem.LINUX, arch=Architecure.AARCH64, vendor='Corretto')\nprint(download_url)\n# Obtains OpenJDK 17 from Corretto for Linux running on aarch64\n```\n\nThe library has a `download` function that will download the requested version and returns back the path to where it was downloaded. This function does not currently support overriding the default download path which is the operating systems specific TMP directory. It takes the following parameters.\n\n- `download_url` - The URL to the file to be downloaded. Defaults to None.\n  - - `version` - Required when `download_version` is None and must be provided as a named parameter. The major version of the Java OpenJDK build to install (e.g. 8, 11, 17, etc.).\n- `operating_system` - Must be provided as a named parameter. The target operating system. If not specified, will use the user's detected operating system if possible.\n- `arch` - Must be provided as a named parameter. The target architecure. If not specified, will use the user's detected architecture if possible.\n- `impl` - Must be provided as a named parameter. The Java implementation to use. Currently only supports `HOTSPOT` and dependent on the OpenJDK Build Vendor.\n- `jre` - Must be provided as a named parameter. A boolean value indicating that the Java Runtime Environment should be installed. Defaults to false, which will install the Java Development Kit.\n- `vendor` - The vendor to download the OpenJDK build from. If not specified, defaults to [Adoptium](https://adoptium.com). This is a named argument so must be provided like `vendor='Corretto'`. Please see the list of [Supported OpenJDK Build Vendors](#supported-openjdk-build-vendors)\n\nHere are some example code snippets:\n\n```python\nfrom jdk.enums import OperatingSystem, Architecture\n\ndownload_file = jdk.download('https://api.adoptium.net/v3/binary/latest/17/ga/windows/x64/jdk/hotspot/normal/eclipse')\nprint(download_file)\n# Downloads the requested file and returns back the TMP locations it was stored in.\n\ndownload_file = jdk.download(version='17', operating_system=OperatingSystem.LINUX, arch=Architecure.AARCH64, vendor='Corretto')\nprint(download_file)\n# Downloads the a Linux aarch64 build of Java 17 from Corretto and returns back the TMP location it was stored in.\n```\n\nThe library also provided two helper properties that can be used to see what it detected as the user's operating system and architecture.\n\n```python\nprint(jdk.OS)\nprint(jdk.ARCH)\n```\n\n## Credits\n\nThe install-jdk library uses OpenJDK builds, and is created and maintained by [jyksnw](https://github.com/jyksnw).\n\n_This was originally a port of the GitHub Action [`installjdk`](https://github.com/AdoptOpenJDK/install-jdk) but has morphed into something much more._\n\n### Vendor Credits\n\n- [Adoptium](https://adoptium.net/)\n- [Corretto](https://aws.amazon.com/corretto/)\n  - [Corretto Downloads](https://github.com/corretto/corretto-downloads)\n- [Zulu](https://www.azul.com/downloads/?package=jdk)\n\n## License\n\nThe `install-jdk` library is open-source and is distributed under the MIT license. See the [LICENSE](LICENSE.md) file for more information.\n\n## Contribution\n\nSee [CONTRIBUTING](CONTRIBUTING.MD)\n\n## Security contact information\n\nTo report a security vulnerability, please use the\n[Tidelift security contact](https://tidelift.com/security).\nTidelift will coordinate the fix and disclosure.\n\n\n## Sponsor This Project\n\n[![GitHub Sponser](https://img.shields.io/static/v1?label=&message=GitHub%20Sponsor&color=db61a2&style=for-the-badge&logo=github)](https://github.com/sponsors/jyksnw)\n\n[![Tidelift](https://img.shields.io/static/v1?label=&message=Tidelift&color=f6914d&style=for-the-badge&logo=tidelift)](https://tidelift.com/funding/github/pypi/install-jdk)\n\n<a href=\"https://www.buymeacoffee.com/jyksnw\" target=\"_blank\"><img src=\"https://cdn.buymeacoffee.com/buttons/v2/default-blue.png\" alt=\"Buy Me A Coffee\" style=\"height: 60px !important;width: 217px !important;\" ></a>\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "install-jdk allows you to easily install latest Java OpenJDK version. Supports OpenJDK builds from Adoptium (previously AdoptOpenJDK), Corretto, and Zulu. Simplify your Java development with the latest OpenJDK builds.",
    "version": "1.0.4",
    "split_keywords": [
        "java",
        "openjdk",
        "adoptopenjdk",
        "adoptium",
        "corretto",
        "zulu",
        "jdk",
        "jre"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "265e3646a738e7982dc03b951bc19d873d1364042a1fe39dd229af8fa79dff1e",
                "md5": "1d49dea4167a39fc735fe95568303c5d",
                "sha256": "801c7dc0f9d27972ab3af920225be73a3231d1594213e2229b4beee0c4113a52"
            },
            "downloads": -1,
            "filename": "install_jdk-1.0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1d49dea4167a39fc735fe95568303c5d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6,<4.0",
            "size": 15632,
            "upload_time": "2023-04-05T13:13:49",
            "upload_time_iso_8601": "2023-04-05T13:13:49.398406Z",
            "url": "https://files.pythonhosted.org/packages/26/5e/3646a738e7982dc03b951bc19d873d1364042a1fe39dd229af8fa79dff1e/install_jdk-1.0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34d2b1f7dfcba325cdc8af3d7920d08323814e1ba8013cee35d662137291e79a",
                "md5": "4918c83e8fd1ec3b6a12380f4f81d755",
                "sha256": "51786cf98f7c5f7223e08213200dde839a5d526150b635e86c42a422b087f8e1"
            },
            "downloads": -1,
            "filename": "install_jdk-1.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "4918c83e8fd1ec3b6a12380f4f81d755",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6,<4.0",
            "size": 15088,
            "upload_time": "2023-04-05T13:13:51",
            "upload_time_iso_8601": "2023-04-05T13:13:51.060869Z",
            "url": "https://files.pythonhosted.org/packages/34/d2/b1f7dfcba325cdc8af3d7920d08323814e1ba8013cee35d662137291e79a/install_jdk-1.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-05 13:13:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "jyksnw",
    "github_project": "install-jdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "install-jdk"
}
        
Elapsed time: 0.05411s