<?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: XMC python modules used in example scripts in ExtremeCloud IQ- Site Engine Management Center</title>
    <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16073#M229</link>
    <description>Hi all,&lt;BR /&gt;
Any idea about when this scripting guide will be available ?&lt;BR /&gt;
Because there's a real lack of documentation.&lt;BR /&gt;
Regards&lt;BR /&gt;
&lt;BR /&gt;
Patrick</description>
    <pubDate>Wed, 07 Nov 2018 05:05:00 GMT</pubDate>
    <dc:creator>Rasolo_Rija</dc:creator>
    <dc:date>2018-11-07T05:05:00Z</dc:date>
    <item>
      <title>XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16065#M221</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
often in the XMC example scripts functions from the module "xmclib" or "device" are used.&lt;BR /&gt;
Is there a documentation what functions are included, what parameters can be send and what returnvalues can be used?&lt;BR /&gt;
&lt;BR /&gt;
If there is no documentation, is there a way to access the source code to find out what the functions can do?&lt;BR /&gt;
&lt;BR /&gt;
It would be helpfule to use the existing code and not do reinvent the access to functions like "logger"&lt;BR /&gt;
&lt;BR /&gt;
Here an example from XMC:&lt;BR /&gt;
&lt;BR /&gt;
#&lt;B&gt;@MetaDataEnd&lt;/B&gt;&lt;BR /&gt;
from xmclib import emc_vars&lt;BR /&gt;
from xmclib import logger&lt;BR /&gt;
from xmclib import cli&lt;BR /&gt;
from device import api&lt;BR /&gt;
&lt;BR /&gt;
Best regards&lt;BR /&gt;
Stephan&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Oct 2018 00:36:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16065#M221</guid>
      <dc:creator>StephanH</dc:creator>
      <dc:date>2018-10-17T00:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16066#M222</link>
      <description>Hi Sh,&lt;BR /&gt;
&lt;BR /&gt;
I am not sure if this is your question.&lt;BR /&gt;
&lt;BR /&gt;
1) select the script from task and if you go to content tab where we can see the complete code of script.&lt;BR /&gt;
&lt;BR /&gt;
2) Some of the basic scripts are available in github under Netsight.&lt;BR /&gt;
&lt;BR /&gt;
3) XMC help tab has steps for scripting and how to create and run.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Suresh.B&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Oct 2018 09:29:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16066#M222</guid>
      <dc:creator>Bharathiraja__S</dc:creator>
      <dc:date>2018-10-18T09:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16067#M223</link>
      <description>Hello Bharathiraja,&lt;BR /&gt;
&lt;BR /&gt;
thank you for your answer. I am familiar with the XMC scripting tool and tasks and I know the content of the example scripts.&lt;BR /&gt;
&lt;BR /&gt;
My question concerns  the modules used in these examples. Especially the xmclib and the device module (the post above). In modules you can wrap function and classes to reuse these in other scripts.&lt;BR /&gt;
&lt;BR /&gt;
The example scripts use these modules and I would like to use these, too. Therefore I have to know what functions are available and how can I use these functions (parameters and return values).&lt;BR /&gt;
&lt;BR /&gt;
Best regards&lt;BR /&gt;
Stephan&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Oct 2018 10:43:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16067#M223</guid>
      <dc:creator>StephanH</dc:creator>
      <dc:date>2018-10-18T10:43:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16069#M225</link>
      <description>Hi Stephan,&lt;BR /&gt;
&lt;BR /&gt;
I cannot give you a definitive answer, but you may be able to find the source on an XMC appliance. Python modules are most often implemented in Python, and sometimes delivered as source. Thus you may just need to find the relevant files (brute force: &lt;I&gt;find / -iname xmclib\*&lt;/I&gt;) to be able to read them.&lt;BR /&gt;
&lt;BR /&gt;
Useful documentation is preferable, of course. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Erik&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Oct 2018 13:38:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16069#M225</guid>
      <dc:creator>Erik_Auerswald</dc:creator>
      <dc:date>2018-10-18T13:38:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16070#M226</link>
      <description>Hello Erik, hello James,&lt;BR /&gt;
&lt;BR /&gt;
I have come as far as James. Therefore, the question how do I get to the information. I resolved the way till xmcbase, but I can't find it. Therefore this post.&lt;BR /&gt;
&lt;BR /&gt;
I can't find any sources.&lt;BR /&gt;
&lt;BR /&gt;
Best regards&lt;BR /&gt;
Stephan&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Oct 2018 18:50:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16070#M226</guid>
      <dc:creator>StephanH</dc:creator>
      <dc:date>2018-10-18T18:50:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16071#M227</link>
      <description>Hi, all.&lt;BR /&gt;
&lt;BR /&gt;
We're actually in the process of creating a more comprehensive scripting and workflows guide that should answer most of these questions. I'll provide a link to the resource online once it is published.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
&lt;BR /&gt;
John</description>
      <pubDate>Wed, 07 Nov 2018 03:36:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16071#M227</guid>
      <dc:creator>John_Moore</dc:creator>
      <dc:date>2018-11-07T03:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16072#M228</link>
      <description>Hello John,&lt;BR /&gt;
&lt;BR /&gt;
thank you for feedback and good to hear. If you have a draft to read, I'm here .&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
Stephan&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Nov 2018 05:05:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16072#M228</guid>
      <dc:creator>StephanH</dc:creator>
      <dc:date>2018-11-07T05:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16073#M229</link>
      <description>Hi all,&lt;BR /&gt;
