<?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 Betreff: Import python APIv2 modules in VRED Forum</title>
    <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144550#M3468</link>
    <description>&lt;P&gt;Can you tell me, which code editor you are using and how use your plugin in VRED?&lt;/P&gt;</description>
    <pubDate>Wed, 10 Mar 2021 09:08:53 GMT</pubDate>
    <dc:creator>chr33z</dc:creator>
    <dc:date>2021-03-10T09:08:53Z</dc:date>
    <item>
      <title>Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10001323#M3458</link>
      <description>&lt;P&gt;Hey guys!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I developed some working code within VRED, using API v1 and v2. Now i want to place it somewhere on a central place, and the users just import it from there, which makes maintaining the code very easy.&lt;/P&gt;&lt;P&gt;I instantly have the following problem: the code imported by a "from importtest import" doesn't know any of the VRED API commands.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the APIv1 commands i could fix it by importing a certain module, like for &lt;EM&gt;findNode()&lt;/EM&gt; i have to use "&lt;EM&gt;from vrScenegraph &lt;/EM&gt;&lt;SPAN&gt;&lt;EM&gt;import *&lt;/EM&gt;"&amp;nbsp;&lt;/SPAN&gt;in my module (which is not undocumented but working).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But for the APIv2 there are no modules like "vrd*Service" which i can import, so i can't use all of these vrd*Service modules to find nodes, make annotations and so on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a nice way to get rid of all of this?&lt;/P&gt;&lt;P&gt;Thank you in advance!&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 14:27:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10001323#M3458</guid>
      <dc:creator>f.grz</dc:creator>
      <dc:date>2021-01-14T14:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10005975#M3459</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;which version are you working on? In versions older than 2021.3 (or 2021.2?) you have to import the APIv2 namespaces explicitly, but this is a bit tricky.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All API v2 modules and class are in the namespace "vrKernelServices" so a valid import statement would look like&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from vrKernelServices import vrCameraService&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In version 2021.3 the namespaces are imported automatically when VRED loads them so you don't have to import anything for APIv2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2021 07:44:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10005975#M3459</guid>
      <dc:creator>chr33z</dc:creator>
      <dc:date>2021-01-16T07:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10012626#M3460</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you, i got it working like that and we will switch to V2021.3 in the next time. As expected, we were using 2021.2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the best!&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2021 13:25:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10012626#M3460</guid>
      <dc:creator>f.grz</dc:creator>
      <dc:date>2021-01-19T13:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10142665#M3461</link>
      <description>&lt;P&gt;Hi guys,&lt;BR /&gt;I am actually using VRED 2021.3.&lt;BR /&gt;I need to import the API2.0 module "vrWebEngineService" into a class script.&lt;BR /&gt;I followed the instructions of chr33z:&lt;BR /&gt;from vrKernelServices import vrWebEngineService&lt;BR /&gt;but I don't get the desired result:&lt;BR /&gt;when I call the function vrWebEngineService.getWebEngine(name) [where name must be a string, as per documentation], in VRED I get the error: "TypeError: descriptor 'getWebEngine' requires a 'vrKernelServices.vrWebEngineService' but received a 'str' ".&lt;BR /&gt;Can you help me please?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 16:56:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10142665#M3461</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-09T16:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144446#M3462</link>
      <description>&lt;P&gt;Hey carser,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so your imports work fine i think - Autodesk support has to help you here...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Florian&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 08:19:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144446#M3462</guid>
      <dc:creator>f.grz</dc:creator>
      <dc:date>2021-03-10T08:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144463#M3463</link>
      <description>&lt;P&gt;Thanks for the reply. The weird thing is that inside VRED, if I write the following script:&lt;BR /&gt;from vrKernelServices import *&lt;BR /&gt;myWebEngine = vrWebEngineService.createWebEngine ("newWebEngine")&lt;BR /&gt;i get the same error:&lt;BR /&gt;'TypeError: descriptor' createWebEngine 'requires a' vrKernelServices.vrWebEngineService 'object but received a' str.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I get help drectly from Autodesk support?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 08:28:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144463#M3463</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-10T08:28:11Z</dc:date>
    </item>
    <item>
      <title>Re: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144490#M3464</link>
      <description>&lt;P&gt;Hi, i think that for API V2 you have not import, just use it in your script.&lt;/P&gt;
