<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Enable &amp;quot;Export Data&amp;quot; with the ArcGIS API for Python in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/729946#M192</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to toggle on/off the "&lt;EM&gt;Export Data - Allow others to export to different formats&lt;/EM&gt;" option for a hosted feature layer from the ArcGIS API for Python?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/441522_2019-04-09_13-59-46.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Apr 2019 06:01:28 GMT</pubDate>
    <dc:creator>davehorsey1</dc:creator>
    <dc:date>2019-04-09T06:01:28Z</dc:date>
    <item>
      <title>Enable "Export Data" with the ArcGIS API for Python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/729946#M192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to toggle on/off the "&lt;EM&gt;Export Data - Allow others to export to different formats&lt;/EM&gt;" option for a hosted feature layer from the ArcGIS API for Python?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/441522_2019-04-09_13-59-46.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Apr 2019 06:01:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/729946#M192</guid>
      <dc:creator>davehorsey1</dc:creator>
      <dc:date>2019-04-09T06:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Enable "Export Data" with the ArcGIS API for Python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/729947#M193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, you can do this with the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcgis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;gis &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; GIS
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcgis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;features &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; FeatureLayerCollection
gis &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; GIS&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"https://www.arcgis.com"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"jskinner_CountySandbox"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"*******"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

search_results &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; gis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;content&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;search&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'title: MD_Traffic_Cameras'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'Feature Layer'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
traffic_cameras_item &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; search_results&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
trafficCameras_flc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; FeatureLayerCollection&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;fromitem&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;traffic_cameras_item&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;trafficCameras_flc&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;properties&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

update_dict &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'capabilities'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'Query,Extract'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
trafficCameras_flc&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;manager&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;update_definition&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;update_dict&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;trafficCameras_flc&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;properties&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The service previously only had 'Query' capabilities.&amp;nbsp; The above code will now enable 'Extract' which will allow others to export the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:10:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/729947#M193</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-12T07:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Enable "Export Data" with the ArcGIS API for Python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/729948#M194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's great, thanks &lt;A href="https://community.esri.com/migrated-users/8586"&gt;Jake Skinner&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Apr 2019 14:08:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/729948#M194</guid>
      <dc:creator>davehorsey1</dc:creator>
      <dc:date>2019-04-09T14:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Enable "Export Data" with the ArcGIS API for Python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/1121145#M6856</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;What would be the way to add/publish a feature layer without the export capabilities?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Marcelo&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 07:06:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/1121145#M6856</guid>
      <dc:creator>MarceloRosensaft</dc:creator>
      <dc:date>2021-11-30T07:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: Enable "Export Data" with the ArcGIS API for Python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/1155300#M7252</link>
      <description>&lt;P&gt;I'd assume you follow Jake's example above, but just set it to "Query".&lt;/P&gt;</description>
      <pubDate>Fri, 18 Mar 2022 17:10:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/1155300#M7252</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2022-03-18T17:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: Enable "Export Data" with the ArcGIS API for Python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/1155324#M7253</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/10527"&gt;@JakeSkinner&lt;/a&gt;&amp;nbsp; - Where can I find documentation on these options? If I go to the documentation for&amp;nbsp;&lt;A href="https://developers.arcgis.com/python/api-reference/arcgis.features.managers.html?highlight=featurelayercollectionmanager#arcgis.features.managers.FeatureLayerCollectionManager" target="_self"&gt;FeatureLayerCollectionManager&lt;/A&gt;, that has the &lt;A href="https://developers.arcgis.com/python/api-reference/arcgis.features.managers.html?highlight=featurelayercollectionmanager#arcgis.features.managers.FeatureLayerCollectionManager.update_definition" target="_self"&gt;update_definition&lt;/A&gt; method, which says it's just like the '&lt;A href="https://developers.arcgis.com/python/api-reference/arcgis.features.managers.html?highlight=featurelayercollectionmanager#arcgis.features.managers.FeatureLayerCollectionManager.properties" target="_self"&gt;properties&lt;/A&gt;' property, but that documentation is missing.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dcafdg_0-1647625795010.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/36742i95441EE29F75CAE2/image-size/large?v=v2&amp;amp;px=999" role="button" title="dcafdg_0-1647625795010.png" alt="dcafdg_0-1647625795010.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'd love to know more about this specifically, but in general,&amp;nbsp;I often find myself in cases like this&amp;nbsp;&lt;SPAN&gt;where I'm passing in JSON or a dict and it's real guesswork as to what all the options are. After hitting a dead end on the documentation,&amp;nbsp;&lt;/SPAN&gt;I end up googling for an answer, which leads me here to GeoNet or to the samples. Sometimes, these solve the problem, but not always, so I'm wondering if there's a better way. thanks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Mar 2022 18:01:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/1155324#M7253</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2022-03-18T18:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: Enable "Export Data" with the ArcGIS API for Python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/1158185#M7262</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/331220"&gt;@davedoesgis&lt;/a&gt;&amp;nbsp;I'm having trouble locating the documentation as well.&amp;nbsp; One way is to print the properties of a feature layer collection.&amp;nbsp; A good example of this can be found here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/python/guide/updating-feature-layer-properties/" target="_blank"&gt;https://developers.arcgis.com/python/guide/updating-feature-layer-properties/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2022 15:45:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/1158185#M7262</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2022-03-27T15:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Enable "Export Data" with the ArcGIS API for Python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/1158492#M7264</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/10527"&gt;@JakeSkinner&lt;/a&gt;&amp;nbsp; - Yeah, I often put my IDE into debug mode to view the properties of something. When it's an object with properties, that's usually all I need (in this case it's a free-form dict, so not helpful). Or if I can, I use AGOL Assistant on an item with the properties I want to emulate (in this case, you have to guess that extract means export). Or I use Google and find other users wandering around in the dark helping each other. But none of those would be necessary if there were even a base level of documentation! Can you tag some people at Esri or forward a link to this thread to show them how frustrating this can be? The screenshot I posted above perfectly illustrates how much documentation is missing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 17:48:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/enable-quot-export-data-quot-with-the-arcgis-api/m-p/1158492#M7264</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2022-03-28T17:48:40Z</dc:date>
    </item>
  </channel>
</rss>

