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

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

Open
hughespc opened this issue May 29, 2017 · 2 comments
Open

Comments

@hughespc
Copy link

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)

@MikeMillerGIS
Copy link
Member

MikeMillerGIS commented May 29, 2017 via email

@hughespc
Copy link
Author

hughespc commented May 30, 2017 via email

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants