gam7 7.9.5__py3-none-any.whl → 7.9.6__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 +7 -7
- {gam7-7.9.5.dist-info → gam7-7.9.6.dist-info}/METADATA +1 -1
- {gam7-7.9.5.dist-info → gam7-7.9.6.dist-info}/RECORD +6 -6
- {gam7-7.9.5.dist-info → gam7-7.9.6.dist-info}/WHEEL +0 -0
- {gam7-7.9.5.dist-info → gam7-7.9.6.dist-info}/entry_points.txt +0 -0
- {gam7-7.9.5.dist-info → gam7-7.9.6.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.09.
|
|
28
|
+
__version__ = '7.09.06'
|
|
29
29
|
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
|
30
30
|
|
|
31
31
|
#pylint: disable=wrong-import-position
|
|
@@ -65775,13 +65775,13 @@ def printShowSharedDrives(users, useDomainAdminAccess=False):
|
|
|
65775
65775
|
entityPerformActionNumItems([Ent.USER, user], jcount, Ent.SHAREDDRIVE, i, count)
|
|
65776
65776
|
Ind.Increment()
|
|
65777
65777
|
j = 0
|
|
65778
|
-
for shareddrive in matchedFeed:
|
|
65778
|
+
for shareddrive in sorted(matchedFeed, key=lambda k: k['name']):
|
|
65779
65779
|
j += 1
|
|
65780
65780
|
shareddrive = stripNonShowFields(shareddrive)
|
|
65781
65781
|
_showSharedDrive(user, shareddrive, j, jcount, FJQC)
|
|
65782
65782
|
Ind.Decrement()
|
|
65783
65783
|
else:
|
|
65784
|
-
for shareddrive in matchedFeed:
|
|
65784
|
+
for shareddrive in sorted(matchedFeed, key=lambda k: k['name']):
|
|
65785
65785
|
shareddrive = stripNonShowFields(shareddrive)
|
|
65786
65786
|
if FJQC.formatJSON:
|
|
65787
65787
|
row = {'User': user, 'id': shareddrive['id'], 'name': shareddrive['name']}
|
|
@@ -66156,7 +66156,7 @@ def printShowSharedDriveACLs(users, useDomainAdminAccess=False):
|
|
|
66156
66156
|
entityPerformActionNumItems([Ent.USER, user], jcount, Ent.SHAREDDRIVE, i, count)
|
|
66157
66157
|
Ind.Increment()
|
|
66158
66158
|
j = 0
|
|
66159
|
-
for shareddrive in matchFeed:
|
|
66159
|
+
for shareddrive in sorted(matchFeed, key=lambda k: k['name']):
|
|
66160
66160
|
j += 1
|
|
66161
66161
|
if not FJQC.formatJSON:
|
|
66162
66162
|
_showDriveFilePermissions(Ent.SHAREDDRIVE, f'{shareddrive["name"]} ({shareddrive["id"]}) - {shareddrive["createdTime"]}',
|
|
@@ -66170,7 +66170,7 @@ def printShowSharedDriveACLs(users, useDomainAdminAccess=False):
|
|
|
66170
66170
|
Ind.Decrement()
|
|
66171
66171
|
elif matchFeed:
|
|
66172
66172
|
if oneItemPerRow:
|
|
66173
|
-
for shareddrive in matchFeed:
|
|
66173
|
+
for shareddrive in sorted(matchFeed, key=lambda k: k['name']):
|
|
66174
66174
|
baserow = {'User': user, 'id': shareddrive['id'], 'name': shareddrive['name'], 'createdTime': shareddrive['createdTime']}
|
|
66175
66175
|
if addCSVData:
|
|
66176
66176
|
baserow.update(addCSVData)
|
|
@@ -66191,7 +66191,7 @@ def printShowSharedDriveACLs(users, useDomainAdminAccess=False):
|
|
|
66191
66191
|
baserow['JSON'] = json.dumps({})
|
|
66192
66192
|
csvPF.WriteRowNoFilter(baserow)
|
|
66193
66193
|
else:
|
|
66194
|
-
for shareddrive in matchFeed:
|
|
66194
|
+
for shareddrive in sorted(matchFeed, key=lambda k: k['name']):
|
|
66195
66195
|
baserow = {'User': user, 'id': shareddrive['id'], 'name': shareddrive['name'], 'createdTime': shareddrive['createdTime']}
|
|
66196
66196
|
if addCSVData:
|
|
66197
66197
|
baserow.update(addCSVData)
|
|
@@ -66392,7 +66392,7 @@ def printSharedDriveOrganizers(users, useDomainAdminAccess=False):
|
|
|
66392
66392
|
pass
|
|
66393
66393
|
if len(matchFeed) == 0:
|
|
66394
66394
|
setSysExitRC(NO_ENTITIES_FOUND_RC)
|
|
66395
|
-
for shareddrive in matchFeed:
|
|
66395
|
+
for shareddrive in sorted(matchFeed, key=lambda k: k['name']):
|
|
66396
66396
|
row = {'id': shareddrive['id'], 'name': shareddrive['name'],
|
|
66397
66397
|
'organizers': delimiter.join(shareddrive['organizers']),
|
|
66398
66398
|
'createdTime': shareddrive['createdTime']}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
gam/__init__.py,sha256=
|
|
1
|
+
gam/__init__.py,sha256=9flFZ9sSu5HlaGowOrLIu1Gf0LVUmvJWmesuSq9Oj1Y,3522070
|
|
2
2
|
gam/__main__.py,sha256=amz0-959ph6zkZKqjaar4n60yho-T37w6qWI36qx0CA,1049
|
|
3
3
|
gam/cacerts.pem,sha256=82Ak7btW_2XvocLUvAwPmpx8Chi0oqtZUG1gseLK_t4,50235
|
|
4
4
|
gam/cbcm-v1.1beta1.json,sha256=xO5XloCQQULmPbFBx5bckdqmbLFQ7sJ2TImhE1ysDIY,19439
|
|
@@ -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.9.
|
|
69
|
-
gam7-7.9.
|
|
70
|
-
gam7-7.9.
|
|
71
|
-
gam7-7.9.
|
|
72
|
-
gam7-7.9.
|
|
68
|
+
gam7-7.9.6.dist-info/METADATA,sha256=bFM0_xrXgaSAFpW9SvrCqwZnlbdUT-VQeIPxR8tdPiw,2977
|
|
69
|
+
gam7-7.9.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
70
|
+
gam7-7.9.6.dist-info/entry_points.txt,sha256=HVUM5J7dA8YwvJfG30jiLefR19ExMs387TWugWd9sf4,42
|
|
71
|
+
gam7-7.9.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
72
|
+
gam7-7.9.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|