<?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 Re: Create View of Hosted Feature Service using Python API in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16933#M865</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried to get it work with the last version of the API (1.5) following the documentation but I get the same error message.&amp;nbsp;Is there a chance to get an answer from Esri Python team ?&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/425013_screenshot.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Oct 2018 17:52:28 GMT</pubDate>
    <dc:creator>GaëtanLAVENU</dc:creator>
    <dc:date>2018-10-22T17:52:28Z</dc:date>
    <item>
      <title>Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16926#M858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has anyone used the Python API to create Views of a hosted feature service on ArcGIS Online?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a hosted feature service (type = feature layer collection) and want to automate creation of Views. The arcgis.gis module has a method called &lt;A href="https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.gis.toc.html#arcgis.gis.ContentManager.create_service"&gt;create_service&lt;/A&gt;&amp;nbsp;with an optional parameter to specify if the service is a View.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tested this on a dummy feature service. See the python below that results in an error ('Item' object has no attribute 'create_service').&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from arcgis.gis import GIS&lt;/P&gt;&lt;P&gt;from arcgis.gis import ContentManager&lt;BR /&gt;&lt;SPAN&gt;mygis = GIS("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fwww.arcgis.com" rel="nofollow" target="_blank"&gt;https://www.arcgis.com&lt;/A&gt;&lt;SPAN&gt;", "&lt;/SPAN&gt;&lt;EM&gt;username&lt;/EM&gt;", "&lt;EM&gt;password&lt;/EM&gt;")&lt;BR /&gt;GMitem = mygis.content.get('&lt;EM&gt;itemID&lt;/EM&gt;')&lt;/P&gt;&lt;P&gt;GMitem.create_service(name = "GM_COPY_Reg1",is_view = TRUE)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2018 18:17:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16926#M858</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2018-02-15T18:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16927#M859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mitch,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I haven't actually used the ArcGIS Python API yet (I really need to get on that!). However, from the API docs it appears that the create_service is a method that is called on an instance of the ContentManager class. See the description for the ContentManager class:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;SPAN style="color: #404040; background-color: #fcfcfc;"&gt;Helper class for managing content in ArcGIS Online or ArcGIS Enterprise. This class is not created by users directly. An instance of this class, called ‘content’, is available as a property of the GIS object. Users call methods on this ‘content’ object to manipulate (create, get, search, etc) items.&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it sounds like the last line of code maybe should actually be:&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;mygis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;create_service&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;name &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"GM_COPY_Reg1"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;is_view &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt;&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Also, just a note on your syntax: the is_view parameter should probably be title case, not all caps. I think Python will only recognize a boolean as "True" and not "true" or "TRUE".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Micah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2018 19:45:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16927#M859</guid>
      <dc:creator>MicahBabinski</dc:creator>
      <dc:date>2018-02-15T19:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16928#M860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Micah,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That does help. I see now that the method creates an empty feature service.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mitch&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2018 00:36:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16928#M860</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2018-02-16T00:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16929#M861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mitch. Happy to help. I really need to get into that Python API it looks awesome. Mind marking me correct if that indeed did the trick?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2018 14:45:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16929#M861</guid>
      <dc:creator>MicahBabinski</dc:creator>
      <dc:date>2018-02-16T14:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16930#M862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mitch,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I achieved the same, an empty feature service view. Did you make it work properly? i.e. view related to feature service...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xabier&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2018 07:46:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16930#M862</guid>
      <dc:creator>XabierVelasco_Echeverría</dc:creator>
      <dc:date>2018-08-08T07:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16931#M863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, here it is the answer&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/193315-how-to-create-a-feature-layer-view-in-agol"&gt;https://community.esri.com/thread/193315-how-to-create-a-feature-layer-view-in-agol&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2018 10:00:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16931#M863</guid>
      <dc:creator>XabierVelasco_Echeverría</dc:creator>
      <dc:date>2018-08-08T10:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16932#M864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xabier,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did get it to work with the below in the past. But it now no longer works, I get a "Key Error: 'itemId'". I also could never figure out how to specify the view_layers portion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from arcgis import GIS, features&lt;BR /&gt;&lt;SPAN&gt;mygis = GIS("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fwww.arcgis.com" rel="nofollow" target="_blank"&gt;https://www.arcgis.com&lt;/A&gt;&lt;SPAN&gt;", username, password)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;flc = features.managers.FeatureLayerCollectionManager(&lt;EM&gt;url of feature server&lt;/EM&gt;,mygis)&lt;BR /&gt;flc.create_view("GM_copy_view", capabilities = 'Update,Editing,Query,Create,Sync')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2018 13:56:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16932#M864</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2018-08-09T13:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16933#M865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried to get it work with the last version of the API (1.5) following the documentation but I get the same error message.&amp;nbsp;Is there a chance to get an answer from Esri Python team ?&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/425013_screenshot.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2018 17:52:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16933#M865</guid>
      <dc:creator>GaëtanLAVENU</dc:creator>
      <dc:date>2018-10-22T17:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16934#M866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sinon ça va l’ami ?&lt;/P&gt;&lt;P&gt;Ai eu le plaisir de voir ta compagne en Webex il y a 1 mois ☺&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;La bise à vous deux,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Y&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;De : Gaëtan LAVENU &lt;/P&gt;&lt;P&gt;Envoyé : lundi 22 octobre 2018 19:53&lt;/P&gt;&lt;P&gt;À : Kacenelen Yann&lt;/P&gt;&lt;P&gt;Objet : Re:  - Re: Create View of Hosted Feature Service using Python API&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GeoNet &amp;lt;https://community.esri.com/?et=watches.email.thread&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re: Create View of Hosted Feature Service using Python API&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from Gaëtan LAVENU&amp;lt;https://community.esri.com/people/glavenuesrifrance-fr-esridist?et=watches.email.thread&amp;gt; in ArcGIS Online - View the full discussion&amp;lt;https://community.esri.com/message/807912-re-create-view-of-hosted-feature-service-using-python-api?commentID=807912&amp;amp;et=watches.email.thread#comment-807912&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Oct 2018 14:32:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16934#M866</guid>
      <dc:creator>YannKACENELEN</dc:creator>
      <dc:date>2018-10-29T14:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16935#M867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function works ok&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;def&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;crearVista&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;coleccionFeatures&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; nombreVista&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; permisos&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; capas&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; edicionGeometria&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; limiteConsulta&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; gruposAGOL&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;global&lt;/SPAN&gt; vflc &lt;SPAN class="comment token"&gt;## Declaración uso variable global para usarla fuera de la función&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;global&lt;/SPAN&gt; itemVista