&lt;P&gt;i tried directly in the terminal and in the script editor and it worked for me&lt;/P&gt;
&lt;DIV id="tinyMceEditor_3c617c82f45018c.garimberti_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Immagine 2021-03-10 094046.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/891120iCAC345FA00079C61/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Immagine 2021-03-10 094046.png" alt="Immagine 2021-03-10 094046.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you try?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 08:41:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144490#M3464</guid>
      <dc:creator>Christian_Garimberti</dc:creator>
      <dc:date>2021-03-10T08:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144510#M3465</link>
      <description>&lt;P&gt;Ciao c.garimberti,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, that way it works for me too.&lt;BR /&gt;The problem is that I am developing a VRED plugin; in this plugin I added a class for creating and managing webEngine.&lt;BR /&gt;To use the VRED API, in version-1, I used for example:&lt;BR /&gt;import vrScenegraph&lt;BR /&gt;vrScengraph.findNode ("NodeName")&lt;BR /&gt;e tutto è ok.&lt;/P&gt;&lt;P&gt;Now, with the version-2 API, to use the vrWebEngineService module in my class, I write:&lt;BR /&gt;from vrKernelServices import vrWebEngineService&lt;BR /&gt;myWebEngine = vrWebEngineService.createWebEngine ("newWebEngine")&lt;BR /&gt;then i compile, after which in VRED I get the "TypeError" indicated above.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 08:49:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144510#M3465</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-10T08:49:06Z</dc:date>
    </item>
    <item>
      <title>Betreff: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144521#M3466</link>
      <description>&lt;P&gt;In VRED there are two ways to use python scripts:&lt;/P&gt;&lt;P&gt;1. Use python code by writing it directly in VRED (script editor, variant sets, terminal, ...)&lt;/P&gt;&lt;P&gt;2. Use python scripts in Script Plugins or in custom modules&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(1.)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;---------------&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;When using python directly in VRED, you do not have to import any VRED specific modules. They are already injected in the python namespace and can be used directly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(2.)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;---------------&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;When writing Script Plugins or custom modules you want to use in VRED, we have to&amp;nbsp;further differentiate:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Optimal case: You are on version 2021.3 or above&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- You have to import all API v1 modules.&lt;/P&gt;&lt;P&gt;- You can use VRED API v2 modules without explicitly importing them in the script. VRED will do that for you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Less optimal case: You are on version 2021.2 or below&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- You have to import all API v1 modules.&lt;/P&gt;&lt;P&gt;- You &lt;STRONG&gt;may&lt;/STRONG&gt; have to import API v2 modules. This was a bug with their API v2 and I had inconsistent results between versions 2021.1 and 2021.2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, when you wrote a module for 2021.1 or 2021.2 with explicit imports for API v2 modules, it will break these scripts when using them in 2021.3. Somehow the imports overwrite the internal VRED python namespaces.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 08:55:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144521#M3466</guid>
      <dc:creator>chr33z</dc:creator>
      <dc:date>2021-03-10T08:55:28Z</dc:date>
    </item>
    <item>
      <title>Betreff: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144538#M3467</link>
      <description>&lt;P&gt;Ok, thanks: everything is known and clear.&lt;BR /&gt;But if in my plugin class I directly use an API-v2 module without importing the appropriate space name, for example:&lt;BR /&gt;myWebEngine = vrWebEngineService.createWebEngine ("newWebEngine")&lt;BR /&gt;I get a class compile error:&lt;BR /&gt;"undeclared name not builtin: vrWebEngineService&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 09:04:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144538#M3467</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-10T09:04:11Z</dc:date>
    </item>
    <item>
      <title>Betreff: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144550#M3468</link>
      <description>&lt;P&gt;Can you tell me, which code editor you are using and how use your plugin in VRED?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 09:08:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144550#M3468</guid>
      <dc:creator>chr33z</dc:creator>
      <dc:date>2021-03-10T09:08:53Z</dc:date>
    </item>
    <item>
      <title>Betreff: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144562#M3469</link>
      <description>&lt;P&gt;I use VisualStudioCode to write the software.&lt;BR /&gt;Then, to encrypt the code, I compile it using Cython.&lt;BR /&gt;Large plugin development.&lt;BR /&gt;I get a main.py and many .pyd modules for each of my classes.&lt;BR /&gt;Everything has always worked perfectly with the API-v1; now with the API-v2 i have these problems.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 09:13:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144562#M3469</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-10T09:13:06Z</dc:date>
    </item>
    <item>
      <title>Betreff: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144574#M3470</link>
      <description>&lt;P&gt;OK, I never tried this workflow with compiling it in cython.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is the error thrown in Cython or in VRED? Have you tried using API v2 modules without compiling them?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 09:16:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144574#M3470</guid>
      <dc:creator>chr33z</dc:creator>
      <dc:date>2021-03-10T09:16:14Z</dc:date>
    </item>
    <item>
      <title>Betreff: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144580#M3471</link>
      <description>&lt;P&gt;I have implemented a complex but very interesting pipeline.&lt;BR /&gt;I confirm: in version 2021.3, if I use the API-v2 modules directly in VRED, everything works. But if I have to use these modules in my plugin class, there is no way that I know.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 09:19:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144580#M3471</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-10T09:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144583#M3472</link>
      <description>&lt;P&gt;i didn't compile my script, but i think it is something linked to that operation.&lt;/P&gt;
