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
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.