&amp;nbsp;&amp;nbsp;&amp;nbsp; vflc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; itemVista &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;# Eliminar vista si existe&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"nombreVista: "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; nombreVista&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; items &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;nombreVista&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Feature Layer Collection"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; items&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vistaExistente &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;get&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;items&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;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;itemid&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"vista para eliminar: "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;items&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;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;itemid&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vistaExistente&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;delete&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"vista eliminada"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;# Crear vista&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; vista &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; coleccionFeatures&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;manager&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;create_view&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;name&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;nombreVista&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; spatial_reference&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;None&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; extent&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;None&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; allow_schema_changes&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; updateable&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; capabilities&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;permisos&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; view_layers&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;capas&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; itemVista &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;get&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;vista&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;itemid&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"itemVista: "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;vista&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;itemid&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; vflc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcgis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;features&lt;SPAN class="punctuation 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;itemVista&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"vflc: "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; str&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;vflc&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 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;'maxRecordCount'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; limiteConsulta&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'allowGeometryUpdates'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; edicionGeometria&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;## Se señalan 25.000 puesto que es el límite máximo de todos los elementos consultables, incluyendo establecimientos que es la capa que más elementos puede tener (parcelas y naves solo se consideran las disponibles para el límite, etc.)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; vflc&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;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; grupo &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; gruposAGOL&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;grupo&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; idGrupo &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; gis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;groups&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;search&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;grupo&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&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;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;groupid
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;idGrupo&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; idGrupo&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; itemVista&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;share&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;groups&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;idGrupo&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; msg &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; u&lt;SPAN class="string token"&gt;"ATENCIÓN: grupo "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; grupo &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; u&lt;SPAN class="string token"&gt;" sin asignar permisos para el servicio de vista "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; nombreVista
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;msg&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;AddWarning&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;msg&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;return&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;/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;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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:40:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16935#M867</guid>
      <dc:creator>XabierVelasco_Echeverría</dc:creator>
      <dc:date>2021-12-10T20:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16936#M868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unwanted reply…&lt;/P&gt;&lt;P&gt;How can I be unsubscribed from this thread?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;De : Xabier Velasco Echeverría &lt;/P&gt;&lt;P&gt;Envoyé : lundi 29 octobre 2018 15:40&lt;/P&gt;&lt;P&gt;À : Kacenelen Yann&lt;/P&gt;&lt;P&gt;Objet : Re:  - Re: Create View of Hosted Feature Service using Python API&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GeoNet &amp;lt;https://community.esri.com/?et=watches.email.thread&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re: Create View of Hosted Feature Service using Python API&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from Xabier Velasco Echeverría&amp;lt;https://community.esri.com/people/NASUVINSA?et=watches.email.thread&amp;gt; in ArcGIS Online - View the full discussion&amp;lt;https://community.esri.com/message/809323-re-create-view-of-hosted-feature-service-using-python-api?commentID=809323&amp;amp;et=watches.email.thread#comment-809323&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Oct 2018 14:44:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16936#M868</guid>
      <dc:creator>YannKACENELEN</dc:creator>
      <dc:date>2018-10-29T14:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16937#M869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Xabier,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your answer. Creating the view and then updating its definition is the&amp;nbsp;good the solution for my Python script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gaëtan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2018 08:40:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16937#M869</guid>
      <dc:creator>GaëtanLAVENU</dc:creator>
      <dc:date>2018-10-31T08:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16938#M870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found this thread very helpful, I just needed to create a hosted view that had a definition query, very simple and just a few lines of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make sure you have the feature layer collection referenced&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;item_id&amp;gt; is the item number of the hosted feature layer you want to create the view from.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from arcgis.gis import GIS&lt;BR /&gt;from arcgis.features import FeatureSet, Feature, FeatureLayer,FeatureCollection,FeatureLayerCollection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;username =&amp;nbsp;&amp;lt;uname&amp;gt;&lt;BR /&gt; password =&amp;nbsp;&amp;lt;pwd&amp;gt;&lt;BR /&gt; gis = GIS(&amp;lt;agol_url&amp;gt;, username, password)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;expItem = gis.content.get(&amp;lt;item_id&amp;gt;)&lt;BR /&gt; flc = FeatureLayerCollection.fromitem(expItem)&lt;/P&gt;&lt;P&gt;theVw = flc.manager.create_view(name="&amp;lt;layer_name&amp;gt;",capabilities='Query',view_layers=[flc.layers[0]])&lt;/P&gt;&lt;P&gt;theVw.layers[0].manager.update_definition({'viewDefinitionQuery': 'placename is not null'})&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope people find this simple example helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-bert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 May 2019 15:36:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16938#M870</guid>
      <dc:creator>RobertMEIER</dc:creator>
      <dc:date>2019-05-07T15:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16939#M871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi Xabier&lt;BR /&gt;its function "def createVista (...)" works very well with the Feature Layer layer with geometry.&lt;BR /&gt;Thank you.&lt;BR /&gt;I need to work with a "table." I need to create a view from an alphanumeric TABLE.&lt;BR /&gt;The collectionFeatures.manager.create_view (….) Function fails to enter the spatial reference parameter.&lt;BR /&gt;even setting the value "None".&lt;BR /&gt;Do you know how to make a view from a Table Hosted service?&lt;/DIV&gt;&lt;DIV&gt;Thank you&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Oct 2019 14:03:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16939#M871</guid>
      <dc:creator>José_AntonioAnta_Viguera</dc:creator>
      <dc:date>2019-10-16T14:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16940#M872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently it is not possible to create a view from a hosted table using the ArcGIS Python API. That is the answer I got from ESRI. I suggested an ArcGIS Idea, feel free to vote for it&lt;/P&gt;&lt;P&gt;https://community.esri.com/ideas/16757-python-api-create-view-for-hosted-table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;De: José Antonio Anta Viguera &lt;/P&gt;&lt;P&gt;Enviado el: miércoles, 16 de octubre de 2019 16:05&lt;/P&gt;&lt;P&gt;Para: Velasco Echeverria, Xabier (NASUVINSA)&lt;/P&gt;&lt;P&gt;Asunto: Re:  - Re: Create View of Hosted Feature Service using Python API&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GeoNet, The Esri Community | GIS and Geospatial Professional Community &amp;lt;https://community.esri.com/?et=watches.email.thread&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re: Create View of Hosted Feature Service using Python API&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from José Antonio Anta Viguera&amp;lt;https://community.esri.com/people/joseantonio.antaesri-es-esridist?et=watches.email.thread&amp;gt; in ArcGIS Online - View the full discussion&amp;lt;https://community.esri.com/message/884687-re-create-view-of-hosted-feature-service-using-python-api?commentID=884687&amp;amp;et=watches.email.thread#comment-884687&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2019 06:45:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16940#M872</guid>
      <dc:creator>XabierVelasco_Echeverría</dc:creator>
      <dc:date>2019-10-17T06:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create View of Hosted Feature Service using Python API</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16941#M873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you very much&lt;/P&gt;&lt;P&gt;I will solve&amp;nbsp;my project using Javascript with the REST API directly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2019 07:52:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/create-view-of-hosted-feature-service-using-python/m-p/16941#M873</guid>
      <dc:creator>José_AntonioAnta_Viguera</dc:creator>
      <dc:date>2019-10-17T07:52:48Z</dc:date>
    </item>
  </channel>
</rss>

