wbx-cpl


Namewbx-cpl JSON
Version 1.3.2 PyPI version JSON
download
home_pageNone
SummaryCommands for Webex Compliance Officers
upload_time2024-04-29 12:31:49
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT License Copyright (c) 2023 Stephane Cohen 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.
keywords compliance control hub webex
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## Commands utilities for Webex Compliance Officers

## Usage:
```
Usage: 
  python -m wbx_cpl [OPTIONS] COMMAND [ARGS]...
  python -m wbx_cpl COMMAND --help 

Options:
  --version            Show the version and exit.
  -t, --token TEXT     Your access token. AUTH_BEARER env variable by default.
                       You can find your personal token at
                       https://developer.webex.com/docs/getting-started.
  -d, --debug INTEGER  Debug level.
  --help               Show this message and exit.

Commands:
  meeting
  messaging
  recording
```

# Examples:
```
# MEETING
# -------
# List messages sent in any meeting in Feb 2024 by given user email.
# python3 -m wbx_cpl meeting user_messages -f '{"from":"2024-02-01T00:00:00.000Z","to":"2024-02-29T20:26:59.814Z"} bc@4bfzj5.onmicrosoft.com

# List meeting participants in given meeting ID
# python3 -m wbx_cpl meeting participants 9fb5d46867f74d2ca91b1fabdff2e7b9_I_284366187397123659

# list messages posted in meeting given meeting ID, save in CSV file
# python3 -m wbx_cpl meeting messages -c /tmp/meeting-messages.csv 9fb5d46867f74d2ca91b1fabdff2e7b9_I_284366187397123659


# RECORDING
# ---------
# List recordings in given webex site from 15th Feb 2024. limit results to 5 recording
# python3 -m wbx_cpl recording list -c /tmp/recs.csv -f {"from":"2024-02-15T00:00:00.000Z","max":5} stephane-gaxe7-sandbox.webex.com

# Get recording details from given recording ID
# python3 -m wbx_cpl recording details 34d9c6fdcaab453f8b540643e04b0830

# Get recording contents from given recording ID
# python3 -m wbx_cpl recording download 34d9c6fdcaab453f8b540643e04b0830

# Get recording contents from recording IDs in .CSV input file
# python3 -m wbx_cpl recording download ./test-data/recording-input-list.csv

# MESSAGING
# ---------
# List user messages posted in any space in Feb 2024
# python3 -m wbx_cpl messaging user-messages -f {"from":"2024-02-01T00:00:00.000Z","to":"2024-02-29T20:26:59.814Z"} bc@4bfzj5.onmicrosoft.com

# List user messages, add space title and save to file
# python3 -m wbx_cpl messaging user-messages -c /tmp/messagesTitles.csv -t -f {"from":"2024-02-01T00:00:00.000Z","to":"2024-02-29T20:26:59.814Z"} bc@4bfzj5.onmicrosoft.com

# List messages posted in given space ID. Save to file, limit search to 5 messages per user.
# python3 -m wbx_cpl messaging space-messages -c /tmp/spacemessages.csv -f {"max":5} Y2lzY29zcGFyazovL3VybjpURUFNOnVzLXdlc3QtMl9yL1JPT00vZjBhZTRjZDAtNTdhMS0xMWVlLWEyYjktYjU2MmFiZTI4YzY3

# List members in given space ID, save to file
# python3 -m wbx_cpl messaging space-members -c /tmp/members.csv Y2lzY29zcGFyazovL3VybjpURUFNOnVzLXdlc3QtMl9yL1JPT00vZjBhZTRjZDAtNTdhMS0xMWVlLWEyYjktYjU2MmFiZTI4YzY3

# Download files attached to message id, save files under /tmp
# python3 -m wbx_cpl messaging message-files -d /tmp/ Y2lzY29zcGFyazovL3VybjpURUFNOnVzLXdlc3QtMl9yL01FU1NBR0UvMWYwY2NkZDAtYTNmMi0xMWVlLWI4ZGQtM2RlYzU4YzM1NTJm

# List spaces joined by given user email 
# python3 -m wbx_cpl messaging user-spaces sc-ben@mail.com

# List spaces joined by users listed in user export file (column 'User ID/Email (Required)')
# python3 -m wbx_cpl messaging spaces-count exported_users-a.csv 
```

