Hello,
Is anyone able to get this script to bulk create users from a csv working?
I keep getting the error that raw_input is not defined?
Thank you for any help.
It sounds like you're using Python 3.X to run that example, instead of Python 2.X. "raw_input()" was changed to be "input()" at 3.X so I would try updating that piece and see if that removes the error
Thank you for your response. If I try with "input()" i get this error message:
RuntimeError: input(): lost sys.stdin
I also get errors that the print statements dont have parenthesis, but I added them. I'm just wondering, is this script meant to run from ArcGIS Pro's Python IDLE?