Getting Started¶
Installation and Upgrade¶
If you want to use the TinyOlap package only, without the samples, then you need to install it using pip:
(.venv) $ pip install tinyolap
To upgrade to the latest version of TinyOlap you need to call
(.venv) $ pip install --upgrade tinyolap
Testing The Installation¶
To test the installation, create a new python script, enter the following code and run the script. If it does not through an error, then the TinyOalp package should have been installed properly.
from tinyolap.database import Database
# define your data space
db = Database("tiny")
Exploring the Capabilities of TinyOlap¶
The easiest way to get started is to explore and run the various samples available in the sample folder of the GitHub project.
Further information about the samples can be found in the online documentation.