gam7 7.6.9__py3-none-any.whl → 7.6.10__py3-none-any.whl
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.
Potentially problematic release.
This version of gam7 might be problematic. Click here for more details.
- gam/__init__.py +1 -1
- gam/gamlib/glskus.py +2 -0
- gam/gamlib/glverlibs.py +16 -11
- {gam7-7.6.9.dist-info → gam7-7.6.10.dist-info}/METADATA +12 -12
- {gam7-7.6.9.dist-info → gam7-7.6.10.dist-info}/RECORD +8 -8
- {gam7-7.6.9.dist-info → gam7-7.6.10.dist-info}/WHEEL +0 -0
- {gam7-7.6.9.dist-info → gam7-7.6.10.dist-info}/entry_points.txt +0 -0
- {gam7-7.6.9.dist-info → gam7-7.6.10.dist-info}/licenses/LICENSE +0 -0
gam/__init__.py
CHANGED
|
@@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki
|
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
|
|
28
|
-
__version__ = '7.06.
|
|
28
|
+
__version__ = '7.06.10'
|
|
29
29
|
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
|
30
30
|
|
|
31
31
|
#pylint: disable=wrong-import-position
|
gam/gamlib/glskus.py
CHANGED
|
@@ -144,6 +144,8 @@ _SKUS = {
|
|
|
144
144
|
'product': 'Google-Apps', 'aliases': ['wsflw', 'workspacefrontline', 'workspacefrontlineworker'], 'displayName': 'Google Workspace Frontline Starter'},
|
|
145
145
|
'1010020031': {
|
|
146
146
|
'product': 'Google-Apps', 'aliases': ['wsflwstan', 'workspacefrontlinestan', 'workspacefrontlineworkerstan'], 'displayName': 'Google Workspace Frontline Standard'},
|
|
147
|
+
'1010020034': {
|
|
148
|
+
'product': 'Google-Apps', 'aliases': ['wsflwplus', 'workspacefrontlineplus', 'workspacefrontlineworkerplus'], 'displayName': 'Google Workspace Frontline Plus'},
|
|
147
149
|
'1010340001': {
|
|
148
150
|
'product': '101034', 'aliases': ['gseau', 'enterprisearchived', 'gsuiteenterprisearchived'], 'displayName': 'Google Workspace Enterprise Plus - Archived User'},
|
|
149
151
|
'1010340002': {
|
gam/gamlib/glverlibs.py
CHANGED
|
@@ -20,14 +20,19 @@
|
|
|
20
20
|
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
|
-
GAM_VER_LIBS = [
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
23
|
+
GAM_VER_LIBS = [
|
|
24
|
+
'chardet',
|
|
25
|
+
'cryptography',
|
|
26
|
+
'filelock',
|
|
27
|
+
'google-api-python-client',
|
|
28
|
+
'google-auth-httplib2',
|
|
29
|
+
'google-auth-oauthlib',
|
|
30
|
+
'google-auth',
|
|
31
|
+
'lxml',
|
|
32
|
+
'httplib2',
|
|
33
|
+
'passlib',
|
|
34
|
+
'pathvalidate',
|
|
35
|
+
'pyscard',
|
|
36
|
+
'python-dateutil',
|
|
37
|
+
'yubikey-manager',
|
|
38
|
+
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gam7
|
|
3
|
-
Version: 7.6.
|
|
3
|
+
Version: 7.6.10
|
|
4
4
|
Summary: CLI tool to manage Google Workspace
|
|
5
5
|
Project-URL: Homepage, https://github.com/GAM-team/GAM
|
|
6
6
|
Project-URL: Issues, https://github.com/GAM-team/GAM/issues
|
|
@@ -18,22 +18,22 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.13
|
|
20
20
|
Requires-Python: >=3.9
|
|
21
|
-
Requires-Dist: chardet
|
|
22
|
-
Requires-Dist: cryptography
|
|
21
|
+
Requires-Dist: chardet>=5.2.0
|
|
22
|
+
Requires-Dist: cryptography>=44.0.2
|
|
23
23
|
Requires-Dist: distro; sys_platform == 'linux'
|
|
24
|
-
Requires-Dist: filelock
|
|
25
|
-
Requires-Dist: google-api-python-client>=2.
|
|
26
|
-
Requires-Dist: google-auth-httplib2
|
|
27
|
-
Requires-Dist: google-auth-oauthlib>=
|
|
28
|
-
Requires-Dist: google-auth>=2.
|
|
29
|
-
Requires-Dist: httplib2>=0.
|
|
24
|
+
Requires-Dist: filelock>=3.18.0
|
|
25
|
+
Requires-Dist: google-api-python-client>=2.167.0
|
|
26
|
+
Requires-Dist: google-auth-httplib2>=0.2.0
|
|
27
|
+
Requires-Dist: google-auth-oauthlib>=1.2.2
|
|
28
|
+
Requires-Dist: google-auth>=2.39.0
|
|
29
|
+
Requires-Dist: httplib2>=0.22.0
|
|
30
30
|
Requires-Dist: lxml
|
|
31
|
-
Requires-Dist: passlib>=1.7.
|
|
32
|
-
Requires-Dist: pathvalidate
|
|
31
|
+
Requires-Dist: passlib>=1.7.4
|
|
32
|
+
Requires-Dist: pathvalidate>=3.2.3
|
|
33
33
|
Requires-Dist: pyscard==2.2.1
|
|
34
34
|
Requires-Dist: python-dateutil
|
|
35
35
|
Provides-Extra: yubikey
|
|
36
|
-
Requires-Dist: yubikey-manager>=5.
|
|
36
|
+
Requires-Dist: yubikey-manager>=5.6.1; extra == 'yubikey'
|
|
37
37
|
Description-Content-Type: text/markdown
|
|
38
38
|
|
|
39
39
|
GAM is a command line tool for Google Workspace admins to manage domain and user settings quickly and easily.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
gam/__init__.py,sha256=
|
|
1
|
+
gam/__init__.py,sha256=dTeELNYfNzM8J38mUcGnEQhmzYSXtMoPuygMv44Zg6c,3493033
|
|
2
2
|
gam/__main__.py,sha256=amz0-959ph6zkZKqjaar4n60yho-T37w6qWI36qx0CA,1049
|
|
3
3
|
gam/cacerts.pem,sha256=nJuWha0xm5dHw_5ptGphwRoO-r36Ccpqiww9pCEDbSc,67484
|
|
4
4
|
gam/cbcm-v1.1beta1.json,sha256=xO5XloCQQULmPbFBx5bckdqmbLFQ7sJ2TImhE1ysDIY,19439
|
|
@@ -32,9 +32,9 @@ gam/gamlib/glgdata.py,sha256=weRppttWm6uRyqtBoGPKoHiNZ2h28nhfUV4J_mbCszY,2707
|
|
|
32
32
|
gam/gamlib/glglobals.py,sha256=Y73xM1RNhIbtcqnMv1gcZF3wDWOeLWW-7SvoQyWw6tA,9659
|
|
33
33
|
gam/gamlib/glindent.py,sha256=RfBa2LDfLIqPLL5vMfC689TCVmqn8xf-qulSzkiatrc,1228
|
|
34
34
|
gam/gamlib/glmsgs.py,sha256=3wqw8Hq-l2n_TGkf7xhjQS9W6Xz5Ic2ErgsW3h-7qNM,33465
|
|
35
|
-
gam/gamlib/glskus.py,sha256=
|
|
35
|
+
gam/gamlib/glskus.py,sha256=xJ1E2BZ_CGHN6I19c9i8DApb5bT5VT-hGyMEmQ5hSRY,15241
|
|
36
36
|
gam/gamlib/gluprop.py,sha256=IyPLCyvn7-NHTUenM71YPQPXRZXx6CB5q-GtJ-FYd1c,11461
|
|
37
|
-
gam/gamlib/glverlibs.py,sha256=
|
|
37
|
+
gam/gamlib/glverlibs.py,sha256=A8rvegBF2nD6etbBRb8hsv-oZyjpD4VcUQ8PffW-bqU,992
|
|
38
38
|
gam/gamlib/yubikey.py,sha256=-UC-3oue9qarYK3LT7YL6Gmqs7TMK8oz9_AoxdaG2FA,7925
|
|
39
39
|
gam/gdata/__init__.py,sha256=uvjmSza2EdL7lGaoJ04-uXHGeYa0i1dBQHIetBybcUQ,29637
|
|
40
40
|
gam/gdata/service.py,sha256=CuImJDRVcNMM1dfo7V6T0LrztzqTNrIraaLkHXpL0Tw,70045
|
|
@@ -65,8 +65,8 @@ gam/googleapiclient/discovery_cache/base.py,sha256=yCDPtxnbNN-p5_9fzBacC6P3wcUPl
|
|
|
65
65
|
gam/googleapiclient/discovery_cache/file_cache.py,sha256=sim3Mg4HgRYo3vX75jvcKy_aV568EvIrtBfvfbw-044,4774
|
|
66
66
|
gam/iso8601/__init__.py,sha256=Z2PsYbXgAH5a5xzUvgczCboPzqWpm65kRcIngCnhViU,1218
|
|
67
67
|
gam/iso8601/iso8601.py,sha256=Li2FHZ4sBTWuthuQhyCvmvj0j6At8JbGzkSv2fc2RHU,4384
|
|
68
|
-
gam7-7.6.
|
|
69
|
-
gam7-7.6.
|
|
70
|
-
gam7-7.6.
|
|
71
|
-
gam7-7.6.
|
|
72
|
-
gam7-7.6.
|
|
68
|
+
gam7-7.6.10.dist-info/METADATA,sha256=AITd3cwIDQIkMkcnlrl1s1JP5wEQpsI09Om_xvupaDA,2963
|
|
69
|
+
gam7-7.6.10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
70
|
+
gam7-7.6.10.dist-info/entry_points.txt,sha256=HVUM5J7dA8YwvJfG30jiLefR19ExMs387TWugWd9sf4,42
|
|
71
|
+
gam7-7.6.10.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
72
|
+
gam7-7.6.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|