A pythonic approach to query SSAS data models
Project description
pyadomd
A pythonic approach to query SSAS data models.
Installation
pip install pyadomd
Query SSAS Tabular model
from sys import path
path.append('\\Program Files\\Microsoft.NET\\ADOMD.NET\\150')
from pyadomd import Pyadomd
conn_str = 'Provider=MSOLAP;Data Source=localhost;Catalog=AdventureWorks;'
query = """EVALUATE Product"""
with Pyadomd(conn_str) as conn:
with conn.cursor().execute(query) as cur:
print(cur.fetchall())
Integrates easily with pandas
from pandas import DataFrame
with Pyadomd(conn_str) as conn:
with conn.cursor().execute(query) as cur:
df = DataFrame(cur.fetchone(), columns=[i.name for i in cur.description])
FAQ
Q: I get the following exception?
System.IO.FileNotFoundException: Unable to find assembly 'Microsoft.AnalysisServices.AdomdClient'.
at Python.Runtime.CLRModule.AddReference(String name)
A: This exception is most likely raised because you have'ent added the folder with the Microsoft.AnalysisServices.AdomdClient.dll to your path, before you import the pyadomd package.
Example:
from sys import path
#added to the path _before_ importing the pyadomd package
path.append('\\Program Files\\Microsoft.NET\\ADOMD.NET\\150')
from pyadomd import Pyadomd
Q: When I try to connect an Azure Analysis Service instance I get an:
Authentication faild: User ID and Password are required when user interface is not available?
A: This exception is most likely raised due to your "app" is not registered. Please follow the microsoft app registration documentation microsoft docs. The script: connect_to_ass.py (link to script) is a simple example on how to create a connection to a Azure Analysis Service. Please note that this is only an example, and not necessarily suitable for all apps.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pyadomd-0.1.1.tar.gz
.
File metadata
- Download URL: pyadomd-0.1.1.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b01169c4ce30baedc6d21fa49b1abb2361b9a2953dafed4c0de2f624ddf313c |
|
MD5 | e6b9b74547d42f6f34cfff171633ce1b |
|
BLAKE2b-256 | 921acbc4b46c1ad13782670d01c6c20d4f2ee7e0f6aeb80dd9e0ba06aa2664b0 |