get a list of all arcgis items with arcgis python module

12730
10
03-31-2018 06:13 PM
JohnBroecher
New Contributor III

Is it possible to get a list of all arcgis online items with the python module?

10 Replies
SolanaFoo2
Occasional Contributor

I got it to work but was not getting all results. Turns out there's a default of 100 items returned max. I had to explicitly change that to see everything:

folder_items = user.items(folder=folder['title'],max_items=1000)

0 Kudos