Can server URL be set using rv python api?

Hello,

I could not get setServerURLValue set by using MuSymbol .

Is there a python equivalent ?

I couldn’t find anything here : http://www.tweaksoftware.com/static/documentation/rv/current/html/rv_reference.html#Chapter_4_Python_Calling_Mu_From_Python

Thanks,

1 Like

Hey,

Unfortunately that portion of the code isn’t bound to Python, so neither Python or MuSymbol would work. You can evaluate Mu in Python, something like:

evalString = """
shotgun.theMode().setServerURLValue("https://your_site.shotgunstudio.com");
"""
rv.runtime.eval(evalString, ["shotgun"])

Thanks,
Alexa

1 Like

Thank you for your reply, are there any chances in future that it will be supported in python ?

1 Like

I don’t think that’s on the roadmap at the moment but I’ll pass your request to our product team!

– Alexa

1 Like

[quote=“alexa, post:4, topic:8421, full:true”]
I don’t think that’s on the roadmap at the moment but I’ll pass your request to our product team!

– Alexa
[/quote]That would be great thanks Alexa

1 Like