edgegrid-python 2.0.0__tar.gz → 2.0.1__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.
Files changed (24) hide show
  1. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/LICENSE +2 -2
  2. {edgegrid_python-2.0.0/edgegrid_python.egg-info → edgegrid_python-2.0.1}/PKG-INFO +17 -11
  3. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/README.md +5 -5
  4. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/akamai/edgegrid/__init__.py +2 -2
  5. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1/edgegrid_python.egg-info}/PKG-INFO +17 -11
  6. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/edgegrid_python.egg-info/requires.txt +0 -4
  7. edgegrid_python-2.0.1/requirements.txt +20 -0
  8. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/setup.py +3 -7
  9. edgegrid_python-2.0.0/requirements.txt +0 -38
  10. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/MANIFEST.in +0 -0
  11. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/akamai/__init__.py +0 -0
  12. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/akamai/edgegrid/edgegrid.py +0 -0
  13. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/akamai/edgegrid/edgerc.py +0 -0
  14. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/akamai/edgegrid/test/__init__.py +0 -0
  15. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/akamai/edgegrid/test/conftest.py +0 -0
  16. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/akamai/edgegrid/test/edgerc_that_doesnt_parse +0 -0
  17. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/akamai/edgegrid/test/sample_edgerc +0 -0
  18. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/akamai/edgegrid/test/test_edgegrid.py +0 -0
  19. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/akamai/edgegrid/test/testdata.json +0 -0
  20. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/edgegrid_python.egg-info/SOURCES.txt +0 -0
  21. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/edgegrid_python.egg-info/dependency_links.txt +0 -0
  22. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/edgegrid_python.egg-info/namespace_packages.txt +0 -0
  23. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/edgegrid_python.egg-info/top_level.txt +0 -0
  24. {edgegrid_python-2.0.0 → edgegrid_python-2.0.1}/setup.cfg +0 -0
@@ -176,10 +176,10 @@ recommend that a file or class name and description of purpose be included on
176
176
  the same "printed page" as the copyright notice for easier identification within
177
177
  third-party archives.
178
178
 
179
- Copyright 2024 Akamai Technologies, Inc. All rights reserved.
179
+ Copyright 2025 Akamai Technologies, Inc. All rights reserved.
180
180
 
181
181
  Licensed under the Apache License, Version 2.0 (the "License");
182
- you may not use this file except in compliance with the License.
182
+ you may not use these files except in compliance with the License.
183
183
  You may obtain a copy of the License at
184
184
 
185
185
  http://www.apache.org/licenses/LICENSE-2.0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: edgegrid-python
3
- Version: 2.0.0
3
+ Version: 2.0.1
4
4
  Summary: {OPEN} client authentication protocol for python-requests
5
5
  Home-page: https://github.com/akamai/AkamaiOPEN-edgegrid-python
6
6
  License: Apache 2.0
@@ -11,14 +11,20 @@ Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  Requires-Dist: requests>=2.24.0
13
13
  Requires-Dist: requests_toolbelt>=0.9.1
14
- Requires-Dist: pyOpenSSL>=19.1.0
15
- Requires-Dist: ndg-httpsclient>=0.5.1
16
- Requires-Dist: pyasn1>=0.4.8
17
- Requires-Dist: urllib3>=1.25.10
18
14
  Provides-Extra: dev
19
15
  Requires-Dist: pylint>=2.7.0; extra == "dev"
20
16
  Requires-Dist: pytest>=6.1.0; extra == "dev"
21
17
  Requires-Dist: pytest-cov>=2.12.1; extra == "dev"
18
+ Dynamic: classifier
19
+ Dynamic: description
20
+ Dynamic: description-content-type
21
+ Dynamic: home-page
22
+ Dynamic: license
23
+ Dynamic: license-file
24
+ Dynamic: provides-extra
25
+ Dynamic: requires-dist
26
+ Dynamic: requires-python
27
+ Dynamic: summary
22
28
 
23
29
  # EdgeGrid for Python
24
30
 
@@ -47,9 +53,9 @@ pip install edgegrid-python
47
53
  We provide authentication credentials through an API client. Requests to the API are signed with a timestamp and are executed immediately.
48
54
 