Any idea about when this scripting guide will be available ?&lt;BR /&gt;
Because there's a real lack of documentation.&lt;BR /&gt;
Regards&lt;BR /&gt;
&lt;BR /&gt;
Patrick</description>
      <pubDate>Wed, 07 Nov 2018 05:05:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16073#M229</guid>
      <dc:creator>Rasolo_Rija</dc:creator>
      <dc:date>2018-11-07T05:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16074#M230</link>
      <description>Hi, Patrick. We're working with development now, but we're also focusing on getting ready for the next release, so I can't give you a definitive time. Aside from the documentation for the 8.2 release though, this is the top priority.&lt;BR /&gt;
&lt;BR /&gt;
Thanks again,&lt;BR /&gt;
&lt;BR /&gt;
John</description>
      <pubDate>Wed, 07 Nov 2018 05:05:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16074#M230</guid>
      <dc:creator>John_Moore</dc:creator>
      <dc:date>2018-11-07T05:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16075#M231</link>
      <description>Hi, Patrick. We're working with development now, but we're also focusing on getting ready for the next release, so I can't give you a definitive time. Aside from the documentation for the 8.2 release though, this is the top priority.&lt;BR /&gt;
&lt;BR /&gt;
Thanks again,&lt;BR /&gt;
&lt;BR /&gt;
John&lt;BR /&gt;
&lt;BR /&gt;
Hi,&lt;BR /&gt;
&lt;BR /&gt;
Any update on XMC python scripting documentation?&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
&lt;BR /&gt;
Rahman</description>
      <pubDate>Tue, 05 Mar 2019 21:36:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16075#M231</guid>
      <dc:creator>Rahman_Duran</dc:creator>
      <dc:date>2019-03-05T21:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16076#M232</link>
      <description>Still waiting,.....</description>
      <pubDate>Sat, 27 Apr 2019 05:08:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16076#M232</guid>
      <dc:creator>Holger_Gmerek</dc:creator>
      <dc:date>2019-04-27T05:08:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16077#M233</link>
      <description>Any update?  Really would be nice to have these modules documented.</description>
      <pubDate>Tue, 04 Jun 2019 00:09:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16077#M233</guid>
      <dc:creator>lindsmick</dc:creator>
      <dc:date>2019-06-04T00:09:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16078#M234</link>
      <description>Is there any update on it ? I'd love to have some documentation on the modules.</description>
      <pubDate>Mon, 19 Aug 2019 15:32:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16078#M234</guid>
      <dc:creator>Nealo</dc:creator>
      <dc:date>2019-08-19T15:32:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16079#M235</link>
      <description>&lt;P&gt;I had this same question about module documentation. Is there any update on this?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 04:13:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16079#M235</guid>
      <dc:creator>dmertz</dc:creator>
      <dc:date>2019-11-14T04:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16080#M236</link>
      <description>&lt;P&gt;+1. Come on guys, can’t be that hard to provide documentation (which should already be available internally)...&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 21:04:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16080#M236</guid>
      <dc:creator>rbrt</dc:creator>
      <dc:date>2020-01-27T21:04:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16081#M237</link>
      <description>&lt;P&gt;*crickets*&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 23:59:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16081#M237</guid>
      <dc:creator>dmertz</dc:creator>
      <dc:date>2020-01-27T23:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16082#M238</link>
      <description>&lt;P&gt;FYI: I have reached out to Mgmt, which lead to an Extreme-internal request to check if some sort of releasable documentation is available and can be provided.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 20:10:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16082#M238</guid>
      <dc:creator>rbrt</dc:creator>
      <dc:date>2020-01-29T20:10:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16083#M239</link>
      <description>&lt;P&gt;Has there been any news on documentation. The mysterious xmcbase import is troublesome. Perhaps someone might be able to elaborate on what the contents of the library is and why it seems to be hidden?&lt;/P&gt;</description>
      <pubDate>Sat, 15 Feb 2020 04:53:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16083#M239</guid>
      <dc:creator>tbmc2</dc:creator>
      <dc:date>2020-02-15T04:53:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16084#M240</link>
      <description>&lt;P&gt;Hi&amp;nbsp;everybody,&lt;/P&gt; &lt;P&gt;&amp;nbsp;&lt;/P&gt; &lt;P&gt;i get in the queue fo people welcoming&amp;nbsp;some more documentation on imports&amp;nbsp;and&amp;nbsp;how to properly re-use them for example. In the meanwhile&amp;nbsp;to improve my ability i am importing and reverse engineering the amount of workflows written by Zdenek Pala. You all can do it if you wish&lt;/P&gt; &lt;P&gt;&lt;A href="https://github.com/extremenetworks/ExtremeScripting/tree/master/Netsight/oneview_workflows" target="_blank" rel="nofollow noreferrer noopener"&gt;https://github.com/extremenetworks/ExtremeScripting/tree/master/Netsight/oneview_workflows&lt;/A&gt;&lt;/P&gt; &lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2020 18:35:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16084#M240</guid>
      <dc:creator>Alessandro_Maio</dc:creator>
      <dc:date>2020-03-18T18:35:00Z</dc:date>
    </item>
    <item>
      <title>RE: XMC python modules used in example scripts</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16085#M241</link>
      <description>&lt;P&gt;Also looking for&lt;/P&gt; &lt;P&gt;Mig&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 22:02:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/xmc-python-modules-used-in-example-scripts/m-p/16085#M241</guid>
      <dc:creator>Miguel-Angel_RO</dc:creator>
      <dc:date>2020-03-24T22:02:00Z</dc:date>
    </item>
  </channel>
</rss>

