jenkins-pysdk


Namejenkins-pysdk JSON
Version 1.3.2 PyPI version JSON
download
home_pagehttps://github.com/KnownZero/JenkinsPythonSDK
Summary2024 Python SDK for Jenkins
upload_time2024-05-08 19:45:35
maintainerNone
docs_urlNone
authorKnownZero
requires_python>=3.6
licenseMIT
keywords python jenkins sdk api rest
VCS
bugtrack_url
requirements sphinx sphinx-rtd-theme httpx urllib3 orjson pydantic
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Jenkins Python SDK (jenkins_pysdk)

[![Documentation Status](https://readthedocs.org/projects/jenkinspythonsdk/badge/?version=latest)](https://jenkinspythonsdk.readthedocs.io/en/latest/?badge=latest) 
![CodeQL](https://github.com/KnownZero/JenkinsPythonSDK/actions/workflows/github-code-scanning/codeql/badge.svg)
![PyPI - Downloads](https://img.shields.io/pypi/dm/jenkins-pysdk?style=flat&logo=pypi&logoColor=white&label=Downloads&color=blue)


### Supported for python 3.6+


## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/installation/) and 
[JenkinsPythonSDK | pypi.org](https://pypi.org/project/jenkins-pysdk/) to install jenkins-pysdk.

```bash
pip install jenkins-pysdk
```

## Quick Usage

```python
from jenkins_pysdk.jenkins import Jenkins
jenkins = Jenkins(
    host="<host>", 
    username="<username>", 
    passw="<passw>"
)
```
#### OR
```python
from jenkins_pysdk.jenkins import Jenkins
jenkins = Jenkins(
    host="<host>", 
    username="<username>",
    token="<token>"
)
```

#### See [docs](https://jenkinspythonsdk.readthedocs.io/en/latest/index.html) for full documentation.

## Contributing

Feel free to create pull requests.

For major changes, please open an issue first
to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

MIT License

Copyright (c) 2024 KnownZero

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

[MIT](https://choosealicense.com/licenses/mit/)

This code is free to use, and I will not take ANY responsibility for any damage that you create yourself.

## Contributors
KnownZero


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/KnownZero/JenkinsPythonSDK",
    "name": "jenkins-pysdk",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "python, Jenkins, SDK, API, REST",
    "author": "KnownZero",
    "author_email": "gihjeefs@protonmail.com",
    "download_url": "https://files.pythonhosted.org/packages/d4/95/b7503104ab900a32d7f2580fb39220d9aed232c5db2413d5e82b8e561dfd/jenkins_pysdk-1.3.2.tar.gz",
    "platform": null,
    "description": "# Jenkins Python SDK (jenkins_pysdk)\r\n\r\n[![Documentation Status](https://readthedocs.org/projects/jenkinspythonsdk/badge/?version=latest)](https://jenkinspythonsdk.readthedocs.io/en/latest/?badge=latest) \r\n![CodeQL](https://github.com/KnownZero/JenkinsPythonSDK/actions/workflows/github-code-scanning/codeql/badge.svg)\r\n![PyPI - Downloads](https://img.shields.io/pypi/dm/jenkins-pysdk?style=flat&logo=pypi&logoColor=white&label=Downloads&color=blue)\r\n\r\n\r\n### Supported for python 3.6+\r\n\r\n\r\n## Installation\r\n\r\nUse the package manager [pip](https://pip.pypa.io/en/stable/installation/) and \r\n[JenkinsPythonSDK | pypi.org](https://pypi.org/project/jenkins-pysdk/) to install jenkins-pysdk.\r\n\r\n```bash\r\npip install jenkins-pysdk\r\n```\r\n\r\n## Quick Usage\r\n\r\n```python\r\nfrom jenkins_pysdk.jenkins import Jenkins\r\njenkins = Jenkins(\r\n    host=\"<host>\", \r\n    username=\"<username>\", \r\n    passw=\"<passw>\"\r\n)\r\n```\r\n#### OR\r\n```python\r\nfrom jenkins_pysdk.jenkins import Jenkins\r\njenkins = Jenkins(\r\n    host=\"<host>\", \r\n    username=\"<username>\",\r\n    token=\"<token>\"\r\n)\r\n```\r\n\r\n#### See [docs](https://jenkinspythonsdk.readthedocs.io/en/latest/index.html) for full documentation.\r\n\r\n## Contributing\r\n\r\nFeel free to create pull requests.\r\n\r\nFor major changes, please open an issue first\r\nto discuss what you would like to change.\r\n\r\nPlease make sure to update tests as appropriate.\r\n\r\n## License\r\n\r\nMIT License\r\n\r\nCopyright (c) 2024 KnownZero\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\n[MIT](https://choosealicense.com/licenses/mit/)\r\n\r\nThis code is free to use, and I will not take ANY responsibility for any damage that you create yourself.\r\n\r\n## Contributors\r\nKnownZero\r\n\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "2024 Python SDK for Jenkins",
    "version": "1.3.2",
    "project_urls": {
        "Homepage": "https://github.com/KnownZero/JenkinsPythonSDK"
    },
    "split_keywords": [
        "python",
        " jenkins",
        " sdk",
        " api",
        " rest"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a623cd12e44db4d93c0505ebbb7a9ebce24491c80fcbbf234f8ba5377702539d",
                "md5": "425f37760f6b553cc0ad0051e5916439",
                "sha256": "54e81b09df097e1acad7f9550584b7e331b579c5445dc3dc6d662a7f81e0a806"
            },
            "downloads": -1,
            "filename": "jenkins_pysdk-1.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "425f37760f6b553cc0ad0051e5916439",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 40642,
            "upload_time": "2024-05-08T19:45:33",
            "upload_time_iso_8601": "2024-05-08T19:45:33.813917Z",
            "url": "https://files.pythonhosted.org/packages/a6/23/cd12e44db4d93c0505ebbb7a9ebce24491c80fcbbf234f8ba5377702539d/jenkins_pysdk-1.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d495b7503104ab900a32d7f2580fb39220d9aed232c5db2413d5e82b8e561dfd",
                "md5": "0dddf24a018d046aabf4b729e7eb376d",
                "sha256": "166ec79c9eaf080ee97d116e000a4ddf201f73ae7fd19e452be5e018982b0342"
            },
            "downloads": -1,
            "filename": "jenkins_pysdk-1.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "0dddf24a018d046aabf4b729e7eb376d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 32194,
            "upload_time": "2024-05-08T19:45:35",
            "upload_time_iso_8601": "2024-05-08T19:45:35.597570Z",
            "url": "https://files.pythonhosted.org/packages/d4/95/b7503104ab900a32d7f2580fb39220d9aed232c5db2413d5e82b8e561dfd/jenkins_pysdk-1.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-08 19:45:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "KnownZero",
    "github_project": "JenkinsPythonSDK",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "sphinx",
            "specs": []
        },
        {
            "name": "sphinx-rtd-theme",
            "specs": []
        },
        {
            "name": "httpx",
            "specs": []
        },
        {
            "name": "urllib3",
            "specs": []
        },
        {
            "name": "orjson",
            "specs": []
        },
        {
            "name": "pydantic",
            "specs": []
        }
    ],
    "lcname": "jenkins-pysdk"
}
        
Elapsed time: 0.28932s