Jump to content

How to extract all available ORG topics on Seeq instance into a csv file including owner and URL?


Go to solution Solved by Patrick,

Recommended Posts

  • Seeq Team
  • Solution
Posted (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 by Patrick
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...