Quick Start Guide

You should be able to install and try PyAlaOCL in minutes (assuming that you have a decent python environment installed and in particular pip).

Installation

Just like nearly all python packages, PyAlaOCL can be installed using pip:

$ pip install pyalaocl

You can also download the source from the PyAlaOCL github project.

Giving it a first try

Just launch the python interpreter and try the following statements:

C:\joe\> python
Python 2.7.8 ...
Type "help", "copyright", "credits" or "license" for more information.
>>> from pyalaocl import *
>>> Seq("hello","world",2015).selectByKind(str)
Seq(hello, world)