Seeq Team Patrick Posted July 19 Seeq Team Posted July 19 How can I extract all available ORG topics on Seeq instance into a csv file including owner and URL?
Seeq Team Solution Patrick Posted July 19 Author Seeq Team Solution Posted July 19 (edited) #Search for all organizer topics on Seeq instance Topics = spy.workbooks.search({'Name': '*','Workbook Type': 'Topic'}, content_filter='all',all_properties=True) Topics['URL'] = Topics['ID'].apply(lambda id: f'{spy.session.public_url}/Topics/{id}') #Extract the list of topics to csv file Topics.to_csv('AllTopics.csv') Note: The above code snipped will pull all content to which the user running the code has access. If the desire is to pull all Topics from the Seeq instance, the user will need to have Administrative privileges. Edited July 19 by Patrick
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now