python4cpm 1.0.17__tar.gz → 1.0.18__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python4cpm
3
- Version: 1.0.17
3
+ Version: 1.0.18
4
4
  Summary: Python for CPM
5
5
  Author-email: Gonzalo Atienza Rela <gonatienza@gmail.com>
6
6
  License: MIT License
@@ -45,9 +45,9 @@ This platform allows you to duplicate it multiple times, simply changing its set
45
45
  3. Install `python4cpm` in your venv:
46
46
  - If your CPM can connect to the internet, install with `c:\venv\Scripts\pip install python4cpm`.
47
47
  - If your CPM cannot connect to the internet:
48
- - Download the `python4cpm-wheel.zip` asset from the latest [release](https://github.com/gonatienza/python4cpm/releases).
49
- - Copy the file to CPM and extract to a temporary location.
50
- - From the temporary location run `c:\venv\Scripts\pip install --no-index --find-links=.\python4cpm-wheel python4cpm`.
48
+ - Download the latest `*.whl` file from the [pypi project files](https://pypi.org/project/python4cpm/#files).
49
+ - Copy the file to CPM and extract to a temporary directory called `python4cpm-wheel`.
50
+ - From the parent directory of `python4cpm-wheel` run `c:\venv\Scripts\pip install --no-index --find-links=.\python4cpm-wheel python4cpm`.
51
51
 
52
52
 
53
53
  ### Importing the platform
@@ -166,7 +166,7 @@ if __name__ == "__main__":
166
166
  p4cpm.log_error(f"{type(e).__name__}: {e}")
167
167
  p4cpm.close_fail()
168
168
  ```
169
- (*) a more realistic examples can be found [here](https://github.com/gonatienza/python4cpm/blob/main/examples).
169
+ (*) More realistic examples can be found [here](https://github.com/gonatienza/python4cpm/blob/main/examples).
170
170
 
171
171
  When doing `verify`, `change` or `reconcile` from Privilege Cloud/PVWA:
172
172
  1. Verify -> the sciprt will be executed once with the `p4cpm.args.action` as `Python4CPM.ACTION_VERIFY`.
@@ -13,9 +13,9 @@ This platform allows you to duplicate it multiple times, simply changing its set
13
13
  3. Install `python4cpm` in your venv:
14
14
  - If your CPM can connect to the internet, install with `c:\venv\Scripts\pip install python4cpm`.
15
15
  - If your CPM cannot connect to the internet:
16
- - Download the `python4cpm-wheel.zip` asset from the latest [release](https://github.com/gonatienza/python4cpm/releases).
17
- - Copy the file to CPM and extract to a temporary location.
18
- - From the temporary location run `c:\venv\Scripts\pip install --no-index --find-links=.\python4cpm-wheel python4cpm`.
16
+ - Download the latest `*.whl` file from the [pypi project files](https://pypi.org/project/python4cpm/#files).
17
+ - Copy the file to CPM and extract to a temporary directory called `python4cpm-wheel`.
18
+ - From the parent directory of `python4cpm-wheel` run `c:\venv\Scripts\pip install --no-index --find-links=.\python4cpm-wheel python4cpm`.
19
19
 
20
20
 
21
21
  ### Importing the platform
@@ -134,7 +134,7 @@ if __name__ == "__main__":
134
134
  p4cpm.log_error(f"{type(e).__name__}: {e}")
135
135
  p4cpm.close_fail()
136
136
  ```
137
- (*) a more realistic examples can be found [here](https://github.com/gonatienza/python4cpm/blob/main/examples).
137
+ (*) More realistic examples can be found [here](https://github.com/gonatienza/python4cpm/blob/main/examples).
138
138
 
139
139
  When doing `verify`, `change` or `reconcile` from Privilege Cloud/PVWA:
140
140
  1. Verify -> the sciprt will be executed once with the `p4cpm.args.action` as `Python4CPM.ACTION_VERIFY`.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "python4cpm"
7
- version = "1.0.17"
7
+ version = "1.0.18"
8
8
  description = "Python for CPM"
9
9
  authors = [
10
10
  { name = "Gonzalo Atienza Rela", email = "gonatienza@gmail.com" }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python4cpm
3
- Version: 1.0.17
3
+ Version: 1.0.18
4
4
  Summary: Python for CPM
5
5
  Author-email: Gonzalo Atienza Rela <gonatienza@gmail.com>
6
6
  License: MIT License
@@ -45,9 +45,9 @@ This platform allows you to duplicate it multiple times, simply changing its set
45
45
  3. Install `python4cpm` in your venv:
46
46
  - If your CPM can connect to the internet, install with `c:\venv\Scripts\pip install python4cpm`.
47
47
  - If your CPM cannot connect to the internet:
48
- - Download the `python4cpm-wheel.zip` asset from the latest [release](https://github.com/gonatienza/python4cpm/releases).
49
- - Copy the file to CPM and extract to a temporary location.
50
- - From the temporary location run `c:\venv\Scripts\pip install --no-index --find-links=.\python4cpm-wheel python4cpm`.
48
+ - Download the latest `*.whl` file from the [pypi project files](https://pypi.org/project/python4cpm/#files).
49
+ - Copy the file to CPM and extract to a temporary directory called `python4cpm-wheel`.
50
+ - From the parent directory of `python4cpm-wheel` run `c:\venv\Scripts\pip install --no-index --find-links=.\python4cpm-wheel python4cpm`.
51
51
 
52
52
 
53
53
  ### Importing the platform
@@ -166,7 +166,7 @@ if __name__ == "__main__":
166
166
  p4cpm.log_error(f"{type(e).__name__}: {e}")
167
167
  p4cpm.close_fail()
168
168
  ```
169
- (*) a more realistic examples can be found [here](https://github.com/gonatienza/python4cpm/blob/main/examples).
169
+ (*) More realistic examples can be found [here](https://github.com/gonatienza/python4cpm/blob/main/examples).
170
170
 
171
171
  When doing `verify`, `change` or `reconcile` from Privilege Cloud/PVWA:
172
172
  1. Verify -> the sciprt will be executed once with the `p4cpm.args.action` as `Python4CPM.ACTION_VERIFY`.
File without changes
File without changes