&lt;P&gt;if i use directly in a script&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;myWebEngine = vrWebEngineService.createWebEngine ("newWebEngine")
print(myWebEngine)&lt;/LI-CODE&gt;
&lt;P&gt;it works.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Immagine 2021-03-10 101704.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/891137i539EA6FFEEED26DF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Immagine 2021-03-10 101704.png" alt="Immagine 2021-03-10 101704.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;best&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 09:19:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144583#M3472</guid>
      <dc:creator>Christian_Garimberti</dc:creator>
      <dc:date>2021-03-10T09:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144590#M3473</link>
      <description>&lt;P&gt;This is very simple and i already confirmed that it works.&lt;BR /&gt;Try making a main.py script that instantiates a class, in which you run that script of yours where you create the webEngine ... (...Object Oriented Python...)&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 09:22:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144590#M3473</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-10T09:22:17Z</dc:date>
    </item>
    <item>
      <title>Betreff: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144684#M3474</link>
      <description>&lt;P&gt;I never worked with compiled python files in VRED. Do you just copy the compiled files in a ScriptPlugin directory and use it like a regular python file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe compiled files are treated differently than uncompiled files by VRED.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 10:12:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144684#M3474</guid>
      <dc:creator>chr33z</dc:creator>
      <dc:date>2021-03-10T10:12:40Z</dc:date>
    </item>
    <item>
      <title>Betreff: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144689#M3475</link>
      <description>&lt;P&gt;Yes, I do.&lt;BR /&gt;The compiled files have no differences: they are just not readable by third parties.&lt;BR /&gt;However, using object oriented python, it is necessary to properly import the modules belonging to external namespaces (such as those of VRED).&lt;BR /&gt;I have to find the solution to properly use the API-v2 modules...&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 10:16:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144689#M3475</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-10T10:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144692#M3476</link>
      <description>&lt;P&gt;I'm out of ideas here. But I would really like to know whats the problem.&lt;BR /&gt;You should maybe open a separate question, so people can directly answer to you specific problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit:&lt;/P&gt;&lt;P&gt;I did not find anything special when working with object oriented python classes in script plugins.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 10:19:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144692#M3476</guid>
      <dc:creator>chr33z</dc:creator>
      <dc:date>2021-03-10T10:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Import python APIv2 modules</title>
      <link>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144695#M3477</link>
      <description>&lt;P&gt;ok. Thank you very much for your time and for your availability to support.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 10:19:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/import-python-apiv2-modules/m-p/10144695#M3477</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-10T10:19:07Z</dc:date>
    </item>
  </channel>
</rss>

