Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update readme #340

Merged
merged 4 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ All notable changes to the Zowe Client Python SDK will be documented in this fil

- Turning of logger at the class-constructor level [#316] (https://github.com/zowe/zowe-client-python-sdk/issues/316)

### Bug Fixes

- Fixed the inconsistent use of the SDK name across SDKs in all files by implementing the "find and replace" tool. [#328](https://github.com/zowe/zowe-client-python-sdk/issues/328)

## `1.0.0-dev21`

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Zowe Python Client SDK
# Zowe Client Python SDK

![](https://img.shields.io/badge/license-EPL--2.0-blue) [![Latest Release](https://img.shields.io/github/v/release/zowe/zowe-client-python-sdk)](https://github.com/zowe/zowe-client-python-sdk/releases/latest) [![Documentation Status](https://readthedocs.org/projects/zowe-client-python-sdk/badge/?version=latest)](https://zowe-client-python-sdk.readthedocs.io/en/latest/index.html)

Expand Down Expand Up @@ -136,7 +136,7 @@ Create a dictionary to handle communication with the plug-in:
Alternatively, you can use an existing Zowe CLI profile instead:

```python
from zowe.zos_core_for_zowe_sdk import ProfileManager
from zowe.core_for_zowe_sdk import ProfileManager
from zowe.zos_console_for_zowe_sdk import Console

profile = ProfileManager().load(profile_type="zosmf")
Expand Down
2 changes: 1 addition & 1 deletion scripts/license_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

# Define the license header you expect in each file
LICENSE_HEADER = '''"""Zowe Python Client SDK.
LICENSE_HEADER = '''"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
4 changes: 2 additions & 2 deletions src/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Zowe Python Client SDK
Zowe Client Python SDK
======================

The Zowe Python Client SDK consists of Python packages that enable programmatic interactions with z/OS REST API interfaces.
The Zowe Client Python SDK consists of Python packages that enable programmatic interactions with z/OS REST API interfaces.

[Zowe Docs](https://docs.zowe.org/stable/user-guide/sdks-using) provide more information on installing and using the SDK.

Expand Down
2 changes: 1 addition & 1 deletion src/core/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/config_file.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/connection.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/credential_manager.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/custom_warnings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/logger.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/profile_constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/profile_manager.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/request_handler.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/sdk_api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/session.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/session_constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/validators.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/core/zowe/core_for_zowe_sdk/zosmf_profile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/secrets/zowe/secrets_for_zowe_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_console/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_console/zowe/zos_console_for_zowe_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_console/zowe/zos_console_for_zowe_sdk/console.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_files/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_files/zowe/zos_files_for_zowe_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_files/zowe/zos_files_for_zowe_sdk/constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_files/zowe/zos_files_for_zowe_sdk/datasets.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_files/zowe/zos_files_for_zowe_sdk/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_files/zowe/zos_files_for_zowe_sdk/file_system.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_files/zowe/zos_files_for_zowe_sdk/files.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_files/zowe/zos_files_for_zowe_sdk/response/uss.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_files/zowe/zos_files_for_zowe_sdk/uss.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_jobs/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/jobs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_jobs/zowe/zos_jobs_for_zowe_sdk/response/jobs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_tso/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_tso/zowe/zos_tso_for_zowe_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_tso/zowe/zos_tso_for_zowe_sdk/response/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_tso/zowe/zos_tso_for_zowe_sdk/response/tso.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zos_tso/zowe/zos_tso_for_zowe_sdk/tso.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zosmf/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zosmf/zowe/zosmf_for_zowe_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zosmf/zowe/zosmf_for_zowe_sdk/response/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zosmf/zowe/zosmf_for_zowe_sdk/response/zosmf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
2 changes: 1 addition & 1 deletion src/zosmf/zowe/zosmf_for_zowe_sdk/zosmf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Zowe Python Client SDK.
"""Zowe Client Python SDK.

This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
Expand Down
Loading