<?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: Documentation for **kwargs GeoAccessor to_table method in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/documentation-for-kwargs-geoaccessor-to-table/m-p/1497959#M10256</link>
    <description>&lt;P&gt;C:\... install folder ... \bin\Python\envs\arcgispro-py3\Lib\site-packages\arcgis\features\geo\_accessor.py&lt;/P&gt;&lt;P&gt;line&amp;nbsp; 2740&amp;nbsp; just imports&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;from arcgis.features.geo._io.fileops import to_table&lt;/P&gt;&lt;P&gt;and there are no other args there other than those from the leading call&lt;/P&gt;&lt;P&gt;Addendum&lt;/P&gt;&lt;P&gt;Just because **kwargs is present in a function doesn't mean that there has to be any, it can just be a placeholder incase a function, whether directly, or passed through, might need a keyword argument (and not a positional argument)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Jun 2024 23:34:09 GMT</pubDate>
    <dc:creator>DanPatterson</dc:creator>
    <dc:date>2024-06-26T23:34:09Z</dc:date>
    <item>
      <title>Documentation for **kwargs GeoAccessor to_table method</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/documentation-for-kwargs-geoaccessor-to-table/m-p/1497950#M10251</link>
      <description>&lt;P&gt;The GeoAccessor documentation mentions the to_table accepts additional keywords **kwargs.&amp;nbsp; Is there any further documentation on what the kwargs are?&amp;nbsp; Thank you.&amp;nbsp; Tyler&lt;BR /&gt;&lt;BR /&gt;from&amp;nbsp;&lt;A href="https://developers.arcgis.com/python/api-reference/arcgis.features.toc.html#geoaccessor" target="_blank"&gt;https://developers.arcgis.com/python/api-reference/arcgis.features.toc.html#geoaccessor&lt;/A&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TylerT_0-1719441908954.png" style="width: 598px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/108041iB6BC488B37744177/image-dimensions/598x372?v=v2" width="598" height="372" role="button" title="TylerT_0-1719441908954.png" alt="TylerT_0-1719441908954.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2024 22:48:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/documentation-for-kwargs-geoaccessor-to-table/m-p/1497950#M10251</guid>
      <dc:creator>TylerT</dc:creator>
      <dc:date>2024-06-26T22:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Documentation for **kwargs GeoAccessor to_table method</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/documentation-for-kwargs-geoaccessor-to-table/m-p/1497957#M10255</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you go into the module files, particularly &lt;STRONG&gt;/features/geo/_accessor.py&lt;/STRONG&gt;, you can find the function defined there. The only keyword not given explicitly in the &lt;STRONG&gt;def&lt;/STRONG&gt; line is &lt;STRONG&gt;sanitize_columns&lt;/STRONG&gt;, so it seems the keywords are all documented in the page in your screenshot.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;def to_table(self, location, overwrite=True, **kwargs):

# rest of stuff goes here

    **{
        "geo": self,
        "location": location,
        "overwrite": overwrite,
        "sanitize_columns": sanitize_columns,
    },&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2024 23:06:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/documentation-for-kwargs-geoaccessor-to-table/m-p/1497957#M10255</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-06-26T23:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: Documentation for **kwargs GeoAccessor to_table method</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/documentation-for-kwargs-geoaccessor-to-table/m-p/1497959#M10256</link>
      <description>&lt;P&gt;C:\... install folder ... \bin\Python\envs\arcgispro-py3\Lib\site-packages\arcgis\features\geo\_accessor.py&lt;/P&gt;&lt;P&gt;line&amp;nbsp; 2740&amp;nbsp; just imports&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;from arcgis.features.geo._io.fileops import to_table&lt;/P&gt;&lt;P&gt;and there are no other args there other than those from the leading call&lt;/P&gt;&lt;P&gt;Addendum&lt;/P&gt;&lt;P&gt;Just because **kwargs is present in a function doesn't mean that there has to be any, it can just be a placeholder incase a function, whether directly, or passed through, might need a keyword argument (and not a positional argument)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2024 23:34:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/documentation-for-kwargs-geoaccessor-to-table/m-p/1497959#M10256</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2024-06-26T23:34:09Z</dc:date>
    </item>
  </channel>
</rss>

