Any Python OLAP/MDX ORM engines?

后端 未结 4 863
生来不讨喜
生来不讨喜 2020-12-13 23:12

I\'m new to the MDX/OLAP and I\'m wondering if there is any ORM similar like Django ORM for Python that would support OLAP.

I\'m a Python/Django developer and if the

4条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-13 23:38

    I had a similar need - not for a full blown ORM but for a simple OLAP-like data store in Python. After coming up dry searching for existing tools I wrote this little hack:

    https://github.com/kpwebb/python-cube/blob/master/src/cube.py

    Even if it doesn't solve your exact need, it might be a good starting place for writing something more sophisticated.

提交回复
热议问题