Skip to content
This repository was archived by the owner on Mar 31, 2020. It is now read-only.

Attribute error 'module' object has no attribute 'create_default_context #341

@hughespc

Description

@hughespc

Python code
federated portal site.

import arcrest
#login to the site
username = 'xxxxx'#Username
password = 'xxx'#password
org_url='https://soa-nbo-gis07:7443/arcgis/sharing/rest'
tokenUrl='https://soa-nbo-gis07:7443/arcgis/sharing/rest/generateToken'
sh = arcrest.PortalTokenSecurityHandler(username=username, password=password,org_url=org_url,token_url=tokenUrl)
admin = arcrest.manageorg.Administration(securityHandler=sh)
content = admin.content

Get a list of all users

def getAllUsers(admin, portalId=None):
"""
returns all the users for a given AGOL

   Inputs:
      portalId - unique id of the portal
      admin - manageorg.Administration object
   Output:
      returns a list of the users
"""
start = 1
num = 100
portals = admin.portals
pp = portals.portal(portalID=portalId)
count = 0
nextStart = 0
results = []
while nextStart > -1:
    users = pp.users(start=start + (num * count),
                     num=num)
    results = results + users['users']
    count += 1
    nextStart = users['nextStart']
    del users
return results

all_users = getAllUsers(admin=admin)

Iterate through all content in each folder for each user

for currentUser in all_users:
print("Looking at user: %s" % currentUser.username)
uc = currentUser.userContent
for folder in uc.folders:
uc.currentFolder =folder['title']
print (' --------------------------------------------')
print (" In folder: %s" % folder['title'])
for item in uc.items:
print(" - %s" % item.title)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions