Any have suggestions?
Anthony,
You can use the ArcGIS API for Python to do this. For example:
from arcgis.gis import GIS
portal = "https://arcgis.com"username = "xyz"password = "xyz"gis = GIS(portal, username, password)
item = gis.content.get('xyz')
csv = item.export("TEST", "CSV")
csv.download(r"C:\temp", "TESTING.csv")
Hope this helps!
-Josh
Les membres connectés peuvent publier, suivre les mises à jour, et plus encore. Nouveau ici ? Inscrivez-vous gratuitement.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.