Re: [PyMOL] pref_get() on library mode

2020-10-26 Thread Pedro Lacerda
Let me be honest. It worked like an old car. Qt wasn't loaded so an error message appears because my plugin uses Qt. The plugin initialization failed. Despite the message everything was ok and the preferences showed up. Em seg, 26 de out de 2020 13:21, Pedro Lacerda escreveu: > It worked like

Re: [PyMOL] pref_get() on library mode

2020-10-26 Thread Pedro Lacerda
It worked like a charm, thank you. Em seg., 26 de out. de 2020 às 04:37, Thomas Holder < thomas.hol...@schrodinger.com> escreveu: > Hi Pedro, > > If you call `plugin_load` that will trigger initialization. > > pymol.plugins.plugin_load('yourplugin') > value = pymol.plugins.pref_get('YOUPLUGIN_SOM

Re: [PyMOL] pref_get() on library mode

2020-10-26 Thread Thomas Holder
Hi Pedro, If you call `plugin_load` that will trigger initialization. pymol.plugins.plugin_load('yourplugin') value = pymol.plugins.pref_get('YOUPLUGIN_SOME_KEY') I feel like this plugin API is due for an overhaul, there are no great answers to your various questions :-/ Cheers, Thomas >