Ryan Clapp
Ryan Clapp
We use logguru for logging so if it can be added as a handler there I think that's a great idea. If I get some time I'll test it. Otherwise...
Yes, this had to do something with our gateway configuration, but I don’t recall what we changed.
Any chance the processes have an odbc data source? Sent from my mobile phone On Feb 4, 2021 2:56 AM, Christoph Hein wrote: Describe what did you try to do...
Seems like the JSON string encoding is different, that is an odd one. From: Christoph Hein Reply-To: cubewise-code/tm1py Date: Thursday, February 4, 2021 at 11:06 AM To: cubewise-code/tm1py Cc: "Clapp,...
I recommend that we push IBM to actually document the feature. I have had a few discussions with IBM about it, they said since paw and Pax do not support...
https://github.com/cubewise-code/tm1py/issues/779
I am opening a case with IBM about it. From: Marius Wirtz ***@***.***> Reply-To: cubewise-code/tm1py ***@***.***> Date: Saturday, August 20, 2022 at 3:42 PM To: cubewise-code/tm1py ***@***.***> Cc: "Clapp, Ryan"...
Figured out the issue. The URL that I used did not work in all versions (not sure why). I did a trace of what PAW does and now the method...
Pax reporting functionality is not available via the tm1 server api. Those types of things can be handled via the Pax vba api, and you should look to build something...
Python 3.10 ``` [tm1srv01] address= instance= database=tm1-testing application_client_id= application_client_secret= user=test-user ssl=False async_requests_mode=False timeout=6000 tcp_keepalive=True ``` ```python config = configparser.ConfigParser() config.read(Path(__file__).parent.joinpath('config.ini')) with TM1Service(**config['tm1srv01']) as tm1: print(f"Ready: {tm1.connection.session_id}") pass ``` ``` Traceback...