DSPython --- 00.03.02 --- 2012 June 25
=========
Package of arithmetic operations and around
(for Python 2.6 or better, *work on Python 3*)


Install
--------
Decompress the archive and execute 'setup.py' by
> python setup.py install -O1


Test
-----
For test 'natural' module
> python 'natural.py [--quick|--fat]

For test all modules
> python test_all.py [--quick|--fat]


Usage
------
For example, to load 'natural' module
>>> import DSPython.natural
and then
>>> DSPython.natural.fibonacci2(50)

Or better
>>> import DSPython.natural as natural
and then
>>> natural.fibonacci2(50)

Or (but this is dirty)
>>> from DSPython.natural import *
and then
>>> fibonacci2(50)

See documentation for list of modules and more informations
(only in French, sorry)


Assertions
-----------
Almost each function check its arguments by assert.
When a program is finished, use
> python -O prog.py
to execute it whithout assertions (option -O). It is faster.


Documentation and latest version
---------------------------------
DragonSoft DS --- http://www.opimedia.be/DS/


License
--------
(c) Olivier Pirson --- soon GPL or LGPL or ..?


---------------
Olivier Pirson
dragonsoft_ds@yahoo.fr
