I'm using the Python api to iterate through maps in one of my folders, and it is only finding some of them. All the maps were created by me, and have the exact same permissions and settings. In fact all of the maps were created by a script that saves a copy from a template, so I know they are exactly the same.
The maps are indeed in the folder. I can see them when I use my browser. I have no clue what's going on.
Has anyone else had this issue?
Basic search code:
for item in gis.users.me.items(folder = FOLDER_NAME):
if item.type == 'Web Map':
print(item.title)