Installation

Quick Start

Here are quick installation instructions for the impatient.

Note

Bubbles requires Python 3.3. There are no plans of back-porting the framework to Python of lesser version.

Satisfy soft dependencies that cover most of the use cases. For more information read below.:

pip install sqlalchemy

Install bubbles:

pip install bubbles

Try:

import bubbles

URL = "https://raw.github.com/Stiivi/cubes/master/examples/hello_world/data.csv"

p = bubbles.Pipeline()
p.source(bubbles.data_object("csv_source", URL, infer_fields=True))
p.aggregate("Category", "Amount (US$, Millions)")
p.pretty_print()

Requirements

The framework currently does not have any hard dependency on other packages. All dependencies are optional and you need to install the packages only if certain features are going to be used.

Customized Installation

The project sources are stored in the Github repository.

Download from Github:

git clone git://github.com/Stiivi/bubbles.git

Install:

cd bubbles
python setup.py install

Table Of Contents

Previous topic

Introduction

Next topic

Objects

This Page