You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -63,14 +65,15 @@ with OBIEEsession(client, username, password):
63
65
While this package does not directly allow you to export to a dataframe, you can get the exported file in memory, which you can then load with Pandas to a dataframe. You most likely want to export as a CSV for this use case.
64
66
65
67
```py
68
+
from getpass import getpass
66
69
import pandas as pd
67
-
from pythonOBIEE import build_client, OBIEEsession, OBIEEAnalysisExporter, Report
70
+
from pythonOBIEE import build_client, OBIEESession, OBIEEAnalysisExporter, Report
pythonOBIEE supports logging. Setting the logging level to INFO provides useful detail. More detailed information is available at the DEBUG level.
104
+
For DEBUG level logging, you will likely want to configure the log level specifically for pythonOBIEE to avoid flooding the console with messages from other modules.
105
+
106
+
```py
107
+
import logging
108
+
109
+
# Set the general logging level to INFO
110
+
logging.basicConfig(level=logging.INFO)
111
+
112
+
# Set the logging level specifically for the pythonOBIEE module to DEBUG
0 commit comments