Issue Accessing Setup Properties for Models with Encrypted 3D Components #5489
Unanswered
chamanth-vct
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am trying to retrieve the details of an AEDT model and the setup information defined within an AEDT file. I use the following code:
The above code works perfectly for standard models. However, when used on a model containing encrypted 3D components, I can successfully access
project_info
, but thesetup_info
is empty.To troubleshoot, I created two similar models—one normal and one encrypted. These models can be downloaded from this link.
Below is the complete code I used to retrieve and print the project and setup details:
Print message as follows:
Observations:
Normal Model:
project.info
retrieves all project details as expected.project.setups[0].props
successfully retrieve setup properties.Encrypted Model:
project.info
retrieves the project details.project.setups[0].props
return an empty result or does not provide any setup details.Question:
Is there an issue with my code when accessing the setup properties for models containing encrypted 3D components? If so, how can I modify the code to correctly retrieve the setup details?
Thank you in advance for your assistance!
Beta Was this translation helpful? Give feedback.
All reactions