49
55
  1. [Create authentication credentials](https://techdocs.akamai.com/developer/docs/set-up-authentication-credentials).
50
-
51
- 2. Place your credentials in an EdgeGrid resource file, `.edgerc`, under a heading of `[default]` at your local home directory or the home directory of a web-server user.
52
-
56
+
57
+ 2. Place your credentials in an EdgeGrid resource file, `.edgerc`, under a heading of `[default]` at your local home directory.
58
+
53
59
  ```
54
60
  [default]
55
61
  client_secret = C113nt53KR3TN6N90yVuAgICxIRwsObLi0E67/N8eRN=
@@ -297,8 +303,8 @@ To report an issue or make a suggestion, create a new [GitHub issue](https://git
297
303
 
298
304
  ## License
299
305
 
300
- Copyright 2024 Akamai Technologies, Inc. All rights reserved.
306
+ Copyright 2025 Akamai Technologies, Inc. All rights reserved.
301
307
 
302
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
308
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
303
309
 
304
310
  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
@@ -25,9 +25,9 @@ pip install edgegrid-python
25
25
  We provide authentication credentials through an API client. Requests to the API are signed with a timestamp and are executed immediately.
26
26
 
27
27
  1. [Create authentication credentials](https://techdocs.akamai.com/developer/docs/set-up-authentication-credentials).
28
-
29
- 2. Place your credentials in an EdgeGrid resource file, `.edgerc`, under a heading of `[default]` at your local home directory or the home directory of a web-server user.
30
-
28
+
29
+ 2. Place your credentials in an EdgeGrid resource file, `.edgerc`, under a heading of `[default]` at your local home directory.
30
+
31
31
  ```
32
32
  [default]
33
33
  client_secret = C113nt53KR3TN6N90yVuAgICxIRwsObLi0E67/N8eRN=
@@ -275,8 +275,8 @@ To report an issue or make a suggestion, create a new [GitHub issue](https://git
275
275
 
276
276
  ## License
277
277
 
278
- Copyright 2024 Akamai Technologies, Inc. All rights reserved.
278
+ Copyright 2025 Akamai Technologies, Inc. All rights reserved.
279
279
 
280
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
280
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
281
281
 
282
282
  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
@@ -36,6 +36,6 @@ from .edgerc import EdgeRc
36
36
  __all__ = ['EdgeGridAuth', 'EdgeRc']
37
37
 
38
38
  __title__ = 'edgegrid-python'
39
- __version__ = '2.0.0'
39
+ __version__ = '2.0.1'
40
40
  __license__ = 'Apache 2.0'
41
- __copyright__ = 'Copyright 2024 Akamai Technologies'
41
+ __copyright__ = 'Copyright 2025 Akamai Technologies'
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: edgegrid-python
3
- Version: 2.0.0
3
+ Version: 2.0.1
4
4
  Summary: {OPEN} client authentication protocol for python-requests
5
5
  Home-page: https://github.com/akamai/AkamaiOPEN-edgegrid-python
6
6
  License: Apache 2.0
@@ -11,14 +11,20 @@ Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  Requires-Dist: requests>=2.24.0
13
13
  Requires-Dist: requests_toolbelt>=0.9.1
14
- Requires-Dist: pyOpenSSL>=19.1.0
15
- Requires-Dist: ndg-httpsclient>=0.5.1
16
- Requires-Dist: pyasn1>=0.4.8
17
- Requires-Dist: urllib3>=1.25.10
18
14
  Provides-Extra: dev
19
15
  Requires-Dist: pylint>=2.7.0; extra == "dev"
20
16
  Requires-Dist: pytest>=6.1.0; extra == "dev"
21
17
  Requires-Dist: pytest-cov>=2.12.1; extra == "dev"
18
+ Dynamic: classifier
19
+ Dynamic: description
20
+ Dynamic: description-content-type
21
+ Dynamic: home-page
22
+ Dynamic: license
23
+ Dynamic: license-file
24
+ Dynamic: provides-extra
25
+ Dynamic: requires-dist
26
+ Dynamic: requires-python
27
+ Dynamic: summary
22
28
 
23
29
  # EdgeGrid for Python
24
30
 
@@ -47,9 +53,9 @@ pip install edgegrid-python
47
53
  We provide authentication credentials through an API client. Requests to the API are signed with a timestamp and are executed immediately.
48
54
 
49
55
  1. [Create authentication credentials](https://techdocs.akamai.com/developer/docs/set-up-authentication-credentials).
50
-
51
- 2. Place your credentials in an EdgeGrid resource file, `.edgerc`, under a heading of `[default]` at your local home directory or the home directory of a web-server user.
52
-
56
+
57
+ 2. Place your credentials in an EdgeGrid resource file, `.edgerc`, under a heading of `[default]` at your local home directory.
58
+
53
59
  ```
54
60
  [default]
55
61
  client_secret = C113nt53KR3TN6N90yVuAgICxIRwsObLi0E67/N8eRN=
@@ -297,8 +303,8 @@ To report an issue or make a suggestion, create a new [GitHub issue](https://git
297
303
 
298
304
  ## License
299
305
 
300
- Copyright 2024 Akamai Technologies, Inc. All rights reserved.
306
+ Copyright 2025 Akamai Technologies, Inc. All rights reserved.
301
307
 
302
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
308
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
303
309
 
304
310
  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
@@ -1,9 +1,5 @@
1
1
  requests>=2.24.0
2
2
  requests_toolbelt>=0.9.1
3
- pyOpenSSL>=19.1.0
4
- ndg-httpsclient>=0.5.1
5
- pyasn1>=0.4.8
6
- urllib3>=1.25.10
7
3
 
8
4
  [dev]
9
5
  pylint>=2.7.0
@@ -0,0 +1,20 @@
1
+ #
2
+ # This file is autogenerated by pip-compile with Python 3.13
3
+ # by the following command:
4
+ #
5
+ # pip-compile
6
+ #
7
+ certifi==2025.1.31
8
+ # via requests
9
+ charset-normalizer==3.4.1
10
+ # via requests
11
+ idna==3.10
12
+ # via requests
13
+ requests==2.32.3
14
+ # via
15
+ # edgegrid-python (setup.py)
16
+ # requests-toolbelt
17
+ requests-toolbelt==1.0.0
18
+ # via edgegrid-python (setup.py)
19
+ urllib3==2.4.0
20
+ # via requests
@@ -2,21 +2,17 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='edgegrid-python',
5
- version='2.0.0',
5
+ version='2.0.1',
6
6
  description='{OPEN} client authentication protocol for python-requests',
7
- long_description=open("README.md").read(),
8
- long_description_content_type="text/markdown",
9
7
  url='https://github.com/akamai/AkamaiOPEN-edgegrid-python',
10
8
  namespace_packages=['akamai'],
11
9
  packages=find_packages(),
12
10
  python_requires=">=3.9",
11
+ long_description=open("README.md").read(),
12
+ long_description_content_type="text/markdown",
13
13
  install_requires=[
14
14
  'requests>=2.24.0',
15
15
  'requests_toolbelt>=0.9.1',
16
- 'pyOpenSSL>=19.1.0',
17
- 'ndg-httpsclient>=0.5.1',
18
- 'pyasn1>=0.4.8',
19
- 'urllib3>=1.25.10'
20
16
  ],
21
17
  extras_require={
22
18
  'dev': [
@@ -1,38 +0,0 @@
1
- #
2
- # This file is autogenerated by pip-compile with Python 3.13
3
- # by the following command:
4
- #
5
- # pip-compile
6
- #
7
- certifi==2024.8.30
8
- # via requests
9
- cffi==1.17.1
10
- # via cryptography
11
- charset-normalizer==3.4.0
12
- # via requests
13
- cryptography==43.0.3
14
- # via pyopenssl
15
- idna==3.10
16
- # via requests
17
- ndg-httpsclient==0.5.1
18
- # via edgegrid-python (setup.py)
19
- pyasn1==0.6.1
20
- # via
21
- # edgegrid-python (setup.py)
22
- # ndg-httpsclient
23
- pycparser==2.22
24
- # via cffi
25
- pyopenssl==24.2.1
26
- # via
27
- # edgegrid-python (setup.py)
28
- # ndg-httpsclient
29
- requests==2.32.3
30
- # via
31
- # edgegrid-python (setup.py)
32
- # requests-toolbelt
33
- requests-toolbelt==1.0.0
34
- # via edgegrid-python (setup.py)
35
- urllib3==2.2.3
36
- # via
37
- # edgegrid-python (setup.py)
38
- # requests