├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── agoTools ├── __init__.py ├── admin.py └── utilities.py ├── license.txt ├── samples ├── AGO Tools.tbx ├── AGOLCat.py ├── MakeLab_CreateGroupAndSequentialUsers.py ├── MakeLab_CreateGroupAndUsersFromCsv.py ├── addNewUsersToGroups.py ├── clearFolder.py ├── clearGroup.py ├── createUserListCSV.py ├── createUserListWithGroups.py ├── deleteItems.py ├── findItemsContainingUrl.py ├── flagAttachments.py ├── listUsersByGroup.py ├── migrateAccount.py ├── moveItemsReassignGroups.py ├── populateBookmarks.py ├── registerItems.py ├── searchAllUserItems.py ├── searchExamples.py ├── searchTopViewedItems.py ├── shareItems.py ├── updateMapServiceUrlsInWebMaps.py ├── updateRegisteredUrlForServiceOrApp.py ├── updateServiceItemsThumbnail.py ├── updateUserRoles.py └── updateWebMapVersionAGX.py ├── search-cheat-sheet.md └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/README.md -------------------------------------------------------------------------------- /agoTools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/agoTools/__init__.py -------------------------------------------------------------------------------- /agoTools/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/agoTools/admin.py -------------------------------------------------------------------------------- /agoTools/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/agoTools/utilities.py -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/license.txt -------------------------------------------------------------------------------- /samples/AGO Tools.tbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/AGO Tools.tbx -------------------------------------------------------------------------------- /samples/AGOLCat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/AGOLCat.py -------------------------------------------------------------------------------- /samples/MakeLab_CreateGroupAndSequentialUsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/MakeLab_CreateGroupAndSequentialUsers.py -------------------------------------------------------------------------------- /samples/MakeLab_CreateGroupAndUsersFromCsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/MakeLab_CreateGroupAndUsersFromCsv.py -------------------------------------------------------------------------------- /samples/addNewUsersToGroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/addNewUsersToGroups.py -------------------------------------------------------------------------------- /samples/clearFolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/clearFolder.py -------------------------------------------------------------------------------- /samples/clearGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/clearGroup.py -------------------------------------------------------------------------------- /samples/createUserListCSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/createUserListCSV.py -------------------------------------------------------------------------------- /samples/createUserListWithGroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/createUserListWithGroups.py -------------------------------------------------------------------------------- /samples/deleteItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/deleteItems.py -------------------------------------------------------------------------------- /samples/findItemsContainingUrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/findItemsContainingUrl.py -------------------------------------------------------------------------------- /samples/flagAttachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/flagAttachments.py -------------------------------------------------------------------------------- /samples/listUsersByGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/listUsersByGroup.py -------------------------------------------------------------------------------- /samples/migrateAccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/migrateAccount.py -------------------------------------------------------------------------------- /samples/moveItemsReassignGroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/moveItemsReassignGroups.py -------------------------------------------------------------------------------- /samples/populateBookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/populateBookmarks.py -------------------------------------------------------------------------------- /samples/registerItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/registerItems.py -------------------------------------------------------------------------------- /samples/searchAllUserItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/searchAllUserItems.py -------------------------------------------------------------------------------- /samples/searchExamples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/searchExamples.py -------------------------------------------------------------------------------- /samples/searchTopViewedItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/searchTopViewedItems.py -------------------------------------------------------------------------------- /samples/shareItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/shareItems.py -------------------------------------------------------------------------------- /samples/updateMapServiceUrlsInWebMaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/updateMapServiceUrlsInWebMaps.py -------------------------------------------------------------------------------- /samples/updateRegisteredUrlForServiceOrApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/updateRegisteredUrlForServiceOrApp.py -------------------------------------------------------------------------------- /samples/updateServiceItemsThumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/updateServiceItemsThumbnail.py -------------------------------------------------------------------------------- /samples/updateUserRoles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/updateUserRoles.py -------------------------------------------------------------------------------- /samples/updateWebMapVersionAGX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/samples/updateWebMapVersionAGX.py -------------------------------------------------------------------------------- /search-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/search-cheat-sheet.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/ago-tools/HEAD/setup.py --------------------------------------------------------------------------------