appcenter


Nameappcenter JSON
Version 4.0.0 PyPI version JSON
download
home_pagehttps://github.com/Microsoft/appcenter-rest-python
SummaryA Python wrapper around the App Center REST API.
upload_time2023-08-09 08:50:49
maintainerNone
docs_urlNone
authorDale Myers
requires_python>=3.8,<4.0
licenseMIT
keywords app center api
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            This is a minimal Python wrapper around the App Center REST APIs to get you up and running. If you are looking for something more substantial, please refer to the REST API documentation: https://openapi.appcenter.ms/

You can install with `pip install appcenter`

## Usage

```python
# 1. Import the library
import appcenter

# 2. Create a new client
client = appcenter.AppCenterClient(access_token="abc123def456")

# 3. Check some error groups
start = datetime.datetime.now() - datetime.timedelta(days=10)
for group in client.crashes.get_error_groups(owner_name="owner", app_name="myapp", start_time=start):
    print(group.errorGroupId)
    
# 4. Get recent versions
for version in client.versions.all(owner_name="owner", app_name="myapp"):
    print(version)
    
# 5. Create a new release
client.versions.upload_and_release(
    owner_name="owner",
    app_name="myapp",
    version="0.1",
    build_number="123",
    binary_path="/path/to/some.ipa",
    group_id="12345678-abcd-9012-efgh-345678901234",
    release_notes="These are some release notes",
    branch_name="test_branch",
    commit_hash="1234567890123456789012345678901234567890",
    commit_message="This is a commit message"
)
```

## Contributing

This project welcomes contributions and suggestions.  Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Microsoft/appcenter-rest-python",
    "name": "appcenter",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": null,
    "keywords": "app center,api",
    "author": "Dale Myers",
    "author_email": "dalemy@microsoft.com",
    "download_url": "https://files.pythonhosted.org/packages/52/41/98b91f6caf13aa83107ef449cee8ca4c0da404ae9ab2a11375a472e03fbc/appcenter-4.0.0.tar.gz",
    "platform": null,
    "description": "This is a minimal Python wrapper around the App Center REST APIs to get you up and running. If you are looking for something more substantial, please refer to the REST API documentation: https://openapi.appcenter.ms/\n\nYou can install with `pip install appcenter`\n\n## Usage\n\n```python\n# 1. Import the library\nimport appcenter\n\n# 2. Create a new client\nclient = appcenter.AppCenterClient(access_token=\"abc123def456\")\n\n# 3. Check some error groups\nstart = datetime.datetime.now() - datetime.timedelta(days=10)\nfor group in client.crashes.get_error_groups(owner_name=\"owner\", app_name=\"myapp\", start_time=start):\n    print(group.errorGroupId)\n    \n# 4. Get recent versions\nfor version in client.versions.all(owner_name=\"owner\", app_name=\"myapp\"):\n    print(version)\n    \n# 5. Create a new release\nclient.versions.upload_and_release(\n    owner_name=\"owner\",\n    app_name=\"myapp\",\n    version=\"0.1\",\n    build_number=\"123\",\n    binary_path=\"/path/to/some.ipa\",\n    group_id=\"12345678-abcd-9012-efgh-345678901234\",\n    release_notes=\"These are some release notes\",\n    branch_name=\"test_branch\",\n    commit_hash=\"1234567890123456789012345678901234567890\",\n    commit_message=\"This is a commit message\"\n)\n```\n\n## Contributing\n\nThis project welcomes contributions and suggestions.  Most contributions require you to agree to a\nContributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us\nthe rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.\n\nWhen you submit a pull request, a CLA bot will automatically determine whether you need to provide\na CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions\nprovided by the bot. You will only need to do this once across all repos using our CLA.\n\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).\nFor more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or\ncontact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Python wrapper around the App Center REST API.",
    "version": "4.0.0",
    "project_urls": {
        "Homepage": "https://github.com/Microsoft/appcenter-rest-python",
        "Repository": "https://github.com/Microsoft/appcenter-rest-python"
    },
    "split_keywords": [
        "app center",
        "api"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f527fe20933113a73f350d895d44d1d56f80f3f4d22fb19ea88e62d90f48b152",
                "md5": "9f8d70f7cc10916e5baf427077adb5b8",
                "sha256": "f22185f3dff7e4dd020b0fea78172ac1484aee0ddb436119269728533bf5bddf"
            },
            "downloads": -1,
            "filename": "appcenter-4.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9f8d70f7cc10916e5baf427077adb5b8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 21207,
            "upload_time": "2023-08-09T08:50:52",
            "upload_time_iso_8601": "2023-08-09T08:50:52.259462Z",
            "url": "https://files.pythonhosted.org/packages/f5/27/fe20933113a73f350d895d44d1d56f80f3f4d22fb19ea88e62d90f48b152/appcenter-4.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "524198b91f6caf13aa83107ef449cee8ca4c0da404ae9ab2a11375a472e03fbc",
                "md5": "b0472e3c25c29bd13d14d21a2c70f3a1",
                "sha256": "c90b71f3c940dd93d5c5379e3f6a19a5472816b5724b00072ae1a927811834fd"
            },
            "downloads": -1,
            "filename": "appcenter-4.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b0472e3c25c29bd13d14d21a2c70f3a1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 17533,
            "upload_time": "2023-08-09T08:50:49",
            "upload_time_iso_8601": "2023-08-09T08:50:49.131654Z",
            "url": "https://files.pythonhosted.org/packages/52/41/98b91f6caf13aa83107ef449cee8ca4c0da404ae9ab2a11375a472e03fbc/appcenter-4.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-09 08:50:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Microsoft",
    "github_project": "appcenter-rest-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "appcenter"
}
        
Elapsed time: 0.10277s