cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Help us improve the PTC Community by taking this short Community Survey! X

CREOSON and Encoded notes.

GM_4953125
3-Visitor

CREOSON and Encoded notes.

Hello everyone,
I have been trying to extract dimensions from Creo drawings, however I'm running into issues with encoded notes.
Is there a way to extract encoded notes using CREOSON
the note circled below is encoded:  (Note_44)

 

GM_4953125_1-1725910656743.png

When i try to extract it, I get a long string and value expanded as NaN

this is my code:
note_list = Client.note_list(get_expanded=True)
note_list_df = pd.DataFrame(note_list)
note_list_df = note_list_df.drop(columns=["location"])


GM_4953125_0-1725910617683.png

 

 

 

1 REPLY 1

It appears I have to decode the value first:

 

base64.b64decode(value).decode('utf-8')

 

the decoded value will in in non-expanded form.

If the note contains variables I still need extract extract them from the model.

Announcements


Top Tags