Metadata-Version: 2.1
Name: pyadomd
Version: 0.1.0
Summary: A pythonic approach to query SSAS data models
Home-page: https://github.com/Andboye/Pyadomd
Author: SCOUT
Author-email: andboy@gmail.com
License: Apache License 2.0
Download-URL: https://github.com/Andboye/Pyadomd/archive/v0.0.9.tar.gz
Description: # pyadomd
        
        A pythonic approach to query SSAS data models.
        
        ![](https://img.shields.io/pypi/l/pyadomd)
        ![](https://img.shields.io/pypi/pyversions/pyadomd)
        ![](https://img.shields.io/badge/windows-10-blue)
        ![](https://img.shields.io/pypi/dm/pyadomd)
        [![Documentation Status](https://readthedocs.org/projects/pyadomd/badge/?version=latest)](https://pyadomd.readthedocs.io/en/latest/?badge=latest)
        
        ## Installation
        
        ```console
        pip install pyadomd
        ```
        
        ## Query SSAS Tabular model
        
        ```python
        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
        
        ```python
        
        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?
        ```C#
        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:
        ```Python
        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](https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-create-service-principal-portal). The script: connect_to_ass.py ([link to script](https://github.com/S-C-O-U-T/Pyadomd/blob/master/test/connect_to_aas_win.py)) 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.
        
Keywords: adomd,ssas,ssas-tabular,ssasadomd
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Database
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