## Notes:
- the --filter option follows the input parameters of [Webex Events End Point](https://developer.webex.com/docs/api/v1/events/list-events)
            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "wbx-cpl",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "Compliance, Control Hub, Webex",
    "author": null,
    "author_email": "Stephane Cohen <stecohen@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/08/7e/23fbe28fd320101486142953eb05571033341a575b4340e7546ec5ac9d61/wbx_cpl-1.3.2.tar.gz",
    "platform": null,
    "description": "## Commands utilities for Webex Compliance Officers\n\n## Usage:\n```\nUsage: \n  python -m wbx_cpl [OPTIONS] COMMAND [ARGS]...\n  python -m wbx_cpl COMMAND --help \n\nOptions:\n  --version            Show the version and exit.\n  -t, --token TEXT     Your access token. AUTH_BEARER env variable by default.\n                       You can find your personal token at\n                       https://developer.webex.com/docs/getting-started.\n  -d, --debug INTEGER  Debug level.\n  --help               Show this message and exit.\n\nCommands:\n  meeting\n  messaging\n  recording\n```\n\n# Examples:\n```\n# MEETING\n# -------\n# List messages sent in any meeting in Feb 2024 by given user email.\n# python3 -m wbx_cpl meeting user_messages -f '{\"from\":\"2024-02-01T00:00:00.000Z\",\"to\":\"2024-02-29T20:26:59.814Z\"} bc@4bfzj5.onmicrosoft.com\n\n# List meeting participants in given meeting ID\n# python3 -m wbx_cpl meeting participants 9fb5d46867f74d2ca91b1fabdff2e7b9_I_284366187397123659\n\n# list messages posted in meeting given meeting ID, save in CSV file\n# python3 -m wbx_cpl meeting messages -c /tmp/meeting-messages.csv 9fb5d46867f74d2ca91b1fabdff2e7b9_I_284366187397123659\n\n\n# RECORDING\n# ---------\n# List recordings in given webex site from 15th Feb 2024. limit results to 5 recording\n# python3 -m wbx_cpl recording list -c /tmp/recs.csv -f {\"from\":\"2024-02-15T00:00:00.000Z\",\"max\":5} stephane-gaxe7-sandbox.webex.com\n\n# Get recording details from given recording ID\n# python3 -m wbx_cpl recording details 34d9c6fdcaab453f8b540643e04b0830\n\n# Get recording contents from given recording ID\n# python3 -m wbx_cpl recording download 34d9c6fdcaab453f8b540643e04b0830\n\n# Get recording contents from recording IDs in .CSV input file\n# python3 -m wbx_cpl recording download ./test-data/recording-input-list.csv\n\n# MESSAGING\n# ---------\n# List user messages posted in any space in Feb 2024\n# python3 -m wbx_cpl messaging user-messages -f {\"from\":\"2024-02-01T00:00:00.000Z\",\"to\":\"2024-02-29T20:26:59.814Z\"} bc@4bfzj5.onmicrosoft.com\n\n# List user messages, add space title and save to file\n# python3 -m wbx_cpl messaging user-messages -c /tmp/messagesTitles.csv -t -f {\"from\":\"2024-02-01T00:00:00.000Z\",\"to\":\"2024-02-29T20:26:59.814Z\"} bc@4bfzj5.onmicrosoft.com\n\n# List messages posted in given space ID. Save to file, limit search to 5 messages per user.\n# python3 -m wbx_cpl messaging space-messages -c /tmp/spacemessages.csv -f {\"max\":5} Y2lzY29zcGFyazovL3VybjpURUFNOnVzLXdlc3QtMl9yL1JPT00vZjBhZTRjZDAtNTdhMS0xMWVlLWEyYjktYjU2MmFiZTI4YzY3\n\n# List members in given space ID, save to file\n# python3 -m wbx_cpl messaging space-members -c /tmp/members.csv Y2lzY29zcGFyazovL3VybjpURUFNOnVzLXdlc3QtMl9yL1JPT00vZjBhZTRjZDAtNTdhMS0xMWVlLWEyYjktYjU2MmFiZTI4YzY3\n\n# Download files attached to message id, save files under /tmp\n# python3 -m wbx_cpl messaging message-files -d /tmp/ Y2lzY29zcGFyazovL3VybjpURUFNOnVzLXdlc3QtMl9yL01FU1NBR0UvMWYwY2NkZDAtYTNmMi0xMWVlLWI4ZGQtM2RlYzU4YzM1NTJm\n\n# List spaces joined by given user email \n# python3 -m wbx_cpl messaging user-spaces sc-ben@mail.com\n\n# List spaces joined by users listed in user export file (column 'User ID/Email (Required)')\n# python3 -m wbx_cpl messaging spaces-count exported_users-a.csv \n```\n\n## Notes:\n- the --filter option follows the input parameters of [Webex Events End Point](https://developer.webex.com/docs/api/v1/events/list-events)",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 Stephane Cohen  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.",
    "summary": "Commands for Webex Compliance Officers",
    "version": "1.3.2",
    "project_urls": null,
    "split_keywords": [
        "compliance",
        " control hub",
        " webex"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a717cd3d483e207708f59f3dea609adf2ec7011c8a1de71bba740931cf90c86a",
                "md5": "4164d51979477e5b7fee8f0d1ba10d6f",
                "sha256": "2b17067c162c9e0cf73593a686f852d77e010e06c4caa9e986cfae56213a4130"
            },
            "downloads": -1,
            "filename": "wbx_cpl-1.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4164d51979477e5b7fee8f0d1ba10d6f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 15127,
            "upload_time": "2024-04-29T12:31:48",
            "upload_time_iso_8601": "2024-04-29T12:31:48.185738Z",
            "url": "https://files.pythonhosted.org/packages/a7/17/cd3d483e207708f59f3dea609adf2ec7011c8a1de71bba740931cf90c86a/wbx_cpl-1.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "087e23fbe28fd320101486142953eb05571033341a575b4340e7546ec5ac9d61",
                "md5": "30a56494d4141b12eda1cf28405be079",
                "sha256": "e6e9bfffe803ac02163b656fd28b515c99a97d4719361cbb7d19d2189f316205"
            },
            "downloads": -1,
            "filename": "wbx_cpl-1.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "30a56494d4141b12eda1cf28405be079",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 12474,
            "upload_time": "2024-04-29T12:31:49",
            "upload_time_iso_8601": "2024-04-29T12:31:49.623542Z",
            "url": "https://files.pythonhosted.org/packages/08/7e/23fbe28fd320101486142953eb05571033341a575b4340e7546ec5ac9d61/wbx_cpl-1.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-29 12:31:49",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "wbx-cpl"
}
        
Elapsed time: 0.26435s